mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-07-18 14:13:46 +09:00
- fixed nav menus
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
jQuery(document).ready(function ($) {
|
||||
|
||||
var template = wp.template('um-nav-menus-fields');
|
||||
|
||||
$(document).on('menu-item-added', function (e, $menuMarkup) {
|
||||
var id = $($menuMarkup).attr('id').substr(10);
|
||||
$('fieldset.field-move', $($menuMarkup)).before(template({menuItemID: id,restriction_data:{um_nav_public:0,um_nav_roles:[]}}));
|
||||
});
|
||||
|
||||
$('ul#menu-to-edit > li').each(function () {
|
||||
var id = $(this).attr('id').substr(10);
|
||||
$('fieldset.field-move', $(this)).before(template({menuItemID: id,restriction_data:um_menu_restriction_data[id]}));
|
||||
});
|
||||
|
||||
});
|
||||
@@ -339,6 +339,15 @@ if ( ! class_exists( 'Admin_Enqueue' ) ) {
|
||||
|
||||
}
|
||||
|
||||
/***
|
||||
*** @Load jQuery custom code
|
||||
***/
|
||||
function load_nav_manus_scripts() {
|
||||
|
||||
wp_register_script( 'um_admin_nav_manus', $this->js_url . 'um-admin-nav-menu.js', array('jquery','wp-util'), '', true );
|
||||
wp_enqueue_script( 'um_admin_nav_manus' );
|
||||
|
||||
}
|
||||
|
||||
/***
|
||||
*** @Load AJAX
|
||||
|
||||
@@ -1,160 +1,255 @@
|
||||
<?php
|
||||
if ( ! defined( 'ABSPATH' ) ) exit;
|
||||
if (!defined( 'ABSPATH' )) exit;
|
||||
if (!class_exists( 'UM_Menu_Item_Custom_Fields_Editor' )) :
|
||||
|
||||
if ( ! class_exists( 'UM_Menu_Item_Custom_Fields_Editor' ) ) :
|
||||
class UM_Menu_Item_Custom_Fields_Editor {
|
||||
|
||||
class UM_Menu_Item_Custom_Fields_Editor {
|
||||
|
||||
protected static $fields = array();
|
||||
protected static $fields = array();
|
||||
|
||||
|
||||
/**
|
||||
* Initialize plugin
|
||||
*/
|
||||
public static function init() {
|
||||
add_action( 'wp_nav_menu_item_custom_fields', array( __CLASS__, '_fields' ), 1, 4 );
|
||||
add_action( 'wp_update_nav_menu_item', array( __CLASS__, '_save' ), 10, 3 );
|
||||
add_filter( 'manage_nav-menus_columns', array( __CLASS__, '_columns' ), 99 );
|
||||
/**
|
||||
* Initialize plugin
|
||||
*/
|
||||
public static function init() {
|
||||
self::$fields = array(
|
||||
|
||||
self::$fields = array(
|
||||
|
||||
'um_nav_public' => __( 'Display Mode'),
|
||||
'um_nav_roles' => __('By Role')
|
||||
|
||||
);
|
||||
}
|
||||
'um_nav_public' => __( 'Display Mode' ),
|
||||
'um_nav_roles' => __( 'By Role' )
|
||||
|
||||
);
|
||||
|
||||
//add_action( 'wp_nav_menu_item_custom_fields', array( __CLASS__, '_fields' ), 1, 4 );
|
||||
add_action( 'wp_update_nav_menu_item', array( __CLASS__, '_save' ), 10, 3 );
|
||||
add_filter( 'manage_nav-menus_columns', array( __CLASS__, '_columns' ), 99 );
|
||||
|
||||
add_action( 'load-nav-menus.php', array( __CLASS__, 'enqueue_nav_menus_scripts' ) );
|
||||
add_action( 'admin_footer-nav-menus.php', array( __CLASS__, '_wp_template' ) );
|
||||
|
||||
}
|
||||
|
||||
|
||||
public static function _save( $menu_id, $menu_item_db_id, $menu_item_args ) {
|
||||
if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
|
||||
return;
|
||||
}
|
||||
|
||||
foreach ( self::$fields as $_key => $label ) {
|
||||
|
||||
if( $_key == 'um_nav_roles' ){
|
||||
|
||||
$key = sprintf( 'menu-item-%s', $_key );
|
||||
|
||||
// Sanitize
|
||||
if ( ! empty( $_POST[ $key ][ $menu_item_db_id ] ) ) {
|
||||
// Do some checks here...
|
||||
$value = $_POST[ $key ][ $menu_item_db_id ];
|
||||
}
|
||||
else {
|
||||
$value = null;
|
||||
public static function _save( $menu_id, $menu_item_db_id, $menu_item_args ) {
|
||||
if (defined( 'DOING_AJAX' ) && DOING_AJAX) {
|
||||
return;
|
||||
}
|
||||
|
||||
}else{
|
||||
|
||||
$key = sprintf( 'menu-item-%s', $_key );
|
||||
|
||||
// Sanitize
|
||||
if ( ! empty( $_POST[ $key ][ $menu_item_db_id ] ) ) {
|
||||
// Do some checks here...
|
||||
$value = $_POST[ $key ][ $menu_item_db_id ];
|
||||
}
|
||||
else {
|
||||
$value = null;
|
||||
foreach (self::$fields as $_key => $label) {
|
||||
|
||||
if ($_key == 'um_nav_roles') {
|
||||
|
||||
$key = sprintf( 'menu-item-%s', $_key );
|
||||
|
||||
// Sanitize
|
||||
if (!empty( $_POST[$key][$menu_item_db_id] )) {
|
||||
// Do some checks here...
|
||||
$value = $_POST[$key][$menu_item_db_id];
|
||||
} else {
|
||||
$value = null;
|
||||
}
|
||||
|
||||
} else {
|
||||
|
||||
$key = sprintf( 'menu-item-%s', $_key );
|
||||
|
||||
// Sanitize
|
||||
if (!empty( $_POST[$key][$menu_item_db_id] )) {
|
||||
// Do some checks here...
|
||||
$value = $_POST[$key][$menu_item_db_id];
|
||||
} else {
|
||||
$value = null;
|
||||
}
|
||||
}
|
||||
|
||||
// Update
|
||||
if (!is_null( $value )) {
|
||||
update_post_meta( $menu_item_db_id, $key, $value );
|
||||
} else {
|
||||
delete_post_meta( $menu_item_db_id, $key );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Update
|
||||
if ( ! is_null( $value ) ) {
|
||||
update_post_meta( $menu_item_db_id, $key, $value );
|
||||
}
|
||||
else {
|
||||
delete_post_meta( $menu_item_db_id, $key );
|
||||
}
|
||||
}
|
||||
}
|
||||
public static function _fields( $id, $item, $depth, $args ) {
|
||||
?>
|
||||
|
||||
public static function _fields( $id, $item, $depth, $args ) {
|
||||
?>
|
||||
|
||||
<div class="um-nav-edit">
|
||||
|
||||
<div class="clear"></div>
|
||||
<div class="um-nav-edit">
|
||||
|
||||
<h4 style="margin-bottom: 0.6em;"><?php _e( "Ultimate Member Menu Settings", 'ultimate-member' ) ?></h4>
|
||||
<div class="clear"></div>
|
||||
|
||||
<?php foreach ( self::$fields as $_key => $label ) {
|
||||
$key = sprintf('menu-item-%s', $_key);
|
||||
$id = sprintf('edit-%s-%s', $key, $item->ID);
|
||||
$name = sprintf('%s[%s]', $key, $item->ID);
|
||||
$value = get_post_meta($item->ID, $key, true);
|
||||
$role_name = sprintf('%s[%s][]', $key, $item->ID);
|
||||
$class = sprintf('field-%s', $_key); ?>
|
||||
<h4 style="margin-bottom: 0.6em;"><?php _e( "Ultimate Member Menu Settings", 'ultimate-member' ) ?></h4>
|
||||
|
||||
<?php if ( $_key == 'um_nav_public' ) { ?>
|
||||
<?php foreach (self::$fields as $_key => $label) {
|
||||
$key = sprintf( 'menu-item-%s', $_key );
|
||||
$id = sprintf( 'edit-%s-%s', $key, $item->ID );
|
||||
$name = sprintf( '%s[%s]', $key, $item->ID );
|
||||
$value = get_post_meta( $item->ID, $key, true );
|
||||
$role_name = sprintf( '%s[%s][]', $key, $item->ID );
|
||||
$class = sprintf( 'field-%s', $_key ); ?>
|
||||
|
||||
<p class="description description-wide um-nav-mode">
|
||||
<label for="<?php echo $id ?>">
|
||||
<?php _e( "Who can see this menu link?", 'ultimate-member' ); ?><br/>
|
||||
<select id="<?php echo $id ?>" name="<?php echo $name ?>" style="width:100%;">
|
||||
<option value="0" <?php selected(!isset($value) || $value == ''); ?>>
|
||||
<?php _e( 'Everyone', 'ultimate-member' ) ?>
|
||||
</option>
|
||||
<option value="1" <?php selected(1, $value); ?>>
|
||||
<?php _e( 'Logged Out Users', 'ultimate-member' ) ?>
|
||||
</option>
|
||||
<option value="2" <?php selected(2, $value); ?>>
|
||||
<?php _e( 'Logged In Users', 'ultimate-member' ) ?>
|
||||
</option>
|
||||
</select>
|
||||
</label>
|
||||
</p>
|
||||
<?php if ($_key == 'um_nav_public') { ?>
|
||||
|
||||
<?php }
|
||||
<p class="description description-wide um-nav-mode">
|
||||
<label for="<?php echo $id ?>">
|
||||
<?php _e( "Who can see this menu link?", 'ultimate-member' ); ?><br/>
|
||||
<select id="<?php echo $id ?>" name="<?php echo $name ?>" style="width:100%;">
|
||||
<option value="0" <?php selected( !isset( $value ) || $value == '' ); ?>>
|
||||
<?php _e( 'Everyone', 'ultimate-member' ) ?>
|
||||
</option>
|
||||
<option value="1" <?php selected( 1, $value ); ?>>
|
||||
<?php _e( 'Logged Out Users', 'ultimate-member' ) ?>
|
||||
</option>
|
||||
<option value="2" <?php selected( 2, $value ); ?>>
|
||||
<?php _e( 'Logged In Users', 'ultimate-member' ) ?>
|
||||
</option>
|
||||
</select>
|
||||
</label>
|
||||
</p>
|
||||
|
||||
if ( $_key == 'um_nav_roles' ) { ?>
|
||||
<?php }
|
||||
|
||||
<p class="description description-wide um-nav-roles">
|
||||
<?php _e( "Select the member roles that can see this link", 'ultimate-member' ) ?><br />
|
||||
if ($_key == 'um_nav_roles') { ?>
|
||||
|
||||
<?php $options = UM()->roles()->get_roles();
|
||||
$i = 0;
|
||||
$html = '';
|
||||
$columns = 2;
|
||||
while ( $i < $columns ) {
|
||||
$per_page = ceil( count( $options ) / $columns );
|
||||
$section_fields_per_page = array_slice( $options, $i*$per_page, $per_page );
|
||||
$html .= '<span class="um-form-fields-section" style="width:' . floor( 100 / $columns ) . '% !important;">';
|
||||
<p class="description description-wide um-nav-roles">
|
||||
<?php _e( "Select the member roles that can see this link", 'ultimate-member' ) ?><br/>
|
||||
|
||||
foreach ( $section_fields_per_page as $k => $title ) {
|
||||
$id_attr = ' id="' . $id . '_' . $k . '" ';
|
||||
$for_attr = ' for="' . $id . '_' . $k . '" ';
|
||||
$name_attr = ' name="' . $role_name . '" ';
|
||||
<?php $options = UM()->roles()->get_roles();
|
||||
$i = 0;
|
||||
$html = '';
|
||||
$columns = 2;
|
||||
while ($i < $columns) {
|
||||
$per_page = ceil( count( $options ) / $columns );
|
||||
$section_fields_per_page = array_slice( $options, $i * $per_page, $per_page );
|
||||
$html .= '<span class="um-form-fields-section" style="width:' . floor( 100 / $columns ) . '% !important;">';
|
||||
|
||||
$html .= "<label $for_attr>
|
||||
foreach ($section_fields_per_page as $k => $title) {
|
||||
$id_attr = ' id="' . $id . '_' . $k . '" ';
|
||||
$for_attr = ' for="' . $id . '_' . $k . '" ';
|
||||
$name_attr = ' name="' . $role_name . '" ';
|
||||
|
||||
$html .= "<label $for_attr>
|
||||
<input type=\"checkbox\" " . checked( ( is_array( $value ) && in_array( $k, $value ) ) || ( isset( $value ) && $k == $value ), true, false ) . "$id_attr $name_attr value=\"" . $k . "\">
|
||||
<span>$title</span>
|
||||
</label>";
|
||||
}
|
||||
}
|
||||
|
||||
$html .= '</span>';
|
||||
$i++;
|
||||
}
|
||||
$html .= '</span>';
|
||||
$i++;
|
||||
}
|
||||
|
||||
echo $html; ?>
|
||||
</p>
|
||||
<?php }
|
||||
} ?>
|
||||
echo $html; ?>
|
||||
</p>
|
||||
<?php }
|
||||
} ?>
|
||||
|
||||
<div class="clear"></div>
|
||||
|
||||
</div>
|
||||
|
||||
<?php
|
||||
}
|
||||
<div class="clear"></div>
|
||||
|
||||
public static function _columns( $columns ) {
|
||||
$columns = array_merge( $columns, self::$fields );
|
||||
</div>
|
||||
|
||||
return $columns;
|
||||
}
|
||||
}
|
||||
<?php
|
||||
}
|
||||
|
||||
endif;
|
||||
public static function _columns( $columns ) {
|
||||
$columns = array_merge( $columns, self::$fields );
|
||||
|
||||
UM_Menu_Item_Custom_Fields_Editor::init();
|
||||
return $columns;
|
||||
}
|
||||
|
||||
public static function enqueue_nav_menus_scripts() {
|
||||
add_action( 'admin_enqueue_scripts', array( __CLASS__, 'admin_enqueue_scripts' ) );
|
||||
|
||||
|
||||
}
|
||||
|
||||
public static function admin_enqueue_scripts() {
|
||||
UM()->admin_enqueue()->load_nav_manus_scripts();
|
||||
|
||||
$menus = get_posts( 'post_type=nav_menu_item&numberposts=-1' );
|
||||
$menu_restriction_data = array();
|
||||
|
||||
foreach ($menus as $data) {
|
||||
$_nav_roles_meta = get_post_meta( $data->ID, 'menu-item-um_nav_roles', true );
|
||||
$um_nav_roles = array();
|
||||
if ($_nav_roles_meta)
|
||||
foreach ($_nav_roles_meta as $key => $value) {
|
||||
if (is_int( $key )) {
|
||||
$um_nav_roles[] = $value;
|
||||
}
|
||||
}
|
||||
$menu_restriction_data[$data->ID] = array(
|
||||
'um_nav_public' => get_post_meta( $data->ID, 'menu-item-um_nav_public', true ),
|
||||
'um_nav_roles' => $um_nav_roles,
|
||||
);
|
||||
}
|
||||
wp_localize_script( 'um_admin_nav_manus', 'um_menu_restriction_data', $menu_restriction_data );
|
||||
}
|
||||
|
||||
public static function _wp_template() {
|
||||
echo '<script type="text/html" id="tmpl-um-nav-menus-fields">';
|
||||
?>
|
||||
<div class="um-nav-edit">
|
||||
|
||||
<div class="clear"></div>
|
||||
|
||||
<h4 style="margin-bottom: 0.6em;"><?php _e( "Ultimate Member Menu Settings", 'ultimate-member' ) ?></h4>
|
||||
|
||||
<p class="description description-wide um-nav-mode">
|
||||
<label for="edit-menu-item-um_nav_public-{{data.menuItemID}}">
|
||||
<?php _e( "Who can see this menu link?", 'ultimate-member' ); ?><br/>
|
||||
<select id="edit-menu-item-um_nav_public-{{data.menuItemID}}"
|
||||
name="menu-item-um_nav_public[{{data.menuItemID}}]" style="width:100%;">
|
||||
<option value="0"
|
||||
<# if(data.restriction_data.um_nav_public == '0'){ #>selected="selected"<# } #>>
|
||||
<?php _e( 'Everyone', 'ultimate-member' ) ?>
|
||||
</option>
|
||||
<option value="1"
|
||||
<# if(data.restriction_data.um_nav_public == '1'){ #>selected="selected"<# } #>>
|
||||
<?php _e( 'Logged Out Users', 'ultimate-member' ) ?>
|
||||
</option>
|
||||
<option value="2"
|
||||
<# if(data.restriction_data.um_nav_public == '2'){ #>selected="selected"<# } #>>
|
||||
<?php _e( 'Logged In Users', 'ultimate-member' ) ?>
|
||||
</option>
|
||||
</select>
|
||||
</label>
|
||||
</p>
|
||||
<p class="description description-wide um-nav-roles" <# if(data.restriction_data.um_nav_public == '2'){ #>style="display: block;"<# } #>>
|
||||
<?php _e( "Select the member roles that can see this link", 'ultimate-member' ) ?><br/>
|
||||
|
||||
<?php $options = UM()->roles()->get_roles();
|
||||
$i = 0;
|
||||
$html = '';
|
||||
$columns = 2;
|
||||
while ($i < $columns) {
|
||||
$per_page = ceil( count( $options ) / $columns );
|
||||
$section_fields_per_page = array_slice( $options, $i * $per_page, $per_page );
|
||||
$html .= '<span class="um-form-fields-section" style="width:' . floor( 100 / $columns ) . '% !important;">';
|
||||
|
||||
foreach ($section_fields_per_page as $k => $title) {
|
||||
$id_attr = ' id="edit-menu-item-um_nav_roles-{{data.menuItemID}}_' . $k . '" ';
|
||||
$for_attr = ' for="edit-menu-item-um_nav_roles-{{data.menuItemID}}_' . $k . '" ';
|
||||
$html .= "<label $for_attr>
|
||||
<input type='checkbox' {$id_attr} name='menu-item-um_nav_roles[{{data.menuItemID}}][]' value='{$k}' <# if(_.contains(data.restriction_data.um_nav_roles,'{$k}')){ #>checked='checked'<# } #> />
|
||||
<span>{$title}</span>
|
||||
</label>";
|
||||
}
|
||||
|
||||
$html .= '</span>';
|
||||
$i++;
|
||||
}
|
||||
|
||||
echo $html; ?>
|
||||
</p>
|
||||
|
||||
|
||||
<div class="clear"></div>
|
||||
|
||||
</div>
|
||||
<?php
|
||||
echo '</script>';
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
endif;
|
||||
|
||||
UM_Menu_Item_Custom_Fields_Editor::init();
|
||||
@@ -8,7 +8,7 @@ class UM_Menu_Item_Custom_Fields {
|
||||
*
|
||||
*/
|
||||
public static function load() {
|
||||
add_filter( 'wp_edit_nav_menu_walker', array( __CLASS__, '_filter_walker' ), 999 );
|
||||
//add_filter( 'wp_edit_nav_menu_walker', array( __CLASS__, '_filter_walker' ), 999 );
|
||||
}
|
||||
|
||||
|
||||
@@ -51,7 +51,7 @@ class UM_Menu_Item_Custom_Fields {
|
||||
return $um_walker;
|
||||
}
|
||||
}
|
||||
add_action( 'wp_loaded', array( 'UM_Menu_Item_Custom_Fields', 'load' ), 9 );
|
||||
//add_action( 'wp_loaded', array( 'UM_Menu_Item_Custom_Fields', 'load' ), 9 );
|
||||
|
||||
endif;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user