slug = 'ultimatemember'; add_action( 'admin_menu', array( &$this, 'primary_admin_menu' ), 0 ); add_action( 'admin_menu', array( &$this, 'secondary_menu_items' ), 1000 ); add_action( 'admin_menu', array( &$this, 'extension_menu' ), 9999 ); add_action( 'admin_head', array( $this, 'menu_order_count' ) ); add_filter( 'admin_footer_text', array( $this, 'admin_footer_text' ), 1000 ); } /** * Change the admin footer text on UM admin pages * * @param $footer_text * * @return string */ public function admin_footer_text( $footer_text ) { $current_screen = get_current_screen(); // Add the dashboard pages $um_pages[] = 'toplevel_page_ultimatemember'; $um_pages[] = 'ultimate-member_page_um_options'; $um_pages[] = 'edit-um_form'; $um_pages[] = 'edit-um_role'; $um_pages[] = 'edit-um_directory'; $um_pages[] = 'ultimate-member_page_ultimatemember-extensions'; if ( isset( $current_screen->id ) && in_array( $current_screen->id, $um_pages ) ) { // Change the footer text if ( ! get_option( 'um_admin_footer_text_rated' ) ) { ob_start(); ?> ★★★★★ user()->get_pending_users_count(); if ( is_array( $menu ) ) { foreach ( $menu as $key => $menu_item ) { if ( 0 === strpos( $menu_item[0], _x( 'Users', 'Admin menu name' ) ) ) { $menu[ $key ][0] .= ' '.$count.''; } } } if ( is_array( $submenu ) ) { foreach ( $submenu['users.php'] as $key => $menu_item ) { if ( 0 === strpos( $menu_item[0], _x( 'All Users', 'Admin menu name' ) ) ) { $submenu['users.php'][ $key ][0] .= ' '.$count.''; } } } } /** * Setup admin menu */ function primary_admin_menu() { $this->pagehook = add_menu_page( __( 'Ultimate Member', 'ultimate-member' ), __( 'Ultimate Member', 'ultimate-member' ), 'manage_options', $this->slug, array( &$this, 'admin_page' ), 'dashicons-admin-users', '42.78578'); add_action( 'load-' . $this->pagehook, array( &$this, 'on_load_page' ) ); add_submenu_page( $this->slug, __( 'Dashboard', 'ultimate-member' ), __( 'Dashboard', 'ultimate-member' ), 'manage_options', $this->slug, array( &$this, 'admin_page' ) ); } /** * Secondary admin menu (after settings) */ function secondary_menu_items() { add_submenu_page( $this->slug, __( 'Forms', 'ultimate-member' ), __( 'Forms', 'ultimate-member' ), 'manage_options', 'edit.php?post_type=um_form', '' ); add_submenu_page( $this->slug, __( 'User Roles', 'ultimate-member' ), __( 'User Roles', 'ultimate-member' ), 'manage_options', 'um_roles', array( &$this, 'um_roles_pages' ) ); if ( UM()->options()->get( 'members_page' ) ) { add_submenu_page( $this->slug, __( 'Member Directories', 'ultimate-member' ), __( 'Member Directories', 'ultimate-member' ), 'manage_options', 'edit.php?post_type=um_directory', '' ); } /** * UM hook * * @type action * @title um_extend_admin_menu * @description Extend UM menu * @change_log * ["Since: 2.0"] * @usage add_action( 'um_extend_admin_menu', 'function_name', 10 ); * @example * */ do_action( 'um_extend_admin_menu' ); } /** * Role page menu callback */ function um_roles_pages() { if ( empty( $_GET['tab'] ) ) { include_once um_path . 'includes/admin/core/list-tables/roles-list-table.php'; } elseif ( $_GET['tab'] == 'add' || $_GET['tab'] == 'edit' ) { include_once um_path . 'includes/admin/templates/role/role-edit.php'; } else { um_js_redirect( add_query_arg( array( 'page' => 'um_roles' ), get_admin_url( 'admin.php' ) ) ); } } /** * Extension menu */ function extension_menu() { add_submenu_page( $this->slug, __( 'Extensions', 'ultimate-member' ), '' .__( 'Extensions', 'ultimate-member' ) . '', 'manage_options', $this->slug . '-extensions', array( &$this, 'admin_page' ) ); } /** * Load metabox stuff */ function on_load_page() { wp_enqueue_script( 'common' ); wp_enqueue_script( 'wp-lists' ); wp_enqueue_script( 'postbox' ); /** custom metaboxes for dashboard defined here **/ add_meta_box( 'um-metaboxes-contentbox-1', __( 'Users Overview','ultimate-member' ), array( &$this, 'users_overview' ), $this->pagehook, 'core', 'core' ); add_meta_box( 'um-metaboxes-mainbox-1', __( 'Latest from our blog', 'ultimate-member' ), array( &$this, 'um_news' ), $this->pagehook, 'normal', 'core' ); add_meta_box( 'um-metaboxes-sidebox-1', __( 'Purge Temp Files', 'ultimate-member' ), array( &$this, 'purge_temp' ), $this->pagehook, 'side', 'core' ); add_meta_box( 'um-metaboxes-sidebox-2', __( 'User Cache', 'ultimate-member' ), array( &$this, 'user_cache' ), $this->pagehook, 'side', 'core' ); if ( $this->language_avaialable_not_installed() ) { add_meta_box( 'um-metaboxes-sidebox-2', __( 'Language', 'ultimate-member' ), array( &$this, 'dl_language' ), $this->pagehook, 'side', 'core' ); } else if ( $this->language_avaialable_installed() ) { add_meta_box( 'um-metaboxes-sidebox-2', __( 'Language', 'ultimate-member' ), array( &$this, 'up_language' ), $this->pagehook, 'side', 'core' ); } else if ( $this->language_not_available() ) { add_meta_box( 'um-metaboxes-sidebox-2', __( 'Language', 'ultimate-member' ), array( &$this, 'ct_language' ), $this->pagehook, 'side', 'core' ); } //If there are active and licensed extensions - show metabox for upgrade it $exts = UM()->plugin_updater()->um_get_active_plugins(); if ( 0 < count( $exts ) ) { add_meta_box( 'um-metaboxes-sidebox-3', __( 'Upgrade\'s Manual Request', 'ultimate-member' ), array( &$this, 'upgrade_request' ), $this->pagehook, 'side', 'core' ); } } /** * */ function up_language() { $locale = get_option('WPLANG'); include_once UM()->admin()->templates_path . 'dashboard/language-update.php'; } /** * */ function dl_language() { $locale = get_option('WPLANG'); include_once UM()->admin()->templates_path . 'dashboard/language-download.php'; } /** * */ function ct_language() { $locale = get_option('WPLANG'); include_once UM()->admin()->templates_path . 'dashboard/language-contrib.php'; } /** * */ function um_news() { include_once UM()->admin()->templates_path . 'dashboard/feed.php'; } /** * */ function users_overview() { include_once UM()->admin()->templates_path . 'dashboard/users.php'; } /** * */ function purge_temp() { include_once UM()->admin()->templates_path . 'dashboard/purge.php'; } /** * */ function upgrade_request() { include_once UM()->admin()->templates_path . 'dashboard/upgrade-request.php'; } /** * */ function user_cache() { include_once UM()->admin()->templates_path . 'dashboard/cache.php'; } /** * Language not available * * @return bool */ function language_not_available() { $locale = get_option( 'WPLANG' ); if ( $locale && !strstr($locale, 'en_') && !isset( UM()->available_languages[$locale] ) && !file_exists( WP_LANG_DIR . '/plugins/ultimatemember-' . $locale . '.mo' ) ) return true; return false; } /** * Language available but not installed * * @return bool */ function language_avaialable_not_installed() { $locale = get_option('WPLANG'); if ( $locale && isset( UM()->available_languages[$locale] ) && !file_exists( WP_LANG_DIR . '/plugins/ultimatemember-' . $locale . '.mo' ) ) return true; return false; } /** * Language available and installed * * @return bool */ function language_avaialable_installed() { $locale = get_option('WPLANG'); if ( $locale && isset( UM()->available_languages[$locale] ) && file_exists( WP_LANG_DIR . '/plugins/ultimatemember-' . $locale . '.mo' ) ) return true; return false; } /** * Get a directory size * * @param $directory * * @return float|int */ function dir_size( $directory ) { if ( $directory == 'temp' ) { $directory = UM()->files()->upload_temp; $size = 0; foreach( new \RecursiveIteratorIterator( new \RecursiveDirectoryIterator( $directory ) ) as $file ) { $size+=$file->getSize(); } return round ( $size / 1048576, 2); } return 0; } /** * Which admin page to show? */ function admin_page() { $page = $_REQUEST['page']; if ( $page == 'ultimatemember' && ! isset( $_REQUEST['um-addon'] ) ) { ?>