Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2014
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. function plugin_admin_exist() {
  2. add_menu_page('plugin', 'plugin', 'manage_options', 'plugin', 'plugin_Dashboard', plugins_url( 'plugin/images/icon.png' ));
  3. } add_action('admin_menu', 'plugin_admin_exist');
  4.  
  5. function admin_Dashboard() {ob_start();
  6. require ( plugin_dir_path( __FILE__ ) . 'dashboard.php'); }
  7.  
  8. if (get_option('Plugin_Master_Run')) {
  9. $AdminOption = get_option('Plugin_Master_Run');
  10. }else {
  11. add_option('Plugin_Master_Run', array(
  12. 'plugin_profile' => '',
  13. 'plugin_googleFont' => '',
  14. 'plugin_browserIcon' => '',
  15. 'plugin_regularMobile' => '',
  16. 'plugin_retinaMobile' => '',
  17. 'plugin_logo' => '',
  18. 'plugin_retinaLogo' => ''
  19. ));
  20. }
  21.  
  22. <input name="Admin_profile" value="<?php echo $AdminOption['plugin_profile']; ?>" type="text"/>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement