2011-09-26 23:32:10 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* WordPress Administration Screen API.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the column headers for a screen
|
|
|
|
*
|
|
|
|
* @since 2.7.0
|
|
|
|
*
|
|
|
|
* @param string|object $screen The screen you want the headers for
|
|
|
|
* @return array Containing the headers in the format id => UI String
|
|
|
|
*/
|
2011-10-04 05:32:12 +02:00
|
|
|
function get_column_headers( $screen ) { // TODO: fold into WP_Screen?
|
2011-09-26 23:32:10 +02:00
|
|
|
if ( is_string( $screen ) )
|
|
|
|
$screen = convert_to_screen( $screen );
|
|
|
|
|
|
|
|
global $_wp_column_headers;
|
|
|
|
|
|
|
|
if ( !isset( $_wp_column_headers[ $screen->id ] ) ) {
|
|
|
|
$_wp_column_headers[ $screen->id ] = apply_filters( 'manage_' . $screen->id . '_columns', array() );
|
|
|
|
}
|
|
|
|
|
|
|
|
return $_wp_column_headers[ $screen->id ];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a list of hidden columns.
|
|
|
|
*
|
|
|
|
* @since 2.7.0
|
|
|
|
*
|
|
|
|
* @param string|object $screen The screen you want the hidden columns for
|
|
|
|
* @return array
|
|
|
|
*/
|
2011-10-03 06:00:57 +02:00
|
|
|
function get_hidden_columns( $screen ) { // TODO: fold into WP_Screen
|
2011-09-26 23:32:10 +02:00
|
|
|
if ( is_string( $screen ) )
|
|
|
|
$screen = convert_to_screen( $screen );
|
|
|
|
|
|
|
|
return (array) get_user_option( 'manage' . $screen->id . 'columnshidden' );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get Hidden Meta Boxes
|
|
|
|
*
|
|
|
|
* @since 2.7.0
|
|
|
|
*
|
|
|
|
* @param string|object $screen Screen identifier
|
|
|
|
* @return array Hidden Meta Boxes
|
|
|
|
*/
|
2011-10-03 06:00:57 +02:00
|
|
|
function get_hidden_meta_boxes( $screen ) { // TODO: fold into WP_Screen
|
2011-09-26 23:32:10 +02:00
|
|
|
if ( is_string( $screen ) )
|
|
|
|
$screen = convert_to_screen( $screen );
|
|
|
|
|
|
|
|
$hidden = get_user_option( "metaboxhidden_{$screen->id}" );
|
|
|
|
|
|
|
|
// Hide slug boxes by default
|
|
|
|
if ( !is_array( $hidden ) ) {
|
|
|
|
if ( 'post' == $screen->base || 'page' == $screen->base )
|
|
|
|
$hidden = array('slugdiv', 'trackbacksdiv', 'postcustom', 'postexcerpt', 'commentstatusdiv', 'commentsdiv', 'authordiv', 'revisionsdiv');
|
|
|
|
else
|
|
|
|
$hidden = array( 'slugdiv' );
|
2011-10-04 05:32:12 +02:00
|
|
|
|
2011-09-26 23:32:10 +02:00
|
|
|
$hidden = apply_filters('default_hidden_meta_boxes', $hidden, $screen);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert a screen string to a screen object
|
|
|
|
*
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param string $screen The name of the screen
|
|
|
|
* @return object An object containing the safe screen name and id
|
|
|
|
*/
|
2011-10-04 05:32:12 +02:00
|
|
|
function convert_to_screen( $screen ) { // TODO: fold into WP_Screen?
|
2011-09-26 23:32:10 +02:00
|
|
|
$screen = str_replace( array('.php', '-new', '-add', '-network', '-user' ), '', $screen);
|
|
|
|
|
|
|
|
if ( is_network_admin() )
|
|
|
|
$screen .= '-network';
|
|
|
|
elseif ( is_user_admin() )
|
|
|
|
$screen .= '-user';
|
|
|
|
|
2011-10-03 06:00:57 +02:00
|
|
|
// why do we need this? $screen = (string) apply_filters( 'screen_meta_screen', $screen );
|
2011-09-26 23:32:10 +02:00
|
|
|
$screen = (object) array('id' => $screen, 'base' => $screen);
|
|
|
|
return $screen;
|
|
|
|
}
|
|
|
|
|
2011-10-04 05:32:12 +02:00
|
|
|
function screen_icon( $for = '' ) { // TODO: fold into WP_Screen?
|
|
|
|
global $current_screen;
|
2011-09-26 23:32:10 +02:00
|
|
|
|
2011-10-04 05:32:12 +02:00
|
|
|
if ( !isset($current_screen) )
|
2011-10-01 02:24:44 +02:00
|
|
|
return;
|
2011-09-26 23:32:10 +02:00
|
|
|
|
2011-10-04 05:32:12 +02:00
|
|
|
echo $current_screen->get_screen_icon( $for );
|
2011-09-26 23:32:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the current screen object
|
|
|
|
*
|
|
|
|
* @since 3.1.0
|
|
|
|
*
|
|
|
|
* @return object Current screen object
|
|
|
|
*/
|
|
|
|
function get_current_screen() {
|
|
|
|
global $current_screen;
|
|
|
|
|
|
|
|
if ( !isset($current_screen) )
|
|
|
|
return null;
|
|
|
|
|
|
|
|
return $current_screen;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the current screen object
|
|
|
|
*
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @uses $current_screen
|
|
|
|
*
|
|
|
|
* @param string $id Screen id, optional.
|
|
|
|
*/
|
2011-10-03 06:00:57 +02:00
|
|
|
function set_current_screen( $id = '' ) {
|
2011-09-26 23:32:10 +02:00
|
|
|
global $current_screen;
|
|
|
|
|
2011-10-04 05:32:12 +02:00
|
|
|
if ( !is_a( $current_screen, 'WP_Screen' ) )
|
|
|
|
$current_screen = new WP_Screen( $id );
|
2011-09-26 23:32:10 +02:00
|
|
|
|
2011-10-03 06:00:57 +02:00
|
|
|
// why do we need this? $current_screen = apply_filters('current_screen', $current_screen);
|
2011-09-26 23:32:10 +02:00
|
|
|
}
|
|
|
|
|
2011-09-27 16:30:56 +02:00
|
|
|
/**
|
|
|
|
* A class representing the current admin screen.
|
|
|
|
*
|
|
|
|
* @since 3.3.0
|
|
|
|
* @access public
|
|
|
|
*/
|
2011-09-27 01:31:54 +02:00
|
|
|
final class WP_Screen {
|
2011-09-27 16:30:56 +02:00
|
|
|
/**
|
|
|
|
* Any action associated with the screen. 'add' for *-add.php and *-new.php screens. Empty otherwise.
|
|
|
|
*
|
|
|
|
* @since 3.3.0
|
|
|
|
* @var string
|
2011-10-01 19:59:46 +02:00
|
|
|
* @access public
|
2011-09-27 16:30:56 +02:00
|
|
|
*/
|
2011-09-27 01:31:54 +02:00
|
|
|
public $action = '';
|
2011-09-27 16:30:56 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The base type of the screen. This is typically the same as $id but with any post types and taxonomies stripped.
|
|
|
|
* For example, for an $id of 'edit-post' the base is 'edit'.
|
|
|
|
*
|
|
|
|
* @since 3.3.0
|
|
|
|
* @var string
|
2011-10-01 19:59:46 +02:00
|
|
|
* @access public
|
2011-09-27 16:30:56 +02:00
|
|
|
*/
|
2011-09-27 01:31:54 +02:00
|
|
|
public $base;
|
2011-09-27 16:30:56 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The unique ID of the screen.
|
|
|
|
*
|
|
|
|
* @since 3.3.0
|
|
|
|
* @var string
|
2011-10-01 19:59:46 +02:00
|
|
|
* @access public
|
2011-09-27 16:30:56 +02:00
|
|
|
*/
|
2011-09-27 01:31:54 +02:00
|
|
|
public $id;
|
2011-09-27 16:30:56 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether the screen is in the network admin.
|
|
|
|
*
|
|
|
|
* @since 3.3.0
|
|
|
|
* @var bool
|
2011-10-01 19:59:46 +02:00
|
|
|
* @access public
|
2011-09-27 16:30:56 +02:00
|
|
|
*/
|
2011-09-27 01:31:54 +02:00
|
|
|
public $is_network;
|
2011-09-27 16:30:56 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether the screen is in the user admin.
|
|
|
|
*
|
|
|
|
* @since 3.3.0
|
|
|
|
* @var bool
|
2011-10-01 19:59:46 +02:00
|
|
|
* @access public
|
2011-09-27 16:30:56 +02:00
|
|
|
*/
|
2011-09-27 01:31:54 +02:00
|
|
|
public $is_user;
|
2011-09-27 16:30:56 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The base menu parent.
|
|
|
|
* This is derived from $parent_file by removing the query string and any .php extension.
|
|
|
|
* $parent_file values of 'edit.php?post_type=page' and 'edit.php?post_type=post' have a $parent_base of 'edit'.
|
|
|
|
*
|
|
|
|
* @since 3.3.0
|
|
|
|
* @var string
|
2011-10-01 19:59:46 +02:00
|
|
|
* @access public
|
2011-09-27 16:30:56 +02:00
|
|
|
*/
|
2011-09-27 01:31:54 +02:00
|
|
|
public $parent_base;
|
2011-09-27 16:30:56 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The parent_file for the screen per the admin menu system.
|
|
|
|
* Some $parent_file values are 'edit.php?post_type=page', 'edit.php', and 'options-general.php'.
|
|
|
|
*
|
|
|
|
* @since 3.3.0
|
|
|
|
* @var string
|
2011-10-01 19:59:46 +02:00
|
|
|
* @access public
|
2011-09-27 16:30:56 +02:00
|
|
|
*/
|
2011-09-27 01:31:54 +02:00
|
|
|
public $parent_file;
|
2011-09-27 16:30:56 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The post type associated with the screen, if any.
|
|
|
|
* The 'edit.php?post_type=page' screen has a post type of 'page'.
|
|
|
|
*
|
|
|
|
* @since 3.3.0
|
|
|
|
* @var string
|
2011-10-01 19:59:46 +02:00
|
|
|
* @access public
|
2011-09-27 16:30:56 +02:00
|
|
|
*/
|
2011-09-27 01:31:54 +02:00
|
|
|
public $post_type;
|
2011-09-27 16:30:56 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The taxonomy associated with the screen, if any.
|
|
|
|
* The 'edit-tags.php?taxonomy=category' screen has a taxonomy of 'category'.
|
|
|
|
* @since 3.3.0
|
|
|
|
* @var string
|
2011-10-01 19:59:46 +02:00
|
|
|
* @access public
|
2011-09-27 16:30:56 +02:00
|
|
|
*/
|
2011-09-27 01:31:54 +02:00
|
|
|
public $taxonomy;
|
|
|
|
|
2011-10-01 02:24:44 +02:00
|
|
|
/**
|
|
|
|
* The help tab data associated with the screen, if any.
|
|
|
|
*
|
|
|
|
* @since 3.3.0
|
|
|
|
* @var array
|
|
|
|
* @access private
|
|
|
|
*/
|
2011-10-01 19:59:46 +02:00
|
|
|
private $_help_tabs = array();
|
2011-10-01 02:24:44 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The help sidebar data associated with the screen, if any.
|
|
|
|
*
|
|
|
|
* @since 3.3.0
|
|
|
|
* @var string
|
|
|
|
* @access private
|
|
|
|
*/
|
2011-10-01 19:59:46 +02:00
|
|
|
private $_help_sidebar = '';
|
2011-10-01 02:24:44 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The screen options associated with the screen, if any.
|
|
|
|
*
|
|
|
|
* @since 3.3.0
|
|
|
|
* @var array
|
|
|
|
* @access private
|
|
|
|
*/
|
2011-10-03 06:00:57 +02:00
|
|
|
private $_options = array(
|
|
|
|
'_context' => '',
|
|
|
|
'_screen_settings' => ''
|
|
|
|
);
|
2011-10-01 02:24:44 +02:00
|
|
|
|
|
|
|
/**
|
2011-10-03 06:00:57 +02:00
|
|
|
* Show screen options if any.
|
2011-10-01 02:24:44 +02:00
|
|
|
*
|
|
|
|
* @since 3.3.0
|
|
|
|
* @var bool
|
|
|
|
* @access private
|
|
|
|
*/
|
2011-10-03 06:00:57 +02:00
|
|
|
private $_show_options = false;
|
2011-10-01 02:24:44 +02:00
|
|
|
|
2011-09-27 16:30:56 +02:00
|
|
|
/**
|
|
|
|
* Constructor
|
2011-09-28 02:57:56 +02:00
|
|
|
*
|
2011-09-27 16:30:56 +02:00
|
|
|
* @since 3.3.0
|
|
|
|
*
|
|
|
|
* @param string $id A screen id. If empty, the $hook_suffix global is used to derive the ID.
|
|
|
|
*/
|
2011-09-27 01:31:54 +02:00
|
|
|
public function __construct( $id = '' ) {
|
2011-09-26 23:32:10 +02:00
|
|
|
global $hook_suffix, $typenow, $taxnow;
|
|
|
|
|
|
|
|
$action = '';
|
|
|
|
|
|
|
|
if ( empty( $id ) ) {
|
|
|
|
$screen = $hook_suffix;
|
|
|
|
$screen = str_replace('.php', '', $screen);
|
2011-10-03 06:00:57 +02:00
|
|
|
|
2011-09-26 23:32:10 +02:00
|
|
|
if ( preg_match('/-add|-new$/', $screen) )
|
|
|
|
$action = 'add';
|
2011-10-03 06:00:57 +02:00
|
|
|
|
2011-09-26 23:32:10 +02:00
|
|
|
$screen = str_replace('-new', '', $screen);
|
|
|
|
$screen = str_replace('-add', '', $screen);
|
|
|
|
$this->id = $this->base = $screen;
|
|
|
|
} else {
|
|
|
|
$id = sanitize_key( $id );
|
2011-10-03 06:00:57 +02:00
|
|
|
|
2011-09-26 23:32:10 +02:00
|
|
|
if ( false !== strpos($id, '-') ) {
|
|
|
|
list( $id, $typenow ) = explode('-', $id, 2);
|
2011-10-03 06:00:57 +02:00
|
|
|
|
2011-09-26 23:32:10 +02:00
|
|
|
if ( taxonomy_exists( $typenow ) ) {
|
|
|
|
$id = 'edit-tags';
|
|
|
|
$taxnow = $typenow;
|
|
|
|
$typenow = '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$this->id = $this->base = $id;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->action = $action;
|
|
|
|
|
|
|
|
// Map index to dashboard
|
|
|
|
if ( 'index' == $this->base )
|
|
|
|
$this->base = 'dashboard';
|
2011-10-03 06:00:57 +02:00
|
|
|
|
2011-09-26 23:32:10 +02:00
|
|
|
if ( 'index' == $this->id )
|
|
|
|
$this->id = 'dashboard';
|
|
|
|
|
|
|
|
if ( 'edit' == $this->id ) {
|
|
|
|
if ( empty($typenow) )
|
|
|
|
$typenow = 'post';
|
2011-10-03 06:00:57 +02:00
|
|
|
|
2011-09-26 23:32:10 +02:00
|
|
|
$this->id .= '-' . $typenow;
|
2011-09-27 16:33:51 +02:00
|
|
|
$this->post_type = $typenow;
|
2011-09-26 23:32:10 +02:00
|
|
|
} elseif ( 'post' == $this->id ) {
|
|
|
|
if ( empty($typenow) )
|
|
|
|
$typenow = 'post';
|
2011-10-03 06:00:57 +02:00
|
|
|
|
2011-09-26 23:32:10 +02:00
|
|
|
$this->id = $typenow;
|
|
|
|
$this->post_type = $typenow;
|
|
|
|
} elseif ( 'edit-tags' == $this->id ) {
|
|
|
|
if ( empty($taxnow) )
|
|
|
|
$taxnow = 'post_tag';
|
2011-10-03 06:00:57 +02:00
|
|
|
|
2011-09-26 23:32:10 +02:00
|
|
|
$this->id = 'edit-' . $taxnow;
|
|
|
|
$this->taxonomy = $taxnow;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->is_network = is_network_admin();
|
|
|
|
$this->is_user = is_user_admin();
|
|
|
|
|
|
|
|
if ( $this->is_network ) {
|
|
|
|
$this->base .= '-network';
|
|
|
|
$this->id .= '-network';
|
|
|
|
} elseif ( $this->is_user ) {
|
|
|
|
$this->base .= '-user';
|
|
|
|
$this->id .= '-user';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-27 16:30:56 +02:00
|
|
|
/**
|
|
|
|
* Set the parent information for the screen.
|
|
|
|
* This is called in admin-header.php after the menu parent for the screen has been determined.
|
|
|
|
*
|
|
|
|
* @since 3.3.0
|
|
|
|
*
|
|
|
|
* @param string $parent_file The parent file of the screen. Typically the $parent_file global.
|
|
|
|
*/
|
2011-09-26 23:32:10 +02:00
|
|
|
function set_parentage( $parent_file ) {
|
|
|
|
$this->parent_file = $parent_file;
|
|
|
|
$this->parent_base = preg_replace('/\?.*$/', '', $parent_file);
|
|
|
|
$this->parent_base = str_replace('.php', '', $this->parent_base);
|
|
|
|
}
|
|
|
|
|
2011-09-27 16:30:56 +02:00
|
|
|
/**
|
|
|
|
* Adds an option for the screen.
|
2011-10-03 06:00:57 +02:00
|
|
|
* Use the 'add_screen_help_and_options' action to add screen options.
|
2011-09-28 02:57:56 +02:00
|
|
|
*
|
2011-09-27 16:30:56 +02:00
|
|
|
* @since 3.3.0
|
|
|
|
*
|
|
|
|
* @param string $option Option ID
|
2011-10-03 06:00:57 +02:00
|
|
|
* @param mixed $args Associative array of arguments particular to the default $option or the HTML string to be printed in the Screen Options tab.
|
2011-09-27 16:30:56 +02:00
|
|
|
*/
|
2011-10-04 19:21:59 +02:00
|
|
|
public function add_option( $option, $args = null ) {
|
2011-10-03 06:00:57 +02:00
|
|
|
if ( is_array($args) && !empty($option) )
|
|
|
|
$this->_options[ $option ] = $args;
|
2011-10-04 19:21:59 +02:00
|
|
|
elseif ( is_string($option) )
|
|
|
|
$this->_options['_screen_settings'] .= $option;
|
|
|
|
else
|
|
|
|
return false;
|
2011-10-03 06:00:57 +02:00
|
|
|
|
|
|
|
$this->_show_options = true;
|
2011-10-04 19:21:59 +02:00
|
|
|
return true;
|
2011-10-03 06:00:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds option context.
|
|
|
|
* Use the 'add_screen_help_and_options' action to add it. Will not be shown if there aren't any screen options.
|
|
|
|
*
|
|
|
|
* @since 3.3.0
|
|
|
|
*
|
|
|
|
* @param string $text
|
|
|
|
*/
|
|
|
|
public function add_option_context( $text ) {
|
|
|
|
$this->_options['_context'] .= $text;
|
2011-09-26 23:32:10 +02:00
|
|
|
}
|
|
|
|
|
2011-09-27 16:30:56 +02:00
|
|
|
/**
|
|
|
|
* Add a help tab to the contextual help for the screen.
|
2011-10-03 06:00:57 +02:00
|
|
|
* Use the 'add_screen_help_and_options' action to add contextual help tabs.
|
2011-09-28 02:57:56 +02:00
|
|
|
*
|
2011-09-27 16:30:56 +02:00
|
|
|
* @since 3.3.0
|
|
|
|
*
|
2011-10-01 02:24:44 +02:00
|
|
|
* @param array $args
|
|
|
|
* - string - title - Title for the tab.
|
2011-10-03 06:00:57 +02:00
|
|
|
* - string - id - Tab ID.
|
2011-10-02 00:22:33 +02:00
|
|
|
* - string - section - Section title for the tab. Optional.
|
2011-10-01 02:24:44 +02:00
|
|
|
* - string - content - Help tab content in plain text or HTML. Optional.
|
|
|
|
* - callback - callback - A callback to generate the tab content. Optional.
|
|
|
|
*
|
2011-09-27 16:30:56 +02:00
|
|
|
*/
|
2011-10-01 02:24:44 +02:00
|
|
|
public function add_help_tab( $args ) {
|
|
|
|
$defaults = array(
|
|
|
|
'title' => false,
|
|
|
|
'id' => false,
|
2011-10-03 06:00:57 +02:00
|
|
|
'section' => false,
|
2011-10-01 02:24:44 +02:00
|
|
|
'content' => '',
|
2011-10-03 06:00:57 +02:00
|
|
|
'callback' => false
|
2011-10-01 02:24:44 +02:00
|
|
|
);
|
|
|
|
$args = wp_parse_args( $args, $defaults );
|
|
|
|
|
2011-10-03 06:00:57 +02:00
|
|
|
// Ensure we have title and ID.
|
|
|
|
if ( ! $args['title'] || ! $args['id'] )
|
2011-10-04 19:21:59 +02:00
|
|
|
return false;
|
2011-09-26 23:32:10 +02:00
|
|
|
|
2011-10-01 19:59:46 +02:00
|
|
|
$this->_help_tabs[] = $args;
|
2011-10-04 19:21:59 +02:00
|
|
|
return true;
|
2011-09-26 23:32:10 +02:00
|
|
|
}
|
|
|
|
|
2011-09-27 16:30:56 +02:00
|
|
|
/**
|
|
|
|
* Add a sidebar to the contextual help for the screen.
|
2011-10-03 06:00:57 +02:00
|
|
|
* Use the 'add_screen_help_and_options' action to add a sidebar to the contextual help.
|
2011-09-28 02:57:56 +02:00
|
|
|
*
|
2011-09-27 16:30:56 +02:00
|
|
|
* @since 3.3.0
|
|
|
|
*
|
|
|
|
* @param string $content Sidebar content in plain text or HTML.
|
|
|
|
*/
|
2011-09-27 01:31:54 +02:00
|
|
|
public function add_help_sidebar( $content ) {
|
2011-10-03 06:00:57 +02:00
|
|
|
if ( empty($this->_help_sidebar) ) // add only one
|
|
|
|
$this->_help_sidebar = $content;
|
2011-10-01 02:24:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Render the screen's help section.
|
|
|
|
*
|
|
|
|
* This will trigger the deprecated filters for backwards compatibility.
|
|
|
|
*
|
|
|
|
* @since 3.3.0
|
|
|
|
*/
|
|
|
|
public function render_screen_meta() {
|
2011-09-26 23:32:10 +02:00
|
|
|
global $_wp_contextual_help;
|
|
|
|
|
2011-10-04 05:32:12 +02:00
|
|
|
// Intended for adding Help and Screen Options.
|
2011-10-04 19:21:59 +02:00
|
|
|
do_action('add_screen_help_and_options', $this);
|
2011-10-03 06:00:57 +02:00
|
|
|
|
2011-10-01 02:24:44 +02:00
|
|
|
// Call old contextual_help_list filter.
|
|
|
|
if ( ! isset( $_wp_contextual_help ) )
|
|
|
|
$_wp_contextual_help = array();
|
2011-10-02 08:59:36 +02:00
|
|
|
|
2011-10-03 06:00:57 +02:00
|
|
|
// why are we filtering a global? $_wp_contextual_help = apply_filters( 'contextual_help_list', $_wp_contextual_help, $this );
|
2011-10-01 02:24:44 +02:00
|
|
|
|
|
|
|
if ( isset( $_wp_contextual_help[ $this->id ] ) ) {
|
|
|
|
// Call old contextual_help filter.
|
2011-10-03 06:00:57 +02:00
|
|
|
// why are we filtering the same global second time??
|
2011-10-01 02:24:44 +02:00
|
|
|
$contextual_help = apply_filters( 'contextual_help', $_wp_contextual_help[ $this->id ], $this->id, $this );
|
|
|
|
|
|
|
|
$this->add_help_tab( array(
|
2011-10-03 06:00:57 +02:00
|
|
|
'title' => __('Screen Info'),
|
|
|
|
'id' => 'screen-info',
|
|
|
|
'content' => $_wp_contextual_help[ $this->id ]
|
2011-10-01 02:24:44 +02:00
|
|
|
) );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Time to render!
|
|
|
|
?>
|
|
|
|
<div id="screen-meta" class='metabox-prefs'>
|
|
|
|
<div id="contextual-help-wrap" class="hidden">
|
2011-10-02 20:19:49 +02:00
|
|
|
<div class="contextual-help-tabs">
|
|
|
|
<ul>
|
2011-10-03 06:00:57 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
if ( $this->_show_options ) {
|
|
|
|
$class = true;
|
2011-10-01 02:24:44 +02:00
|
|
|
?>
|
2011-10-03 06:00:57 +02:00
|
|
|
<li id="tab-link-screen-options" class="active">
|
|
|
|
<a href="#tab-panel-screen-options">
|
|
|
|
<?php _e('Screen Options'); ?>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<?php
|
|
|
|
}
|
2011-10-01 02:24:44 +02:00
|
|
|
|
2011-10-03 06:00:57 +02:00
|
|
|
foreach ( $this->_help_tabs as $i => $tab ) {
|
|
|
|
$id = esc_attr($tab['id']);
|
|
|
|
$class = empty($class) && $i == 0 ? ' class="active"' : '';
|
|
|
|
?>
|
|
|
|
<li id="<?php echo "tab-link-$id"; ?>"<?php echo $class; ?>>
|
|
|
|
<a href="<?php echo "#tab-panel-$id"; ?>">
|
2011-10-01 02:24:44 +02:00
|
|
|
<?php echo esc_html( $tab['title'] ); ?>
|
|
|
|
</a>
|
|
|
|
</li>
|
2011-10-03 06:00:57 +02:00
|
|
|
<?php } ?>
|
2011-10-02 20:19:49 +02:00
|
|
|
</ul>
|
|
|
|
</div>
|
2011-10-03 06:00:57 +02:00
|
|
|
<?php
|
2011-10-01 02:24:44 +02:00
|
|
|
|
2011-10-03 06:00:57 +02:00
|
|
|
if ( $this->_help_sidebar )
|
|
|
|
echo '<div class="contextual-help-sidebar">' . $this->_help_sidebar . '</div>';
|
2011-10-01 02:24:44 +02:00
|
|
|
|
2011-10-03 06:00:57 +02:00
|
|
|
?>
|
2011-10-01 02:24:44 +02:00
|
|
|
<div class="contextual-help-tabs-wrap">
|
2011-10-03 06:00:57 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
if ( $this->_show_options ) {
|
|
|
|
$class2 = true;
|
|
|
|
echo '<div id="tab-panel-screen-options" class="help-tab-content active">';
|
|
|
|
|
|
|
|
if ( !empty($this->_options['_context']) )
|
|
|
|
echo $this->_options['_context'];
|
|
|
|
|
|
|
|
$this->render_screen_options();
|
|
|
|
echo '</div>';
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ( $this->_help_tabs as $i => $tab ) {
|
|
|
|
$class2 = empty($class2) && $i == 0 ? ' active' : '';
|
2011-10-01 02:24:44 +02:00
|
|
|
?>
|
|
|
|
|
2011-10-03 06:00:57 +02:00
|
|
|
<div id="<?php echo esc_attr( "tab-panel-{$tab['id']}" ); ?>" class="help-tab-content<?php echo $class2; ?>">
|
2011-10-01 02:24:44 +02:00
|
|
|
<?php
|
2011-10-01 23:18:04 +02:00
|
|
|
if ( $tab['section'] )
|
|
|
|
echo '<h3>' . esc_html( $tab['section'] ) . '</h3>';
|
|
|
|
|
2011-10-01 02:24:44 +02:00
|
|
|
// Print tab content.
|
|
|
|
echo $tab['content'];
|
|
|
|
|
|
|
|
// If it exists, fire tab callback.
|
|
|
|
if ( ! empty( $tab['callback'] ) )
|
|
|
|
call_user_func( $tab['callback'], $this );
|
|
|
|
?>
|
|
|
|
</div>
|
2011-10-03 06:00:57 +02:00
|
|
|
<?php } ?>
|
2011-10-01 02:24:44 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
|
2011-10-03 06:00:57 +02:00
|
|
|
/**
|
|
|
|
* Render the screen options tab.
|
|
|
|
*
|
|
|
|
* @since 3.3.0
|
|
|
|
*/
|
|
|
|
public function render_screen_options() {
|
2011-10-01 02:24:44 +02:00
|
|
|
|
2011-10-03 06:00:57 +02:00
|
|
|
$screen_settings = $this->_options['_screen_settings'];
|
2011-10-01 02:24:44 +02:00
|
|
|
|
2011-10-03 06:00:57 +02:00
|
|
|
// Default screen_settings for various screens.
|
|
|
|
// TODO: should probably be set on these screens, not here.
|
2011-10-01 02:24:44 +02:00
|
|
|
switch ( $this->id ) {
|
|
|
|
case 'widgets':
|
2011-10-03 06:00:57 +02:00
|
|
|
$screen_settings .= '<p><a id="access-on" href="widgets.php?widgets-access=on">' . __('Enable accessibility mode') . '</a><a id="access-off" href="widgets.php?widgets-access=off">' . __('Disable accessibility mode') . "</a></p>\n";
|
2011-10-01 02:24:44 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-10-03 06:00:57 +02:00
|
|
|
// TODO: deprecate
|
|
|
|
$screen_settings = apply_filters( 'screen_settings', $screen_settings, $this );
|
2011-10-01 02:24:44 +02:00
|
|
|
|
2011-10-04 05:32:12 +02:00
|
|
|
echo '<form id="adv-settings" action="" method="post">';
|
2011-10-01 02:24:44 +02:00
|
|
|
|
2011-10-03 06:00:57 +02:00
|
|
|
$this->render_table_columns_prefs();
|
|
|
|
$this->render_metabox_prefs();
|
|
|
|
$this->render_screen_layout();
|
|
|
|
$this->render_per_page_options();
|
|
|
|
echo $screen_settings;
|
2011-10-01 02:24:44 +02:00
|
|
|
|
2011-10-04 05:32:12 +02:00
|
|
|
wp_nonce_field( 'screen-options-nonce', 'screenoptionnonce', false );
|
|
|
|
echo '</form>';
|
|
|
|
|
2011-10-02 08:59:36 +02:00
|
|
|
}
|
|
|
|
|
2011-10-01 02:24:44 +02:00
|
|
|
/**
|
2011-10-03 06:00:57 +02:00
|
|
|
* Render the option for hiding table columns on the page
|
2011-10-01 02:24:44 +02:00
|
|
|
*
|
|
|
|
* @since 3.3.0
|
|
|
|
*/
|
2011-10-03 06:00:57 +02:00
|
|
|
function render_table_columns_prefs() {
|
2011-10-01 02:24:44 +02:00
|
|
|
$columns = get_column_headers( $this );
|
|
|
|
|
2011-10-03 06:00:57 +02:00
|
|
|
if ( ! empty( $columns ) ) {
|
|
|
|
$hidden = get_hidden_columns( $this );
|
|
|
|
?>
|
2011-10-01 02:24:44 +02:00
|
|
|
<h5><?php echo ( isset( $columns['_title'] ) ? $columns['_title'] : _x('Show on screen', 'Columns') ) ?></h5>
|
|
|
|
<div class="metabox-prefs">
|
|
|
|
<?php
|
|
|
|
$special = array('_title', 'cb', 'comment', 'media', 'name', 'title', 'username', 'blogname');
|
|
|
|
|
|
|
|
foreach ( $columns as $column => $title ) {
|
|
|
|
// Can't hide these for they are special
|
|
|
|
if ( in_array( $column, $special ) )
|
|
|
|
continue;
|
|
|
|
if ( empty( $title ) )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if ( 'comments' == $column )
|
|
|
|
$title = __( 'Comments' );
|
2011-10-03 06:00:57 +02:00
|
|
|
|
2011-10-01 02:24:44 +02:00
|
|
|
$id = "$column-hide";
|
|
|
|
echo '<label for="' . $id . '">';
|
|
|
|
echo '<input class="hide-column-tog" name="' . $id . '" type="checkbox" id="' . $id . '" value="' . $column . '"' . checked( !in_array($column, $hidden), true, false ) . ' />';
|
|
|
|
echo "$title</label>\n";
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<br class="clear" />
|
|
|
|
</div>
|
2011-10-03 06:00:57 +02:00
|
|
|
<?php }
|
|
|
|
}
|
2011-10-01 02:24:44 +02:00
|
|
|
|
2011-10-03 06:00:57 +02:00
|
|
|
/**
|
|
|
|
* Render the option for hiding metaboxes on the page
|
|
|
|
*
|
|
|
|
* @since 3.3.0
|
|
|
|
*/
|
|
|
|
function render_metabox_prefs() {
|
|
|
|
global $wp_meta_boxes;
|
2011-10-01 02:24:44 +02:00
|
|
|
|
2011-10-04 05:32:12 +02:00
|
|
|
if ( !empty( $wp_meta_boxes[ $this->id ] ) ) {
|
|
|
|
$hidden = get_hidden_meta_boxes($this);
|
2011-10-03 06:00:57 +02:00
|
|
|
?>
|
|
|
|
<h5><?php _ex('Show on screen', 'Metaboxes') ?></h5>
|
|
|
|
<div class="metabox-prefs">
|
2011-10-04 05:32:12 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
foreach ( array_keys($wp_meta_boxes[$this->id]) as $context ) {
|
|
|
|
foreach ( array_keys($wp_meta_boxes[$this->id][$context]) as $priority ) {
|
|
|
|
foreach ( $wp_meta_boxes[$this->id][$context][$priority] as $box ) {
|
|
|
|
if ( false == $box || ! $box['title'] )
|
|
|
|
continue;
|
|
|
|
// Submit box cannot be hidden
|
|
|
|
if ( 'submitdiv' == $box['id'] || 'linksubmitdiv' == $box['id'] )
|
|
|
|
continue;
|
|
|
|
$box_id = $box['id'];
|
|
|
|
echo '<label for="' . $box_id . '-hide">';
|
|
|
|
echo '<input class="hide-postbox-tog" name="' . $box_id . '-hide" type="checkbox" id="' . $box_id . '-hide" value="' . $box_id . '"' . (! in_array($box_id, $hidden) ? ' checked="checked"' : '') . ' />';
|
|
|
|
echo "{$box['title']}</label>\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|
2011-10-03 06:00:57 +02:00
|
|
|
<br class="clear" />
|
|
|
|
</div>
|
|
|
|
<?php
|
|
|
|
}
|
2011-10-01 02:24:44 +02:00
|
|
|
}
|
|
|
|
|
2011-10-02 02:04:30 +02:00
|
|
|
/**
|
|
|
|
* Render the option for number of columns on the page
|
|
|
|
*
|
|
|
|
* @since 3.3.0
|
|
|
|
*/
|
2011-10-01 02:24:44 +02:00
|
|
|
function render_screen_layout() {
|
|
|
|
global $screen_layout_columns;
|
|
|
|
|
|
|
|
// Back compat for plugins using the filter instead of add_screen_option()
|
2011-10-03 06:00:57 +02:00
|
|
|
// TODO: deprecate it
|
2011-10-01 02:24:44 +02:00
|
|
|
$columns = apply_filters( 'screen_layout_columns', array(), $this->id, $this );
|
|
|
|
|
|
|
|
if ( ! empty( $columns ) && isset( $columns[ $this->id ] ) )
|
2011-10-03 06:00:57 +02:00
|
|
|
$this->add_option( 'layout_columns', array('max' => $columns[ $this->id ] ) );
|
2011-10-01 02:24:44 +02:00
|
|
|
|
2011-10-01 19:59:46 +02:00
|
|
|
if ( ! isset( $this->_options['layout_columns'] ) ) {
|
2011-10-01 02:24:44 +02:00
|
|
|
$screen_layout_columns = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$screen_layout_columns = get_user_option("screen_layout_$this->id");
|
2011-10-01 19:59:46 +02:00
|
|
|
$num = $this->_options['layout_columns']['max'];
|
2011-10-01 02:24:44 +02:00
|
|
|
|
|
|
|
if ( ! $screen_layout_columns ) {
|
2011-10-01 19:59:46 +02:00
|
|
|
if ( isset( $this->_options['layout_columns']['default'] ) )
|
|
|
|
$screen_layout_columns = $this->_options['layout_columns']['default'];
|
2011-10-01 02:24:44 +02:00
|
|
|
else
|
|
|
|
$screen_layout_columns = 'auto';
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|
|
|
|
<h5><?php _e('Screen Layout'); ?></h5>
|
|
|
|
<div class='columns-prefs'><?php
|
|
|
|
_e('Number of Columns:');
|
|
|
|
for ( $i = 1; $i <= $num; ++$i ):
|
|
|
|
?>
|
|
|
|
<label>
|
|
|
|
<input type='radio' name='screen_columns' value='<?php echo esc_attr( $i ); ?>'
|
|
|
|
<?php checked( $screen_layout_columns, $i ); ?> />
|
|
|
|
<?php echo esc_html( $i ); ?>
|
|
|
|
</label>
|
|
|
|
<?php
|
|
|
|
endfor; ?>
|
|
|
|
<label>
|
|
|
|
<input type='radio' id='wp_auto_columns' name='screen_columns' value='auto'
|
|
|
|
<?php checked( $screen_layout_columns, 'auto' ); ?> />
|
|
|
|
<?php esc_html_e('Auto'); ?>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
|
2011-10-02 02:04:30 +02:00
|
|
|
/**
|
|
|
|
* Render the items per page option
|
|
|
|
*
|
|
|
|
* @since 3.3.0
|
|
|
|
*/
|
2011-10-01 02:24:44 +02:00
|
|
|
function render_per_page_options() {
|
2011-10-03 06:00:57 +02:00
|
|
|
if ( empty( $this->_options['per_page'] ) )
|
2011-10-01 02:24:44 +02:00
|
|
|
return;
|
|
|
|
|
2011-10-01 19:59:46 +02:00
|
|
|
$per_page_label = $this->_options['per_page']['label'];
|
2011-10-01 02:24:44 +02:00
|
|
|
|
2011-10-01 19:59:46 +02:00
|
|
|
if ( empty( $this->_options['per_page']['option'] ) ) {
|
2011-10-01 02:24:44 +02:00
|
|
|
$option = str_replace( '-', '_', "{$this->id}_per_page" );
|
|
|
|
} else {
|
2011-10-01 19:59:46 +02:00
|
|
|
$option = $this->_options['per_page']['option'];
|
2011-10-01 02:24:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$per_page = (int) get_user_option( $option );
|
|
|
|
if ( empty( $per_page ) || $per_page < 1 ) {
|
2011-10-01 19:59:46 +02:00
|
|
|
if ( isset($this->_options['per_page']['default']) )
|
|
|
|
$per_page = $this->_options['per_page']['default'];
|
2011-10-01 02:24:44 +02:00
|
|
|
else
|
|
|
|
$per_page = 20;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( 'edit_comments_per_page' == $option ) {
|
|
|
|
$comment_status = isset( $_REQUEST['comment_status'] ) ? $_REQUEST['comment_status'] : 'all';
|
|
|
|
$per_page = apply_filters( 'comments_per_page', $per_page, $comment_status );
|
|
|
|
} elseif ( 'categories_per_page' == $option ) {
|
|
|
|
$per_page = apply_filters( 'edit_categories_per_page', $per_page );
|
|
|
|
} else {
|
|
|
|
$per_page = apply_filters( $option, $per_page );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Back compat
|
|
|
|
if ( isset( $this->post_type ) )
|
|
|
|
$per_page = apply_filters( 'edit_posts_per_page', $per_page, $this->post_type );
|
|
|
|
|
|
|
|
?>
|
|
|
|
<h5><?php _ex('Show on screen', 'Screen Options') ?></h5>
|
|
|
|
<div class='screen-options'>
|
|
|
|
<?php if ( !empty($per_page_label) ): ?>
|
2011-10-01 05:21:36 +02:00
|
|
|
<input type='text' class='screen-per-page' name='wp_screen_options[value]'
|
|
|
|
id='<?php echo esc_attr( $option ); ?>' maxlength='3'
|
|
|
|
value='<?php echo esc_attr( $per_page ); ?>' />
|
|
|
|
<label for='<?php echo esc_attr( $option ); ?>'>
|
|
|
|
<?php echo esc_html( $per_page_label ); ?>
|
|
|
|
</label>
|
2011-10-01 02:24:44 +02:00
|
|
|
<?php endif;
|
|
|
|
|
|
|
|
echo get_submit_button( __( 'Apply' ), 'button', 'screen-options-apply', false ); ?>
|
|
|
|
<input type='hidden' name='wp_screen_options[option]' value='<?php echo esc_attr($option); ?>' />
|
|
|
|
</div>
|
|
|
|
<?php
|
2011-09-26 23:32:10 +02:00
|
|
|
}
|
2011-10-04 05:32:12 +02:00
|
|
|
|
|
|
|
function get_screen_icon( $for = '' ) {
|
|
|
|
|
|
|
|
if ( !empty($for) && is_string($for) ) {
|
|
|
|
$name = $for;
|
|
|
|
} else {
|
|
|
|
if ( !empty($this->parent_base) )
|
|
|
|
$name = $this->parent_base;
|
|
|
|
else
|
|
|
|
$name = $this->base;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( 'edit' == $name && isset($this->post_type) && 'page' == $this->post_type )
|
|
|
|
$name = 'edit-pages';
|
|
|
|
|
|
|
|
$class = '';
|
|
|
|
if ( !empty( $this->post_type ) )
|
|
|
|
$class = ' ' . sanitize_html_class( 'icon32-posts-' . $this->post_type );
|
|
|
|
|
|
|
|
return '<div id="icon-' . esc_attr( $name ) . '" class="icon32' . $class . '"><br /></div>';
|
|
|
|
}
|
2011-10-01 23:18:04 +02:00
|
|
|
}
|
2011-10-03 06:00:57 +02:00
|
|
|
|