plugin_slug = $plugin->get_plugin_slug(); // Load admin style sheet and JavaScript. add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_admin_styles' ) ); add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_admin_scripts' ) ); // Add the options page and menu item. add_action( 'admin_menu', array( $this, 'add_plugin_admin_menu' ) ); // Add an action link pointing to the options page. add_filter( 'plugin_action_links' , array( $this, 'add_action_links' ), 10, 2 ); /* * Define custom functionality. * * Read more about actions and filters: * http://codex.wordpress.org/Plugin_API#Hooks.2C_Actions_and_Filters */ add_action( '@TODO', array( $this, 'action_method_name' ) ); add_filter( '@TODO', array( $this, 'filter_method_name' ) ); add_action( 'admin_notices', array( $this, 'add_plugin_warning' ) ); add_action( 'admin_head', array( $this, 'admin_header' ) ); } public static function admin_header() { echo ""; echo ''; echo ''; } /** * Return an instance of this class. * * @since 1.0.0 * * @return object A single instance of this class. */ public static function get_instance() { /* * @TODO : * * - Uncomment following lines if the admin class should only be available for super admins */ /* if( ! is_super_admin() ) { return; } */ // If the single instance hasn't been set, set it now. if ( null == self::$instance ) { self::$instance = new self; } return self::$instance; } /** * Register and enqueue admin-specific style sheet. * * @TODO: * * - Rename "Plugin_Name" to the name your plugin * * @since 1.0.0 * * @return null Return early if no settings page is registered. */ public function enqueue_admin_styles() { if ( ! isset( $this->plugin_screen_hook_suffix ) ) { return; } $screen = get_current_screen(); if ( $this->plugin_screen_hook_suffix == $screen->id ) { wp_enqueue_style( $this->plugin_slug .'-admin-styles', plugins_url( 'assets/css/admin.css', __FILE__ ), array(), AdsOptimal::VERSION ); // wp_enqueue_style( $this->plugin_slug .'-admin-styles', 'http://localhost/~jasukkas/wordpress/wp-content/plugins/adsoptimal/admin/assets/css/admin.css?ver=1.0.0', array(), AdsOptimal::VERSION ); } } /** * Register and enqueue admin-specific JavaScript. * * @TODO: * * - Rename "Plugin_Name" to the name your plugin * * @since 1.0.0 * * @return null Return early if no settings page is registered. */ public function enqueue_admin_scripts() { if ( ! isset( $this->plugin_screen_hook_suffix ) ) { return; } $screen = get_current_screen(); if ( $this->plugin_screen_hook_suffix == $screen->id ) { wp_enqueue_script( $this->plugin_slug . '-admin-script', plugins_url( 'assets/js/admin.js', __FILE__ ), array( 'jquery' ), AdsOptimal::VERSION ); // wp_enqueue_script( $this->plugin_slug . '-admin-script', 'http://localhost/~jasukkas/wordpress/wp-content/plugins/adsoptimal/admin/assets/js/admin.js?ver=1.0.0', array( 'jquery' ), AdsOptimal::VERSION ); } } /** * Register the administration menu for this plugin into the WordPress Dashboard menu. * * @since 1.0.0 */ public function add_plugin_admin_menu() { /* * Add a settings page for this plugin to the Settings menu. * * NOTE: Alternative menu locations are available via WordPress administration menu functions. * * Administration Menus: http://codex.wordpress.org/Administration_Menus * * @TODO: * * - Change 'Page Title' to the title of your plugin admin page * - Change 'Menu Text' to the text for menu item for the plugin settings page * - Change 'manage_options' to the capability you see fit * For reference: http://codex.wordpress.org/Roles_and_Capabilities */ $this->plugin_screen_hook_suffix = add_options_page( __( 'AdsOptimal', $this->plugin_slug ), __( 'AdsOptimal', $this->plugin_slug ), 'manage_options', $this->plugin_slug, array( $this, 'display_plugin_admin_page' ) ); } /** * Render the settings page for this plugin. * * @since 1.0.0 */ public function display_plugin_admin_page() { include_once( 'views/admin.php' ); } /** * Add settings action link to the plugins page. * * @since 1.0.0 */ public function add_action_links( $links, $file ) { $plugin_basename = 'adsoptimal/adsoptimal.php'; if ( $file == $plugin_basename ) { return array_merge( array( 'settings' => '' . __( 'Settings', $this->plugin_slug ) . '' ), $links ); } else { return $links; } } /** * NOTE: Actions are points in the execution of a page or process * lifecycle that WordPress fires. * * Actions: http://codex.wordpress.org/Plugin_API#Actions * Reference: http://codex.wordpress.org/Plugin_API/Action_Reference * * @since 1.0.0 */ public function action_method_name() { // @TODO: Define your action hook callback here } /** * NOTE: Filters are points of execution in which WordPress modifies data * before saving it or sending it to the browser. * * Filters: http://codex.wordpress.org/Plugin_API#Filters * Reference: http://codex.wordpress.org/Plugin_API/Filter_Reference * * @since 1.0.0 */ public function filter_method_name() { // @TODO: Define your filter hook callback here } public function add_plugin_warning() { if (get_option('adsoptimal_access_token', '') != '') return; global $hook_suffix, $current_user; if ( $hook_suffix == 'plugins.php' ) { echo '
'.__('Connect Your AdsOptimal Account').'
'.__('Almost done - connect your account to start earning money').'
'; } } function adsoptimal_base_url() { echo(''); } }