slug = 'ultimatemember'; $this->about_tabs['about'] = 'About'; $this->about_tabs['start'] = 'Getting Started'; add_action('admin_menu', array(&$this, 'primary_admin_menu'), 0); add_action('admin_menu', array(&$this, 'secondary_menu_items'), 1000); } /*** *** @setup admin menu ***/ function primary_admin_menu() { $this->pagehook = add_menu_page( __('Ultimate Member', $this->slug), __('Ultimate Member', $this->slug), 'manage_options', $this->slug, array(&$this, 'admin_page'), 'dashicons-admin-users', '66.78578'); add_action('load-'.$this->pagehook, array(&$this, 'on_load_page')); add_submenu_page( $this->slug, __('Dashboard', $this->slug), __('Dashboard', $this->slug), 'manage_options', $this->slug, array(&$this, 'admin_page') ); foreach( $this->about_tabs as $k => $tab ) { add_submenu_page( '_'. $k . '_um', sprintf(__('%s | Ultimate Member', $this->slug), $tab), sprintf(__('%s | Ultimate Member', $this->slug), $tab), 'manage_options', $this->slug . '-' . $k, array(&$this, 'admin_page') ); } } /*** *** @secondary admin menu (after settings) ***/ function secondary_menu_items() { add_submenu_page( $this->slug, __('Forms', $this->slug), __('Forms', $this->slug), 'manage_options', 'edit.php?post_type=um_form', '', '' ); add_submenu_page( $this->slug, __('User Roles', $this->slug), __('User Roles', $this->slug), 'manage_options', 'edit.php?post_type=um_role', '', '' ); if ( um_get_option('members_page' ) || !get_option('um_options') ){ add_submenu_page( $this->slug, __('Member Directories', $this->slug), __('Member Directories', $this->slug), 'manage_options', 'edit.php?post_type=um_directory', '', '' ); } do_action('um_extend_admin_menu'); add_submenu_page( $this->slug, __('Extensions', $this->slug), '' .__('Extensions', $this->slug) . '', 'manage_options', $this->slug . '-extensions', array(&$this, 'admin_page') ); } /*** *** @load metabox stuff ***/ function on_load_page() { global $ultimatemember; 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','ultimatemember'), array(&$this, 'users_overview'), $this->pagehook, 'core', 'core'); add_meta_box('um-metaboxes-sidebox-1', __('Purge Temp Files','ultimatemember'), array(&$this, 'purge_temp'), $this->pagehook, 'side', 'core'); if ( $this->language_avaialable_not_installed() ) { add_meta_box('um-metaboxes-sidebox-2', __('Language','ultimatemember'), array(&$this, 'dl_language'), $this->pagehook, 'side', 'core'); } else if ( $this->language_avaialable_installed() ) { add_meta_box('um-metaboxes-sidebox-2', __('Language','ultimatemember'), array(&$this, 'up_language'), $this->pagehook, 'side', 'core'); } else if ( $this->language_not_available() ) { add_meta_box('um-metaboxes-sidebox-2', __('Language','ultimatemember'), array(&$this, 'ct_language'), $this->pagehook, 'side', 'core'); } } function up_language() { global $ultimatemember; $locale = get_option('WPLANG'); include_once um_path . 'admin/templates/dashboard/language-update.php'; } function dl_language() { global $ultimatemember; $locale = get_option('WPLANG'); include_once um_path . 'admin/templates/dashboard/language-download.php'; } function ct_language() { global $ultimatemember; $locale = get_option('WPLANG'); include_once um_path . 'admin/templates/dashboard/language-contrib.php'; } function users_overview() { global $ultimatemember; include_once um_path . 'admin/templates/dashboard/users.php'; } function purge_temp() { global $ultimatemember; include_once um_path . 'admin/templates/dashboard/purge.php'; } /*** *** @language not available ***/ function language_not_available() { $locale = get_option('WPLANG'); if ( $locale && !strstr($locale, 'en_') && !isset( $ultimatemember->available_languages[$locale] ) && !file_exists( WP_LANG_DIR . '/plugins/ultimatemember-' . $locale . '.mo' ) ) return true; return false; } /*** *** @language available but not installed ***/ function language_avaialable_not_installed() { global $ultimatemember; $locale = get_option('WPLANG'); if ( $locale && isset( $ultimatemember->available_languages[$locale] ) && !file_exists( WP_LANG_DIR . '/plugins/ultimatemember-' . $locale . '.mo' ) ) return true; return false; } /*** *** @language available and installed ***/ function language_avaialable_installed() { global $ultimatemember; $locale = get_option('WPLANG'); if ( $locale && isset( $ultimatemember->available_languages[$locale] ) && file_exists( WP_LANG_DIR . '/plugins/ultimatemember-' . $locale . '.mo' ) ) return true; return false; } /*** *** @get a directory size ***/ function dir_size( $directory ) { global $ultimatemember; if ( $directory == 'temp' ) { $directory = $ultimatemember->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']) ) { ?>