Changeset 3446147 for pageflash/trunk/plugin.php
- Timestamp:
- 01/24/2026 01:58:31 PM (2 months ago)
- File:
-
- 1 edited
-
pageflash/trunk/plugin.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pageflash/trunk/plugin.php
r3295254 r3446147 1 1 <?php 2 2 3 namespace PageFlash;3 namespace TheAminul\PageFlash; 4 4 5 use PageFlash\AssetsManager\AssetsManager; 6 use PageFlash\Admin\Admin; 7 use PageFlash\Landmark\NoReload; 5 use TheAminul\PageFlash\AssetsManager\AssetsManager; 6 use TheAminul\PageFlash\Admin\Admin; 7 use TheAminul\PageFlash\Landmark; 8 use TheAminul\PageFlash\Compatibility\Compatibility; 8 9 9 10 if ( ! defined( 'ABSPATH' ) ) { … … 94 95 // Initialize your admin-related Landmark here 95 96 new Admin(); 97 96 98 } 97 99 } … … 108 110 */ 109 111 private function init_landmark() { 110 new NoReload\Quicklink(); 111 new NoReload\NoReload(); 112 new Landmark\Landmark(); 113 } 114 115 /** 116 * Initialize compatibility modules. 117 * 118 * This method initializes compatibility handlers for third-party plugins. 119 * 120 * @since PageFlash 1.2.0 121 * @access private 122 */ 123 private function init_compatibility() { 124 new Compatibility(); 112 125 } 113 126 … … 126 139 $this->init_admin(); 127 140 $this->init_landmark(); 141 $this->init_compatibility(); 128 142 } 129 143
Note: See TracChangeset
for help on using the changeset viewer.