2015-10-24 20:57:25 +02:00
< ? php
/**
* Customize API : WP_Customize_Nav_Menu_Control class
*
* @ package WordPress
* @ subpackage Customize
* @ since 4.4 . 0
*/
/**
* Customize Nav Menu Control Class .
*
* @ since 4.3 . 0
*/
class WP_Customize_Nav_Menu_Control extends WP_Customize_Control {
/**
* Control type .
*
* @ since 4.3 . 0
* @ access public
* @ var string
*/
public $type = 'nav_menu' ;
/**
* The nav menu setting .
*
* @ since 4.3 . 0
* @ access public
* @ var WP_Customize_Nav_Menu_Setting
*/
public $setting ;
/**
* Don 't render the control' s content - it uses a JS template instead .
*
* @ since 4.3 . 0
* @ access public
*/
public function render_content () {}
/**
* JS / Underscore template for the control UI .
*
* @ since 4.3 . 0
* @ access public
*/
public function content_template () {
?>
2016-09-28 21:54:28 +02:00
< button type = " button " class = " button add-new-menu-item " aria - label = " <?php esc_attr_e( 'Add or remove menu items' ); ?> " aria - expanded = " false " aria - controls = " available-menu-items " >
2015-10-24 20:57:25 +02:00
< ? php _e ( 'Add Items' ); ?>
</ button >
2015-11-13 16:47:27 +01:00
< button type = " button " class = " button-link reorder-toggle " aria - label = " <?php esc_attr_e( 'Reorder menu items' ); ?> " aria - describedby = " reorder-items-desc- { { data.menu_id }} " >
2015-10-24 20:57:25 +02:00
< span class = " reorder " >< ? php _ex ( 'Reorder' , 'Reorder menu items in Customizer' ); ?> </span>
< span class = " reorder-done " >< ? php _ex ( 'Done' , 'Cancel reordering menu items in Customizer' ); ?> </span>
</ button >
< p class = " screen-reader-text " id = " reorder-items-desc- { { data.menu_id }} " >< ? php _e ( 'When in reorder mode, additional controls to reorder menu items will be available in the items list above.' ); ?> </p>
< span class = " menu-delete-item " >
2015-11-13 16:47:27 +01:00
< button type = " button " class = " button-link menu-delete " >
2015-11-18 23:25:25 +01:00
< ? php _e ( 'Delete Menu' ); ?>
2015-10-24 20:57:25 +02:00
</ button >
</ span >
< ? php if ( current_theme_supports ( 'menus' ) ) : ?>
< ul class = " menu-settings " >
< li class = " customize-control " >
2016-11-02 23:11:31 +01:00
< span class = " customize-control-title " >< ? php _e ( 'Display Location' ); ?> </span>
2015-10-24 20:57:25 +02:00
</ li >
< ? php foreach ( get_registered_nav_menus () as $location => $description ) : ?>
< li class = " customize-control customize-control-checkbox assigned-menu-location " >
< label >
< input type = " checkbox " data - menu - id = " { { data.menu_id }} " data - location - id = " <?php echo esc_attr( $location ); ?> " class = " menu-location " /> < ? php echo $description ; ?>
2015-11-20 18:46:25 +01:00
< span class = " theme-location-set " >< ? php
/* translators: %s: menu name */
printf ( _x ( '(Current: %s)' , 'menu location' ),
'<span class="current-menu-location-name-' . esc_attr ( $location ) . '"></span>'
);
?> </span>
2015-10-24 20:57:25 +02:00
</ label >
</ li >
< ? php endforeach ; ?>
</ ul >
< ? php endif ;
}
/**
* Return parameters for this control .
*
* @ since 4.3 . 0
* @ access public
*
* @ return array Exported parameters .
*/
public function json () {
$exported = parent :: json ();
$exported [ 'menu_id' ] = $this -> setting -> term_id ;
return $exported ;
}
}