classes
5 months ago
compatibility
1 year ago
metaboxes
5 months ago
admin-ajax.php
1 month ago
admin-hooks.php
1 year ago
admin-the-functions.php
1 year ago
index.php
2 years ago
index.php
36 lines
| 1 | <?php // load admin related classes & functions |
| 2 | |
| 3 | // Call the instance of auxin upgrader |
| 4 | Auxin_Upgrader_Prepare::get_instance(); |
| 5 | Auxels_System_Check::get_instance(); |
| 6 | |
| 7 | // load admin related functions |
| 8 | include_once( 'admin-the-functions.php' ); |
| 9 | |
| 10 | include_once( 'compatibility/sliders/rev.php' ); |
| 11 | include_once( 'compatibility/sliders/layerslider.php' ); |
| 12 | include_once( 'compatibility/element-pack/element-pack.php' ); |
| 13 | include_once( 'compatibility/yoast-seo/yoast-seo.php' ); |
| 14 | include_once( 'compatibility/smush/smush.php' ); |
| 15 | include_once( 'compatibility/woocommerce/wc.php' ); |
| 16 | include_once( 'compatibility/ti-woocommerce-wishlist/ti-woocommerce-wishlist.php' ); |
| 17 | |
| 18 | do_action( 'auxels_admin_classes_loaded' ); |
| 19 | |
| 20 | // load admin related functions |
| 21 | include_once( 'admin-hooks.php' ); |
| 22 | |
| 23 | // init the class for extending the menu nav in back-end |
| 24 | Auxin_Master_Nav_Menu_Admin::get_instance(); |
| 25 | new Auxels_Archive_Menu_Links(); |
| 26 | |
| 27 | // custom permalink setting fields for custom post types |
| 28 | function auxin_init_permalinks( ){ |
| 29 | $aux_permalink = new Auxin_Permalink(); |
| 30 | $aux_permalink->setup(); |
| 31 | |
| 32 | new Auxin_Install(); |
| 33 | //new Auxin_Admin_Dashboard(); |
| 34 | } |
| 35 | add_action( 'auxin_ready', 'auxin_init_permalinks' ); |
| 36 |