'toogle_admin_menu_url_custer', 'toggle'=>'toggle', 'show'=>'show', 'hide'=>'hide']; const TOGGLE_ADMIN_MENU = ['_name'=>'toggle_admin_menu_option_custer', 'show'=>'show', 'hide'=>'hide']; private static $_backup_current_user = null; /* * setter and getter for current user backup * */ public static function set_current_user_backup() { if (self::$_backup_current_user !== null) return; self::$_backup_current_user = get_current_user_id(); } public static function get_current_user_backup() { return self::$_backup_current_user; } public static function reset_current_user_backup() { $backup_user = self::$_backup_current_user; self::$_backup_current_user = null; return $backup_user; } } ?>