Guest User

Untitled

a guest
Oct 20th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. <?php
  2. class citic {
  3. public function __construct(){
  4. add_action('admin_init',array(&$this,'admin_init'));
  5. add_action('admin_head',array(&$this,'admin_head'));
  6. add_action('admin_head',array(&$this,'admin_menu'));
  7. }
  8. public function admin_init(){
  9. wp_enqueue_script('jquery');
  10. }
  11. public function admin_head(){}
  12. public function admin_menu(){
  13. add_submenu_page('themes.php', 'CI Theme Installer', 'Add Themes', 'install_themes','ci-theme-installer',array(&$this,'installer_page'));
  14. }
  15. public function installer_page(){
  16. echo '<h1>test</h1>';
  17. }
  18. }
  19.  
  20. $citic = new citic();
  21. ?>
Add Comment
Please, Sign In to add comment