classes
8 years ago
compatibility
8 years ago
metaboxes
8 years ago
modules
9 years ago
admin-ajax.php
8 years ago
admin-hooks.php
8 years ago
admin-the-functions.php
8 years ago
index.php
8 years ago
index.php
27 lines
| 1 | <?php // load admin related classes & functions |
| 2 | |
| 3 | // load admin related functions |
| 4 | include_once( 'admin-the-functions.php' ); |
| 5 | |
| 6 | |
| 7 | do_action( 'auxels_admin_classes_loaded' ); |
| 8 | |
| 9 | // load admin related functions |
| 10 | include_once( 'admin-hooks.php' ); |
| 11 | |
| 12 | // init the class for extending the menu nav in back-end |
| 13 | Auxin_Master_Nav_Menu_Admin::get_instance(); |
| 14 | |
| 15 | |
| 16 | // custom permalink setting fields for custom post types |
| 17 | function auxin_init_permalinks( ){ |
| 18 | $aux_permalink = new Auxin_Permalink(); |
| 19 | $aux_permalink->setup(); |
| 20 | } |
| 21 | add_action( 'auxin_ready', 'auxin_init_permalinks' ); |
| 22 | |
| 23 | // init Auxin_Install |
| 24 | // init Auxin_Admin_Dashboard |
| 25 | // init Auxin_Import |
| 26 | // init |
| 27 |