96 lines
3.7 KiB
PHP
96 lines
3.7 KiB
PHP
<?php
|
|
|
|
$Data = $this->get_data( 'appearance_menus' );
|
|
|
|
// include js css
|
|
$ReadedJs = array( 'jquery' , 'jquery-ui-sortable' );
|
|
wp_enqueue_script( $this->PageSlug , $this->Url . $this->PluginSlug . '.js', $ReadedJs , $this->Ver );
|
|
wp_enqueue_style( $this->PageSlug , $this->Url . $this->PluginSlug . '.css', array() , $this->Ver );
|
|
?>
|
|
|
|
<div class="wrap">
|
|
|
|
<?php echo $this->Msg; ?>
|
|
<h2><?php _e( 'Appearance Menus' , 'wp-admin-ui-customize' ); ?></h2>
|
|
<p> </p>
|
|
|
|
<h3 id="wauc-apply-user-roles"><?php echo $this->get_apply_roles(); ?></h3>
|
|
|
|
<form id="wauc_setting_appearance_menus" class="wauc_form" method="post" action="<?php echo esc_url( remove_query_arg( 'wauc_msg' , add_query_arg( array( 'page' => $this->PageSlug ) ) ) ); ?>">
|
|
<input type="hidden" name="<?php echo esc_attr( $this->UPFN ); ?>" value="Y" />
|
|
<?php wp_nonce_field( $this->Nonces["value"] , $this->Nonces["field"] ); ?>
|
|
<input type="hidden" name="record_field" value="appearance_menus" />
|
|
|
|
<div id="poststuff">
|
|
|
|
<div id="post-body" class="metabox-holder columns-1">
|
|
|
|
<div id="postbox-container-1" class="postbox-container">
|
|
|
|
<div id="appearance_menus">
|
|
<div class="postbox">
|
|
<h3 class="hndle"><span><?php _e( 'Menus' ); ?></span></h3>
|
|
<div class="inside">
|
|
<table class="form-table">
|
|
<tbody>
|
|
<?php $field = 'add_new_menu'; ?>
|
|
<tr>
|
|
<th>
|
|
<label><?php _e( 'Create a new menu' , 'wp-admin-ui-customize' ); ?></label>
|
|
</th>
|
|
<td>
|
|
<?php $Checked = ''; ?>
|
|
<?php if( !empty( $Data[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
|
|
<label><input type="checkbox" name="data[<?php echo esc_attr( $field ); ?>]" value="1" <?php echo esc_attr( $checked ); ?> /> <?php _e ( 'Hide' ); ?></label>
|
|
<p class="description"><?php _e( 'This is useful when you want to use only the menus that have already been created.' , 'wp-admin-ui-customize' ); ?></p>
|
|
<p><img src="<?php echo esc_url( $this->Url . 'images/appearance_menus_add_new_menu.png' ); ?>" /></p>
|
|
<p><img src="<?php echo esc_url( $this->Url . 'images/appearance_menus_add_new_menu_of_location.png' ); ?>" /></p>
|
|
</td>
|
|
</tr>
|
|
<?php $field = 'delete_menu'; ?>
|
|
<tr>
|
|
<th>
|
|
<label><?php _e( 'Delete Menu' ); ?></label>
|
|
</th>
|
|
<td>
|
|
<?php $Checked = ''; ?>
|
|
<?php if( !empty( $Data[$field] ) ) : $Checked = 'checked="checked"'; endif; ?>
|
|
<label><input type="checkbox" name="data[<?php echo esc_attr( $field ); ?>]" value="1" <?php echo esc_attr( $Checked ); ?> /> <?php _e ( 'Hide' ); ?></label>
|
|
<p class="description"><?php _e( 'This is useful when you want to use only the menus that have already been created.' , 'wp-admin-ui-customize' ); ?></p>
|
|
<p><img src="<?php echo esc_url( $this->Url . 'images/appearance_menus_delete_menu.png' ); ?>" /></p>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<br class="clear">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<p class="submit">
|
|
<input type="submit" class="button-primary" name="update" value="<?php echo esc_attr( __( 'Save' ) ); ?>" />
|
|
</p>
|
|
|
|
<p class="submit reset">
|
|
<span class="description"><?php printf( __( 'Reset the %s?' , 'wp-admin-ui-customize' ) , __( 'Appearance Menus' , 'wp-admin-ui-customize' ) ); ?></span>
|
|
<input type="submit" class="button-secondary" name="reset" value="<?php echo esc_attr( __( 'Reset settings' , 'wp-admin-ui-customize' ) ); ?>" />
|
|
</p>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<style>
|
|
</style>
|
|
<script>
|
|
jQuery(document).ready( function($) {
|
|
|
|
});
|
|
</script>
|