2012-02-24 23:12:43 -05:00
|
|
|
<?php
|
|
|
|
/**
|
2012-07-26 17:45:33 -04:00
|
|
|
* Customize Section Class.
|
2012-02-24 23:12:43 -05:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Customize
|
|
|
|
* @since 3.4.0
|
|
|
|
*/
|
|
|
|
class WP_Customize_Section {
|
2012-03-21 18:55:43 -04:00
|
|
|
public $manager;
|
2012-02-24 23:12:43 -05:00
|
|
|
public $id;
|
|
|
|
public $priority = 10;
|
|
|
|
public $capability = 'edit_theme_options';
|
|
|
|
public $theme_supports = '';
|
|
|
|
public $title = '';
|
|
|
|
public $description = '';
|
2012-03-28 00:14:09 -04:00
|
|
|
public $controls;
|
2012-02-24 23:12:43 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor.
|
|
|
|
*
|
|
|
|
* @since 3.4.0
|
|
|
|
*
|
2012-07-26 17:45:33 -04:00
|
|
|
* @param WP_Customize_Manager $manager
|
2012-02-24 23:12:43 -05:00
|
|
|
* @param string $id An specific ID of the section.
|
|
|
|
* @param array $args Section arguments.
|
|
|
|
*/
|
2012-03-21 18:55:43 -04:00
|
|
|
function __construct( $manager, $id, $args = array() ) {
|
2012-02-24 23:12:43 -05:00
|
|
|
$keys = array_keys( get_class_vars( __CLASS__ ) );
|
|
|
|
foreach ( $keys as $key ) {
|
|
|
|
if ( isset( $args[ $key ] ) )
|
|
|
|
$this->$key = $args[ $key ];
|
|
|
|
}
|
|
|
|
|
2012-03-21 18:55:43 -04:00
|
|
|
$this->manager = $manager;
|
|
|
|
$this->id = $id;
|
|
|
|
|
2012-03-28 00:14:09 -04:00
|
|
|
$this->controls = array(); // Users cannot customize the $controls array.
|
2012-02-24 23:12:43 -05:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the theme supports the section and check user capabilities.
|
|
|
|
*
|
|
|
|
* @since 3.4.0
|
|
|
|
*
|
|
|
|
* @return bool False if theme doesn't support the section or user doesn't have the capability.
|
|
|
|
*/
|
2012-03-21 18:55:43 -04:00
|
|
|
public final function check_capabilities() {
|
2012-03-21 00:59:57 -04:00
|
|
|
if ( $this->capability && ! call_user_func_array( 'current_user_can', (array) $this->capability ) )
|
2012-02-24 23:12:43 -05:00
|
|
|
return false;
|
|
|
|
|
2012-03-21 00:59:57 -04:00
|
|
|
if ( $this->theme_supports && ! call_user_func_array( 'current_theme_supports', (array) $this->theme_supports ) )
|
2012-02-24 23:12:43 -05:00
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2012-04-04 13:32:03 -04:00
|
|
|
* Check capabilities and render the section.
|
2012-02-24 23:12:43 -05:00
|
|
|
*
|
|
|
|
* @since 3.4.0
|
|
|
|
*/
|
2012-03-21 18:55:43 -04:00
|
|
|
public final function maybe_render() {
|
2012-02-24 23:12:43 -05:00
|
|
|
if ( ! $this->check_capabilities() )
|
|
|
|
return;
|
2012-03-21 18:55:43 -04:00
|
|
|
|
|
|
|
do_action( 'customize_render_section', $this );
|
|
|
|
do_action( 'customize_render_section_' . $this->id );
|
|
|
|
|
|
|
|
$this->render();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Render the section.
|
|
|
|
*
|
|
|
|
* @since 3.4.0
|
|
|
|
*/
|
|
|
|
protected function render() {
|
2012-02-24 23:12:43 -05:00
|
|
|
?>
|
|
|
|
<li id="customize-section-<?php echo esc_attr( $this->id ); ?>" class="control-section customize-section">
|
2012-03-15 01:32:40 -04:00
|
|
|
<h3 class="customize-section-title" title="<?php echo esc_attr( $this->description ); ?>"><?php echo esc_html( $this->title ); ?></h3>
|
2012-03-03 21:06:11 -05:00
|
|
|
<ul class="customize-section-content">
|
2012-03-22 03:17:26 -04:00
|
|
|
<?php
|
2012-03-28 00:14:09 -04:00
|
|
|
foreach ( $this->controls as $control )
|
|
|
|
$control->maybe_render();
|
2012-03-22 03:17:26 -04:00
|
|
|
?>
|
2012-02-24 23:12:43 -05:00
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
}
|