Admin.php
3 weeks ago
AdminAbout.php
3 weeks ago
AdminAssets.php
3 weeks ago
AdminConvert.php
3 weeks ago
AdminCore.php
3 weeks ago
AdminDashboard.php
3 weeks ago
AdminIntegration.php
3 weeks ago
AdminPages.php
3 weeks ago
AdminSettings.php
3 weeks ago
AdminTools.php
3 weeks ago
Admin.php
21 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WPParsidate\Admin; |
| 4 | |
| 5 | defined( 'ABSPATH' ) || exit; |
| 6 | |
| 7 | class Admin { |
| 8 | public function __construct() { |
| 9 | new AdminAssets(); |
| 10 | new AdminSettings(); |
| 11 | new AdminPages(); |
| 12 | |
| 13 | new AdminDashboard(); |
| 14 | new AdminCore(); |
| 15 | new AdminConvert(); |
| 16 | new AdminTools(); |
| 17 | new AdminIntegration(); |
| 18 | new AdminAbout(); |
| 19 | } |
| 20 | } |
| 21 |