Current File : /home/escuelai/public_html/wp-content/plugins/coursector-elementor/megamenu.php |
<?php
require(COURSECTOR_ELEMENTOR_PATH.'menu-item-custom-fields/menu-item-custom-fields.php');
/**
* Sample menu item metadata
*
* This class demonstrate the usage of Menu Item Custom Fields in plugins/themes.
*
* @since 0.1.0
*/
class Coursector_Menu_Item_Custom_Fields {
/**
* Holds our custom fields
*
* @var array
* @access protected
* @since Menu_Item_Custom_Fields_Example 0.2.0
*/
protected static $fields = array();
/**
* Initialize plugin
*/
public static function init() {
add_action( 'wp_nav_menu_item_custom_fields', array( __CLASS__, '_fields' ), 10, 4 );
add_action( 'wp_update_nav_menu_item', array( __CLASS__, '_save' ), 10, 3 );
add_filter( 'manage_nav-menus_columns', array( __CLASS__, '_columns' ), 99 );
self::$fields = array(
'megamenu' => __( 'Elementor Mega Menu (optional)', 'coursector-elementor' ),
);
}
/**
* Save custom field value
*
* @wp_hook action wp_update_nav_menu_item
*
* @param int $menu_id Nav menu ID
* @param int $menu_item_db_id Menu item ID
* @param array $menu_item_args Menu item data
*/
public static function _save( $menu_id, $menu_item_db_id, $menu_item_args ) {
if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
return;
}
check_admin_referer( 'update-nav_menu', 'update-nav-menu-nonce' );
foreach ( self::$fields as $_key => $label ) {
$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 );
}
}
}
/**
* Print field
*
* @param object $item Menu item data object.
* @param int $depth Depth of menu item. Used for padding.
* @param array $args Menu item args.
* @param int $id Nav menu ID.
*
* @return string Form fields
*/
public static function _fields( $id, $item, $depth, $args ) {
//Get all footer posts
$args = array(
'post_type' => 'megamenu',
'post_status' => array( 'publish' ),
'numberposts' => -1,
'orderby' => 'title',
'order' => 'ASC',
'suppress_filters' => false
);
$footers = get_posts($args);
$tg_footers_select = array();
$tg_footers_select[''] = '';
if(!empty($footers))
{
foreach ($footers as $footer)
{
$tg_footers_select[$footer->ID] = $footer->post_title;
}
}
else
{
$tg_footers_select[''] = __( 'No mega menu found. Please create one first', 'coursector-elementor' );
}
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 );
$class = sprintf( 'field-%s', $_key );
?>
<p class="description description-wide <?php echo esc_attr( $class ) ?>">
<label for="<?php echo esc_attr($id); ?>">
<?php echo esc_html($label); ?>
<select id="<?php echo esc_attr($id); ?>" name="<?php echo esc_attr($name); ?>">
<?php
foreach ($tg_footers_select as $footer_id => $footer)
{
?>
<option value="<?php echo esc_attr($footer_id); ?>" <?php if($footer_id == $value) { ?>selected<?php } ?>><?php echo esc_html($footer); ?></option>
<?php
}
?>
</select>
<label>
<?php
/*printf(
'<label for="%1$s">%2$s<br /><input type="text" id="%1$s" class="widefat %1$s" name="%3$s" value="%4$s" /></label>',
esc_attr( $id ),
esc_html( $label ),
esc_attr( $name ),
esc_attr( $value )
)*/ ?>
</p>
<?php
endforeach;
}
/**
* Add our fields to the screen options toggle
*
* @param array $columns Menu item columns
* @return array
*/
public static function _columns( $columns ) {
$columns = array_merge( $columns, self::$fields );
return $columns;
}
}
Coursector_Menu_Item_Custom_Fields::init();