first commit
This commit is contained in:
161
wp-content/themes/calla/includes/eltdf-body-class-functions.php
Normal file
161
wp-content/themes/calla/includes/eltdf-body-class-functions.php
Normal file
@@ -0,0 +1,161 @@
|
||||
<?php
|
||||
|
||||
if ( ! function_exists( 'calla_elated_theme_version_class' ) ) {
|
||||
/**
|
||||
* Function that adds classes on body for version of theme
|
||||
*/
|
||||
function calla_elated_theme_version_class( $classes ) {
|
||||
$current_theme = wp_get_theme();
|
||||
|
||||
//is child theme activated?
|
||||
if ( $current_theme->parent() ) {
|
||||
//add child theme version
|
||||
$classes[] = strtolower( $current_theme->get( 'Name' ) ) . '-child-ver-' . $current_theme->get( 'Version' );
|
||||
|
||||
//get parent theme
|
||||
$current_theme = $current_theme->parent();
|
||||
}
|
||||
|
||||
if ( $current_theme->exists() && $current_theme->get( 'Version' ) != '' ) {
|
||||
$classes[] = strtolower( $current_theme->get( 'Name' ) ) . '-ver-' . $current_theme->get( 'Version' );
|
||||
}
|
||||
|
||||
return $classes;
|
||||
}
|
||||
|
||||
add_filter( 'body_class', 'calla_elated_theme_version_class' );
|
||||
}
|
||||
|
||||
if ( ! function_exists( 'calla_elated_boxed_class' ) ) {
|
||||
/**
|
||||
* Function that adds classes on body for boxed layout
|
||||
*/
|
||||
function calla_elated_boxed_class( $classes ) {
|
||||
$allow_boxed_layout = true;
|
||||
$allow_boxed_layout = apply_filters( 'calla_elated_allow_content_boxed_layout', $allow_boxed_layout );
|
||||
|
||||
if ( $allow_boxed_layout && calla_elated_get_meta_field_intersect( 'boxed' ) === 'yes' ) {
|
||||
$classes[] = 'eltdf-boxed';
|
||||
}
|
||||
|
||||
return $classes;
|
||||
}
|
||||
|
||||
add_filter( 'body_class', 'calla_elated_boxed_class' );
|
||||
}
|
||||
|
||||
if ( ! function_exists( 'calla_elated_paspartu_class' ) ) {
|
||||
/**
|
||||
* Function that adds classes on body for paspartu layout
|
||||
*/
|
||||
function calla_elated_paspartu_class( $classes ) {
|
||||
$id = calla_elated_get_page_id();
|
||||
|
||||
//is paspartu layout turned on?
|
||||
if ( calla_elated_get_meta_field_intersect( 'paspartu', $id ) === 'yes' ) {
|
||||
$classes[] = 'eltdf-paspartu-enabled';
|
||||
|
||||
if ( calla_elated_get_meta_field_intersect( 'disable_top_paspartu', $id ) === 'yes' ) {
|
||||
$classes[] = 'eltdf-top-paspartu-disabled';
|
||||
}
|
||||
|
||||
if ( calla_elated_get_meta_field_intersect( 'enable_fixed_paspartu', $id ) === 'yes' ) {
|
||||
$classes[] = 'eltdf-fixed-paspartu-enabled';
|
||||
}
|
||||
}
|
||||
|
||||
return $classes;
|
||||
}
|
||||
|
||||
add_filter( 'body_class', 'calla_elated_paspartu_class' );
|
||||
}
|
||||
|
||||
if ( ! function_exists( 'calla_elated_page_smooth_scroll_class' ) ) {
|
||||
/**
|
||||
* Function that adds classes on body for page smooth scroll
|
||||
*/
|
||||
function calla_elated_page_smooth_scroll_class( $classes ) {
|
||||
//is smooth scroll enabled enabled?
|
||||
if ( calla_elated_options()->getOptionValue( 'page_smooth_scroll' ) == 'yes' ) {
|
||||
$classes[] = 'eltdf-smooth-scroll';
|
||||
}
|
||||
|
||||
return $classes;
|
||||
}
|
||||
|
||||
add_filter( 'body_class', 'calla_elated_page_smooth_scroll_class' );
|
||||
}
|
||||
|
||||
if ( ! function_exists( 'calla_elated_smooth_page_transitions_class' ) ) {
|
||||
/**
|
||||
* Function that adds classes on body for smooth page transitions
|
||||
*/
|
||||
function calla_elated_smooth_page_transitions_class( $classes ) {
|
||||
$id = calla_elated_get_page_id();
|
||||
|
||||
if ( calla_elated_get_meta_field_intersect( 'smooth_page_transitions', $id ) == 'yes' ) {
|
||||
$classes[] = 'eltdf-smooth-page-transitions';
|
||||
|
||||
if ( calla_elated_get_meta_field_intersect( 'page_transition_preloader', $id ) == 'yes' ) {
|
||||
$classes[] = 'eltdf-smooth-page-transitions-preloader';
|
||||
}
|
||||
|
||||
if ( calla_elated_get_meta_field_intersect( 'page_transition_fadeout', $id ) == 'yes' ) {
|
||||
$classes[] = 'eltdf-smooth-page-transitions-fadeout';
|
||||
}
|
||||
}
|
||||
|
||||
return $classes;
|
||||
}
|
||||
|
||||
add_filter( 'body_class', 'calla_elated_smooth_page_transitions_class' );
|
||||
}
|
||||
|
||||
if ( ! function_exists( 'calla_elated_content_initial_width_body_class' ) ) {
|
||||
/**
|
||||
* Function that adds transparent content class to body.
|
||||
*
|
||||
* @param $classes array of body classes
|
||||
*
|
||||
* @return array with transparent content body class added
|
||||
*/
|
||||
function calla_elated_content_initial_width_body_class( $classes ) {
|
||||
$initial_content_width = calla_elated_get_meta_field_intersect( 'initial_content_width', calla_elated_get_page_id() );
|
||||
|
||||
if ( ! empty( $initial_content_width ) ) {
|
||||
$classes[] = $initial_content_width;
|
||||
}
|
||||
|
||||
return $classes;
|
||||
}
|
||||
|
||||
add_filter( 'body_class', 'calla_elated_content_initial_width_body_class' );
|
||||
}
|
||||
|
||||
if ( ! function_exists( 'calla_elated_set_content_behind_header_class' ) ) {
|
||||
function calla_elated_set_content_behind_header_class( $classes ) {
|
||||
$id = calla_elated_get_page_id();
|
||||
|
||||
if ( get_post_meta( $id, 'eltdf_page_content_behind_header_meta', true ) === 'yes' ) {
|
||||
$classes[] = 'eltdf-content-is-behind-header';
|
||||
}
|
||||
|
||||
return $classes;
|
||||
}
|
||||
|
||||
add_filter( 'body_class', 'calla_elated_set_content_behind_header_class' );
|
||||
}
|
||||
|
||||
if ( ! function_exists( 'calla_elated_set_no_google_api_class' ) ) {
|
||||
function calla_elated_set_no_google_api_class( $classes ) {
|
||||
$google_map_api = calla_elated_options()->getOptionValue( 'google_maps_api_key' );
|
||||
|
||||
if ( empty( $google_map_api ) ) {
|
||||
$classes[] = 'eltdf-empty-google-api';
|
||||
}
|
||||
|
||||
return $classes;
|
||||
}
|
||||
|
||||
add_filter( 'body_class', 'calla_elated_set_no_google_api_class' );
|
||||
}
|
||||
306
wp-content/themes/calla/includes/eltdf-loading-spinners.php
Normal file
306
wp-content/themes/calla/includes/eltdf-loading-spinners.php
Normal file
@@ -0,0 +1,306 @@
|
||||
<?php
|
||||
|
||||
if(!function_exists('calla_elated_loading_spinners')) {
|
||||
function calla_elated_loading_spinners() {
|
||||
$id = calla_elated_get_page_id();
|
||||
$spinner_type = calla_elated_get_meta_field_intersect('smooth_pt_spinner_type',$id);
|
||||
|
||||
$spinner_html = '';
|
||||
if(!empty($spinner_type)){
|
||||
switch ($spinner_type) {
|
||||
case "calla":
|
||||
$spinner_html = calla_elated_loading_spinner_overlapping_diamonds();
|
||||
break;
|
||||
case 'rotate_circles':
|
||||
$spinner_html = calla_elated_loading_spinner_rotate_circles();
|
||||
break;
|
||||
case 'pulse':
|
||||
$spinner_html = calla_elated_loading_spinner_pulse();
|
||||
break;
|
||||
case 'double_pulse':
|
||||
$spinner_html = calla_elated_loading_spinner_double_pulse();
|
||||
break;
|
||||
case 'cube':
|
||||
$spinner_html = calla_elated_loading_spinner_cube();
|
||||
break;
|
||||
case 'rotating_cubes':
|
||||
$spinner_html = calla_elated_loading_spinner_rotating_cubes();
|
||||
break;
|
||||
case 'stripes':
|
||||
$spinner_html = calla_elated_loading_spinner_stripes();
|
||||
break;
|
||||
case 'wave':
|
||||
$spinner_html = calla_elated_loading_spinner_wave();
|
||||
break;
|
||||
case 'two_rotating_circles':
|
||||
$spinner_html = calla_elated_loading_spinner_two_rotating_circles();
|
||||
break;
|
||||
case 'five_rotating_circles':
|
||||
$spinner_html = calla_elated_loading_spinner_five_rotating_circles();
|
||||
break;
|
||||
case 'atom':
|
||||
$spinner_html = calla_elated_loading_spinner_atom();
|
||||
break;
|
||||
case 'clock':
|
||||
$spinner_html = calla_elated_loading_spinner_clock();
|
||||
break;
|
||||
case 'mitosis':
|
||||
$spinner_html = calla_elated_loading_spinner_mitosis();
|
||||
break;
|
||||
case 'lines':
|
||||
$spinner_html = calla_elated_loading_spinner_lines();
|
||||
break;
|
||||
case 'fussion':
|
||||
$spinner_html = calla_elated_loading_spinner_fussion();
|
||||
break;
|
||||
case 'wave_circles':
|
||||
$spinner_html = calla_elated_loading_spinner_wave_circles();
|
||||
break;
|
||||
case 'pulse_circles':
|
||||
$spinner_html = calla_elated_loading_spinner_pulse_circles();
|
||||
break;
|
||||
default:
|
||||
$spinner_html = calla_elated_loading_spinner_pulse();
|
||||
}
|
||||
}
|
||||
|
||||
echo wp_kses($spinner_html, array(
|
||||
'div' => array(
|
||||
'class' => true,
|
||||
'style' => true,
|
||||
'id' => true
|
||||
)
|
||||
));
|
||||
}
|
||||
}
|
||||
|
||||
if ( ! function_exists( 'calla_elated_loading_spinner_overlapping_diamonds' ) ) {
|
||||
function calla_elated_loading_spinner_overlapping_diamonds() {
|
||||
$html = '';
|
||||
$html .= '<div class="overlapping-diamonds">';
|
||||
$html .= '<div class="overlapping-diamonds-part overlapping-diamonds-first"></div>';
|
||||
$html .= '<div class="overlapping-diamonds-part overlapping-diamonds-second"></div>';
|
||||
$html .= '</div>';
|
||||
|
||||
return $html;
|
||||
}
|
||||
}
|
||||
|
||||
if(!function_exists('calla_elated_loading_spinner_rotate_circles')) {
|
||||
function calla_elated_loading_spinner_rotate_circles() {
|
||||
$html = '';
|
||||
$html .= '<div class="eltdf-rotate-circles">';
|
||||
$html .= '<div></div>';
|
||||
$html .= '<div></div>';
|
||||
$html .= '<div></div>';
|
||||
$html .= '</div>';
|
||||
|
||||
return $html;
|
||||
}
|
||||
}
|
||||
|
||||
if(!function_exists('calla_elated_loading_spinner_pulse')) {
|
||||
function calla_elated_loading_spinner_pulse() {
|
||||
$html = '<div class="pulse"></div>';
|
||||
|
||||
return $html;
|
||||
}
|
||||
}
|
||||
|
||||
if(!function_exists('calla_elated_loading_spinner_double_pulse')) {
|
||||
function calla_elated_loading_spinner_double_pulse() {
|
||||
$html = '';
|
||||
$html .= '<div class="double_pulse">';
|
||||
$html .= '<div class="double-bounce1"></div>';
|
||||
$html .= '<div class="double-bounce2"></div>';
|
||||
$html .= '</div>';
|
||||
|
||||
return $html;
|
||||
}
|
||||
}
|
||||
|
||||
if(!function_exists('calla_elated_loading_spinner_cube')) {
|
||||
function calla_elated_loading_spinner_cube() {
|
||||
$html = '<div class="cube"></div>';
|
||||
|
||||
return $html;
|
||||
}
|
||||
}
|
||||
|
||||
if(!function_exists('calla_elated_loading_spinner_rotating_cubes')) {
|
||||
function calla_elated_loading_spinner_rotating_cubes() {
|
||||
$html = '';
|
||||
$html .= '<div class="rotating_cubes">';
|
||||
$html .= '<div class="cube1"></div>';
|
||||
$html .= '<div class="cube2"></div>';
|
||||
$html .= '</div>';
|
||||
|
||||
return $html;
|
||||
}
|
||||
}
|
||||
|
||||
if(!function_exists('calla_elated_loading_spinner_stripes')) {
|
||||
function calla_elated_loading_spinner_stripes() {
|
||||
$html = '';
|
||||
$html .= '<div class="stripes">';
|
||||
$html .= '<div class="rect1"></div>';
|
||||
$html .= '<div class="rect2"></div>';
|
||||
$html .= '<div class="rect3"></div>';
|
||||
$html .= '<div class="rect4"></div>';
|
||||
$html .= '<div class="rect5"></div>';
|
||||
$html .= '</div>';
|
||||
|
||||
return $html;
|
||||
}
|
||||
}
|
||||
|
||||
if(!function_exists('calla_elated_loading_spinner_wave')) {
|
||||
function calla_elated_loading_spinner_wave() {
|
||||
$html = '';
|
||||
$html .= '<div class="wave">';
|
||||
$html .= '<div class="bounce1"></div>';
|
||||
$html .= '<div class="bounce2"></div>';
|
||||
$html .= '<div class="bounce3"></div>';
|
||||
$html .= '</div>';
|
||||
|
||||
return $html;
|
||||
}
|
||||
}
|
||||
|
||||
if(!function_exists('calla_elated_loading_spinner_two_rotating_circles')) {
|
||||
function calla_elated_loading_spinner_two_rotating_circles() {
|
||||
$html = '';
|
||||
$html .= '<div class="two_rotating_circles">';
|
||||
$html .= '<div class="dot1"></div>';
|
||||
$html .= '<div class="dot2"></div>';
|
||||
$html .= '</div>';
|
||||
|
||||
return $html;
|
||||
}
|
||||
}
|
||||
|
||||
if(!function_exists('calla_elated_loading_spinner_five_rotating_circles')) {
|
||||
function calla_elated_loading_spinner_five_rotating_circles() {
|
||||
$html = '';
|
||||
$html .= '<div class="five_rotating_circles">';
|
||||
$html .= '<div class="spinner-container container1">';
|
||||
$html .= '<div class="circle1"></div>';
|
||||
$html .= '<div class="circle2"></div>';
|
||||
$html .= '<div class="circle3"></div>';
|
||||
$html .= '<div class="circle4"></div>';
|
||||
$html .= '</div>';
|
||||
$html .= '<div class="spinner-container container2">';
|
||||
$html .= '<div class="circle1"></div>';
|
||||
$html .= '<div class="circle2"></div>';
|
||||
$html .= '<div class="circle3"></div>';
|
||||
$html .= '<div class="circle4"></div>';
|
||||
$html .= '</div>';
|
||||
$html .= '<div class="spinner-container container3">';
|
||||
$html .= '<div class="circle1"></div>';
|
||||
$html .= '<div class="circle2"></div>';
|
||||
$html .= '<div class="circle3"></div>';
|
||||
$html .= '<div class="circle4"></div>';
|
||||
$html .= '</div>';
|
||||
$html .= '</div>';
|
||||
|
||||
return $html;
|
||||
}
|
||||
}
|
||||
|
||||
if(!function_exists('calla_elated_loading_spinner_atom')) {
|
||||
function calla_elated_loading_spinner_atom(){
|
||||
$html = '';
|
||||
$html .= '<div class="atom">';
|
||||
$html .= '<div class="ball ball-1"></div>';
|
||||
$html .= '<div class="ball ball-2"></div>';
|
||||
$html .= '<div class="ball ball-3"></div>';
|
||||
$html .= '<div class="ball ball-4"></div>';
|
||||
$html .= '</div>';
|
||||
|
||||
return $html;
|
||||
}
|
||||
}
|
||||
|
||||
if(!function_exists('calla_elated_loading_spinner_clock')) {
|
||||
function calla_elated_loading_spinner_clock(){
|
||||
$html = '';
|
||||
$html .= '<div class="clock">';
|
||||
$html .= '<div class="ball ball-1"></div>';
|
||||
$html .= '<div class="ball ball-2"></div>';
|
||||
$html .= '<div class="ball ball-3"></div>';
|
||||
$html .= '<div class="ball ball-4"></div>';
|
||||
$html .= '</div>';
|
||||
|
||||
return $html;
|
||||
}
|
||||
}
|
||||
|
||||
if(!function_exists('calla_elated_loading_spinner_mitosis')) {
|
||||
function calla_elated_loading_spinner_mitosis(){
|
||||
$html = '';
|
||||
$html .= '<div class="mitosis">';
|
||||
$html .= '<div class="ball ball-1"></div>';
|
||||
$html .= '<div class="ball ball-2"></div>';
|
||||
$html .= '<div class="ball ball-3"></div>';
|
||||
$html .= '<div class="ball ball-4"></div>';
|
||||
$html .= '</div>';
|
||||
|
||||
return $html;
|
||||
}
|
||||
}
|
||||
|
||||
if(!function_exists('calla_elated_loading_spinner_lines')) {
|
||||
function calla_elated_loading_spinner_lines(){
|
||||
$html = '';
|
||||
$html .= '<div class="lines">';
|
||||
$html .= '<div class="line1"></div>';
|
||||
$html .= '<div class="line2"></div>';
|
||||
$html .= '<div class="line3"></div>';
|
||||
$html .= '<div class="line4"></div>';
|
||||
$html .= '</div>';
|
||||
|
||||
return $html;
|
||||
}
|
||||
}
|
||||
|
||||
if(!function_exists('calla_elated_loading_spinner_fussion')) {
|
||||
function calla_elated_loading_spinner_fussion(){
|
||||
$html = '';
|
||||
$html .= '<div class="fussion">';
|
||||
$html .= '<div class="ball ball-1"></div>';
|
||||
$html .= '<div class="ball ball-2"></div>';
|
||||
$html .= '<div class="ball ball-3"></div>';
|
||||
$html .= '<div class="ball ball-4"></div>';
|
||||
$html .= '</div>';
|
||||
|
||||
return $html;
|
||||
}
|
||||
}
|
||||
|
||||
if(!function_exists('calla_elated_loading_spinner_wave_circles')) {
|
||||
function calla_elated_loading_spinner_wave_circles(){
|
||||
$html = '';
|
||||
$html .= '<div class="wave_circles">';
|
||||
$html .= '<div class="ball ball-1"></div>';
|
||||
$html .= '<div class="ball ball-2"></div>';
|
||||
$html .= '<div class="ball ball-3"></div>';
|
||||
$html .= '<div class="ball ball-4"></div>';
|
||||
$html .= '</div>';
|
||||
|
||||
return $html;
|
||||
}
|
||||
}
|
||||
|
||||
if(!function_exists('calla_elated_loading_spinner_pulse_circles')) {
|
||||
function calla_elated_loading_spinner_pulse_circles(){
|
||||
$html = '';
|
||||
$html .= '<div class="pulse_circles">';
|
||||
$html .= '<div class="ball ball-1"></div>';
|
||||
$html .= '<div class="ball ball-2"></div>';
|
||||
$html .= '<div class="ball ball-3"></div>';
|
||||
$html .= '<div class="ball ball-4"></div>';
|
||||
$html .= '</div>';
|
||||
|
||||
return $html;
|
||||
}
|
||||
}
|
||||
320
wp-content/themes/calla/includes/nav-menu/edit_custom_walker.php
Normal file
320
wp-content/themes/calla/includes/nav-menu/edit_custom_walker.php
Normal file
@@ -0,0 +1,320 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* /!\ This is a copy of Walker_Nav_Menu_Edit class in core
|
||||
*
|
||||
* Create HTML list of nav menu input items.
|
||||
*
|
||||
* @package WordPress
|
||||
* @since 3.0.0
|
||||
* @uses Walker_Nav_Menu
|
||||
*/
|
||||
class CallaElated_Walker_Nav_Menu_Edit_Custom extends Walker_Nav_Menu {
|
||||
/**
|
||||
* @see Walker_Nav_Menu::start_lvl()
|
||||
* @since 3.0.0
|
||||
*
|
||||
* @param string $output Passed by reference.
|
||||
*/
|
||||
function start_lvl( &$output, $depth = 0, $args = array() ) { }
|
||||
|
||||
/**
|
||||
* @see Walker_Nav_Menu::end_lvl()
|
||||
* @since 3.0.0
|
||||
*
|
||||
* @param string $output Passed by reference.
|
||||
*/
|
||||
function end_lvl( &$output, $depth = 0, $args = array() ) { }
|
||||
|
||||
/**
|
||||
* Start the element output.
|
||||
*
|
||||
* @see Walker_Nav_Menu::start_el()
|
||||
* @since 3.0.0
|
||||
*
|
||||
* @global int $_wp_nav_menu_max_depth
|
||||
*
|
||||
* @param string $output Used to append additional content (passed by reference).
|
||||
* @param object $item Menu item data object.
|
||||
* @param int $depth Depth of menu item. Used for padding.
|
||||
* @param array $args Not used.
|
||||
* @param int $id Not used.
|
||||
*/
|
||||
public function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {
|
||||
global $_wp_nav_menu_max_depth;
|
||||
$_wp_nav_menu_max_depth = $depth > $_wp_nav_menu_max_depth ? $depth : $_wp_nav_menu_max_depth;
|
||||
|
||||
ob_start();
|
||||
$item_id = esc_attr( $item->ID );
|
||||
$removed_args = array(
|
||||
'action',
|
||||
'customlink-tab',
|
||||
'edit-menu-item',
|
||||
'menu-item',
|
||||
'page-tab',
|
||||
'_wpnonce',
|
||||
);
|
||||
|
||||
$original_title = false;
|
||||
if ( 'taxonomy' == $item->type ) {
|
||||
$original_title = get_term_field( 'name', $item->object_id, $item->object, 'raw' );
|
||||
if ( is_wp_error( $original_title ) ) {
|
||||
$original_title = false;
|
||||
}
|
||||
} elseif ( 'post_type' == $item->type ) {
|
||||
$original_object = get_post( $item->object_id );
|
||||
$original_title = get_the_title( $original_object->ID );
|
||||
} elseif ( 'post_type_archive' == $item->type ) {
|
||||
$original_object = get_post_type_object( $item->object );
|
||||
if ( $original_object ) {
|
||||
$original_title = $original_object->labels->archives;
|
||||
}
|
||||
}
|
||||
|
||||
$classes = array(
|
||||
'menu-item menu-item-depth-' . $depth,
|
||||
'menu-item-' . esc_attr( $item->object ),
|
||||
'menu-item-edit-' . ( ( isset( $_GET['edit-menu-item'] ) && $item_id == $_GET['edit-menu-item'] ) ? 'active' : 'inactive' ),
|
||||
);
|
||||
|
||||
$title = $item->title;
|
||||
|
||||
if ( ! empty( $item->_invalid ) ) {
|
||||
$classes[] = 'menu-item-invalid';
|
||||
/* translators: %s: title of menu item which is invalid */
|
||||
$title = sprintf( esc_html__( '%s (Invalid)', 'calla' ), $item->title );
|
||||
} elseif ( isset( $item->post_status ) && 'draft' == $item->post_status ) {
|
||||
$classes[] = 'pending';
|
||||
/* translators: %s: title of menu item in draft status */
|
||||
$title = sprintf( esc_html__( '%s (Pending)', 'calla' ), $item->title );
|
||||
}
|
||||
|
||||
$title = ( ! isset( $item->label ) || '' == $item->label ) ? $title : $item->label;
|
||||
|
||||
$submenu_text = 0 == $depth ? 'style=display:none;' : '';
|
||||
?>
|
||||
<li id="menu-item-<?php echo esc_attr($item_id); ?>" class="<?php echo implode(' ', $classes ); ?>">
|
||||
<div class="menu-item-bar">
|
||||
<div class="menu-item-handle">
|
||||
<span class="item-title">
|
||||
<span class="menu-item-title"><?php echo esc_html( $title ); ?></span>
|
||||
<span class="is-submenu" <?php echo esc_attr($submenu_text); ?>><?php esc_html_e( 'sub item', 'calla' ); ?></span>
|
||||
</span>
|
||||
<span class="item-controls">
|
||||
<span class="item-type"><?php echo esc_html( $item->type_label ); ?></span>
|
||||
<span class="item-order hide-if-js">
|
||||
<a href="<?php echo esc_url(wp_nonce_url( add_query_arg( array( 'action' => 'move-up-menu-item', 'menu-item' => $item_id, ), remove_query_arg($removed_args, admin_url( 'nav-menus.php' ) ) ), 'move-menu_item' )); ?>" class="item-move-up" aria-label="<?php esc_attr_e( 'Move up', 'calla' ) ?>">↑</a>
|
||||
|
|
||||
<a href="<?php echo esc_url(wp_nonce_url( add_query_arg( array( 'action' => 'move-down-menu-item', 'menu-item' => $item_id, ), remove_query_arg($removed_args, admin_url( 'nav-menus.php' ) ) ), 'move-menu_item' )); ?>" class="item-move-down" aria-label="<?php esc_attr_e( 'Move down', 'calla' ) ?>">↓</a>
|
||||
</span>
|
||||
<a class="item-edit" id="edit-<?php echo esc_attr($item_id); ?>" href="<?php echo ( isset( $_GET['edit-menu-item'] ) && $item_id == $_GET['edit-menu-item'] ) ? admin_url( 'nav-menus.php' ) : add_query_arg( 'edit-menu-item', $item_id, remove_query_arg( $removed_args, admin_url( 'nav-menus.php#menu-item-settings-' . $item_id ) ) );
|
||||
?>" aria-label="<?php esc_attr_e( 'Edit menu item', 'calla' ); ?>"><span class="screen-reader-text"><?php esc_html_e( 'Edit', 'calla' ); ?></span></a>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="menu-item-settings wp-clearfix" id="menu-item-settings-<?php echo esc_attr( $item_id ); ?>">
|
||||
<?php if ( 'custom' == $item->type ) : ?>
|
||||
<p class="field-url description description-wide">
|
||||
<label for="edit-menu-item-url-<?php echo esc_attr( $item_id ); ?>">
|
||||
<?php esc_html_e( 'URL', 'calla' ); ?><br />
|
||||
<input type="text" id="edit-menu-item-url-<?php echo esc_attr( $item_id ); ?>" class="widefat code edit-menu-item-url" name="menu-item-url[<?php echo esc_attr( $item_id ); ?>]" value="<?php echo esc_attr( $item->url ); ?>" />
|
||||
</label>
|
||||
</p>
|
||||
<?php endif; ?>
|
||||
<p class="description description-wide">
|
||||
<label for="edit-menu-item-title-<?php echo esc_attr( $item_id ); ?>">
|
||||
<?php esc_html_e( 'Navigation Label', 'calla' ); ?><br />
|
||||
<input type="text" id="edit-menu-item-title-<?php echo esc_attr( $item_id ); ?>" class="widefat edit-menu-item-title" name="menu-item-title[<?php echo esc_attr( $item_id ); ?>]" value="<?php echo esc_attr( $item->title ); ?>" />
|
||||
</label>
|
||||
</p>
|
||||
<p class="field-title-attribute field-attr-title description description-wide">
|
||||
<label for="edit-menu-item-attr-title-<?php echo esc_attr( $item_id ); ?>">
|
||||
<?php esc_html_e( 'Title Attribute', 'calla' ); ?><br />
|
||||
<input type="text" id="edit-menu-item-attr-title-<?php echo esc_attr( $item_id ); ?>" class="widefat edit-menu-item-attr-title" name="menu-item-attr-title[<?php echo esc_attr( $item_id ); ?>]" value="<?php echo esc_attr( $item->post_excerpt ); ?>" />
|
||||
</label>
|
||||
</p>
|
||||
<p class="field-link-target description">
|
||||
<label for="edit-menu-item-target-<?php echo esc_attr( $item_id ); ?>">
|
||||
<input type="checkbox" id="edit-menu-item-target-<?php echo esc_attr( $item_id ); ?>" value="_blank" name="menu-item-target[<?php echo esc_attr( $item_id ); ?>]"<?php checked( $item->target, '_blank' ); ?> />
|
||||
<?php esc_html_e( 'Open link in a new tab', 'calla' ); ?>
|
||||
</label>
|
||||
</p>
|
||||
<p class="field-css-classes description description-thin">
|
||||
<label for="edit-menu-item-classes-<?php echo esc_attr( $item_id ); ?>">
|
||||
<?php esc_html_e( 'CSS Classes (optional)', 'calla' ); ?><br />
|
||||
<input type="text" id="edit-menu-item-classes-<?php echo esc_attr( $item_id ); ?>" class="widefat code edit-menu-item-classes" name="menu-item-classes[<?php echo esc_attr( $item_id ); ?>]" value="<?php echo esc_attr( implode(' ', $item->classes ) ); ?>" />
|
||||
</label>
|
||||
</p>
|
||||
<p class="field-xfn description description-thin">
|
||||
<label for="edit-menu-item-xfn-<?php echo esc_attr( $item_id ); ?>">
|
||||
<?php esc_html_e( 'Link Relationship (XFN)', 'calla' ); ?><br />
|
||||
<input type="text" id="edit-menu-item-xfn-<?php echo esc_attr( $item_id ); ?>" class="widefat code edit-menu-item-xfn" name="menu-item-xfn[<?php echo esc_attr( $item_id ); ?>]" value="<?php echo esc_attr( $item->xfn ); ?>" />
|
||||
</label>
|
||||
</p>
|
||||
<p class="field-description description description-wide">
|
||||
<label for="edit-menu-item-description-<?php echo esc_attr( $item_id ); ?>">
|
||||
<?php esc_html_e( 'Description', 'calla' ); ?><br />
|
||||
<textarea id="edit-menu-item-description-<?php echo esc_attr( $item_id ); ?>" class="widefat edit-menu-item-description" rows="3" cols="20" name="menu-item-description[<?php echo esc_attr( $item_id ); ?>]"><?php echo esc_html( $item->description ); // textarea_escaped ?></textarea>
|
||||
<span class="description"><?php esc_html_e('The description will be displayed in the menu if the current theme supports it.', 'calla'); ?></span>
|
||||
</label>
|
||||
</p>
|
||||
|
||||
<?php
|
||||
/* New fields insertion starts here */
|
||||
?>
|
||||
<p class="field-custom description description-thin description-thin-custom">
|
||||
<label for="edit-menu-item-anchor-<?php echo esc_attr($item_id); ?>">
|
||||
<?php esc_html_e( 'Anchor', 'calla' ); ?><br />
|
||||
<input type="text" id="edit-menu-item-anchor-<?php echo esc_attr($item_id); ?>" class="widefat code edit-menu-item-anchor" data-item-option data-name="menu_item_anchor_<?php echo esc_attr($item_id); ?>" value="<?php echo esc_attr( $item->anchor ); ?>" />
|
||||
</label>
|
||||
</p>
|
||||
<p class="field-custom description description-wide">
|
||||
<?php
|
||||
$value = $item->nolink;
|
||||
if($value != "") $value = "checked";
|
||||
?>
|
||||
<label for="edit-menu-item-nolink-<?php echo esc_attr($item_id); ?>">
|
||||
<input type="checkbox" id="edit-menu-item-nolink-<?php echo esc_attr($item_id); ?>" class="code edit-menu-item-custom" data-item-option data-name="menu_item_nolink_<?php echo esc_attr($item_id); ?>" value="nolink" <?php echo esc_attr($value); ?> />
|
||||
<?php esc_html_e( "Don't link", 'calla' ); ?>
|
||||
</label>
|
||||
</p>
|
||||
<p class="field-custom description description-wide">
|
||||
<?php
|
||||
$value = $item->hide;
|
||||
if($value != "") $value = "checked";
|
||||
?>
|
||||
<label for="edit-menu-item-hide-<?php echo esc_attr($item_id); ?>">
|
||||
<input type="checkbox" id="edit-menu-item-hide-<?php echo esc_attr($item_id); ?>" class="code edit-menu-item-custom" data-item-option data-name="menu_item_hide_<?php echo esc_attr($item_id); ?>" value="hide" <?php echo esc_attr($value); ?> />
|
||||
<?php esc_html_e( "Don't show", 'calla' ); ?>
|
||||
</label>
|
||||
</p>
|
||||
|
||||
<?php if ( $depth == 0 ) { ?>
|
||||
<p class="field-custom description description-thin description-thin-custom">
|
||||
<label for="edit-menu-item-type-menu-<?php echo esc_attr( $item_id ); ?>">
|
||||
<?php esc_html_e( 'Type', 'calla' ); ?><br/>
|
||||
<select class="widefat" id="edit-menu-item-type-menu<?php echo esc_attr( $item_id ); ?>" data-item-option data-name="menu_item_type_menu_<?php echo esc_attr( $item_id ); ?>">
|
||||
<option value="" <?php if ( $item->type_menu == "" ) { echo 'selected="selected"'; } ?>></option>
|
||||
<option value="wide" <?php if ( $item->type_menu == "wide" ) { echo 'selected="selected"'; } ?>><?php esc_html_e( 'Wide', 'calla' ); ?></option>
|
||||
</select>
|
||||
</label>
|
||||
</p>
|
||||
<p class="field-custom description description-thin description-thin-custom">
|
||||
<label for="edit-menu-item-wide-position-<?php echo esc_attr( $item_id ); ?>">
|
||||
<?php esc_html_e( 'Wide menu position', 'calla' ); ?><br/>
|
||||
<select class="widefat" id="edit-menu-item-wide-position<?php echo esc_attr( $item_id ); ?>" data-item-option data-name="menu_item_wide_position_<?php echo esc_attr( $item_id ); ?>">
|
||||
<option value="" <?php if ( $item->wide_position == "" ) { echo 'selected="selected"'; } ?>></option>
|
||||
<option value="left" <?php if ( $item->wide_position == "left" ) { echo 'selected="selected"'; } ?>><?php esc_html_e( 'Left', 'calla' ); ?></option>
|
||||
<option value="right" <?php if ( $item->wide_position == "right" ) { echo 'selected="selected"'; } ?>><?php esc_html_e( 'Right', 'calla' ); ?></option>
|
||||
</select>
|
||||
</label>
|
||||
</p>
|
||||
<?php } ?>
|
||||
|
||||
<?php
|
||||
$iconCollections = calla_elated_icon_collections()->getIconCollectionsEmpty();
|
||||
|
||||
if ( is_array( $iconCollections ) && count( $iconCollections ) ) { ?>
|
||||
<p class="field-custom description description-thin description-thin-custom">
|
||||
<label for="edit-menu-item-icon-pack-<?php echo esc_attr($item_id); ?>">
|
||||
<?php esc_html_e( 'Icon Pack', 'calla' ); ?><br />
|
||||
<select class="widefat" id="edit-menu-item-icon-pack-<?php echo esc_attr($item_id); ?>" data-item-option data-item-id="<?php echo esc_attr($item_id); ?>" data-icon-pack data-name="menu_item_icon_pack_<?php echo esc_attr($item_id); ?>">
|
||||
<?php foreach ($iconCollections as $collectionKey => $collectionTitle) { ?>
|
||||
<option value="<?php echo esc_attr($collectionKey); ?>" <?php if($item->icon_pack == $collectionKey){echo 'selected="selected"';} ?>><?php echo esc_html($collectionTitle); ?></option>
|
||||
<?php } ?>
|
||||
</select>
|
||||
<br/><?php esc_html_e( 'Only with "default" & "wide with icons" menu types', 'calla' ); ?>
|
||||
</label>
|
||||
</p>
|
||||
|
||||
<?php
|
||||
$icon_data_attr = 'menu_item_icon_'.$item_id;
|
||||
$collection_obj = calla_elated_icon_collections()->getIconCollection($item->icon_pack);
|
||||
?>
|
||||
<p class="field-custom description description-thin description-thin-custom eltdf-icon-select-holder">
|
||||
<label for="edit-menu-item-icon-<?php echo esc_attr($item_id); ?>">
|
||||
<?php esc_html_e( 'Icon', 'calla' ); ?><br />
|
||||
<select class="widefat" id="edit-menu-item-icon<?php echo esc_attr($item_id); ?>" data-item-option data-name="<?php echo esc_attr($icon_data_attr); ?>">
|
||||
<?php
|
||||
if($collection_obj) { ?>
|
||||
<?php
|
||||
$icons_array = $collection_obj->getIconsArray();
|
||||
foreach ($icons_array as $key => $value) { ?>
|
||||
<option value="<?php echo esc_attr($key); ?>" <?php if($item->icon == $key){echo 'selected="selected"';} ?>><?php echo esc_html($key); ?></option>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
<?php } ?>
|
||||
</select>
|
||||
</label>
|
||||
</p>
|
||||
|
||||
<?php } ?>
|
||||
<p class="field-custom description description-thin description-thin-custom" style="clear:both;">
|
||||
<label for="edit-menu-item-featured-icon-<?php echo esc_attr($item_id); ?>">
|
||||
<?php esc_html_e( 'Featured Icon', 'calla' ); ?><br />
|
||||
<select class="widefat" id="edit-menu-item-featured-icon<?php echo esc_attr($item_id); ?>" data-item-option data-name="menu_item_featured_icon_<?php echo esc_attr($item_id); ?>">
|
||||
<option value="" <?php if($item->featured_icon == ""){echo 'selected="selected"';} ?>></option>
|
||||
<option value="fa-star" <?php if($item->featured_icon == "fa-star"){echo 'selected="selected"';} ?>><?php esc_html_e('Star', 'calla'); ?></option>
|
||||
<option value="fa-paw" <?php if($item->featured_icon == "fa-paw"){echo 'selected="selected"';} ?>><?php esc_html_e('Paw', 'calla'); ?></option>
|
||||
<option value="fa-heart " <?php if($item->featured_icon == "fa-heart "){echo 'selected="selected"';} ?>><?php esc_html_e('Heart', 'calla'); ?></option>
|
||||
<option value="fa-thumbs-up " <?php if($item->featured_icon == "fa-thumbs-up "){echo 'selected="selected"';} ?>><?php esc_html_e('Thumbs Up', 'calla'); ?></option>
|
||||
</select>
|
||||
</label>
|
||||
</p>
|
||||
<p class="field-custom description description-thin description-thin-custom">
|
||||
</p>
|
||||
<p class="field-custom description description-wide">
|
||||
<label for="edit-menu-item-sidebar-<?php echo esc_attr($item_id); ?>">
|
||||
<?php esc_html_e( 'Custom widget area', 'calla' ); ?><br />
|
||||
<select class="widefat" id="edit-menu-item-sidebar<?php echo esc_attr($item_id); ?>" data-item-option data-name="menu_item_sidebar_<?php echo esc_attr($item_id); ?>">
|
||||
<option value="" <?php if($item->sidebar == ""){echo 'selected="selected"';} ?>></option>
|
||||
<?php
|
||||
$calla_custom_sidebars = calla_elated_get_custom_sidebars();
|
||||
foreach ($calla_custom_sidebars as $sidebar_key => $sidebar) { ?>
|
||||
<option value="<?php echo esc_attr($sidebar_key); ?>" <?php if ($item->sidebar == $sidebar_key) { ?> selected="selected" <?php } ?>>
|
||||
<?php echo esc_html(ucwords( $sidebar )); ?>
|
||||
</option>
|
||||
<?php } ?>
|
||||
</select>
|
||||
<br/><?php esc_html_e( 'Only with "wide & wide with icons" menu type', 'calla' ); ?>
|
||||
</label>
|
||||
</p>
|
||||
<?php
|
||||
/* New fields insertion ends here */
|
||||
?>
|
||||
|
||||
<fieldset class="field-move hide-if-no-js description description-wide">
|
||||
<span class="field-move-visual-label" aria-hidden="true"><?php esc_html_e( 'Move', 'calla' ); ?></span>
|
||||
<button type="button" class="button-link menus-move menus-move-up" data-dir="up"><?php esc_html_e( 'Up one', 'calla' ); ?></button>
|
||||
<button type="button" class="button-link menus-move menus-move-down" data-dir="down"><?php esc_html_e( 'Down one', 'calla' ); ?></button>
|
||||
<button type="button" class="button-link menus-move menus-move-left" data-dir="left"></button>
|
||||
<button type="button" class="button-link menus-move menus-move-right" data-dir="right"></button>
|
||||
<button type="button" class="button-link menus-move menus-move-top" data-dir="top"><?php esc_html_e( 'To the top', 'calla' ); ?></button>
|
||||
</fieldset>
|
||||
|
||||
<div class="menu-item-actions description-wide submitbox">
|
||||
<?php if ( 'custom' != $item->type && $original_title !== false ) : ?>
|
||||
<p class="link-to-original">
|
||||
<?php printf( esc_html__('Original: %s', 'calla'), '<a href="' . esc_url( $item->url ) . '">' . esc_html( $original_title ) . '</a>' ); ?>
|
||||
</p>
|
||||
<?php endif; ?>
|
||||
<a class="item-delete submitdelete deletion" id="delete-<?php echo esc_attr( $item_id ); ?>" href="<?php echo wp_nonce_url( add_query_arg( array( 'action' => 'delete-menu-item', 'menu-item' => $item_id, ), admin_url( 'nav-menus.php' ) ), 'delete-menu_item_' . $item_id ); ?>"><?php esc_html_e( 'Remove', 'calla' ); ?></a>
|
||||
<span class="meta-sep hide-if-no-js"> | </span>
|
||||
<a class="item-cancel submitcancel hide-if-no-js" id="cancel-<?php echo esc_attr( $item_id ); ?>" href="<?php echo esc_url( add_query_arg( array( 'edit-menu-item' => $item_id, 'cancel' => time() ), admin_url( 'nav-menus.php' ) ) ); ?>#menu-item-settings-<?php echo esc_attr( $item_id ); ?>"><?php esc_html_e('Cancel', 'calla'); ?></a>
|
||||
</div>
|
||||
|
||||
<input class="menu-item-data-db-id" type="hidden" name="menu-item-db-id[<?php echo esc_attr( $item_id ); ?>]" value="<?php echo esc_attr( $item_id ); ?>" />
|
||||
<input class="menu-item-data-object-id" type="hidden" name="menu-item-object-id[<?php echo esc_attr( $item_id ); ?>]" value="<?php echo esc_attr( $item->object_id ); ?>" />
|
||||
<input class="menu-item-data-object" type="hidden" name="menu-item-object[<?php echo esc_attr( $item_id ); ?>]" value="<?php echo esc_attr( $item->object ); ?>" />
|
||||
<input class="menu-item-data-parent-id" type="hidden" name="menu-item-parent-id[<?php echo esc_attr( $item_id ); ?>]" value="<?php echo esc_attr( $item->menu_item_parent ); ?>" />
|
||||
<input class="menu-item-data-position" type="hidden" name="menu-item-position[<?php echo esc_attr( $item_id ); ?>]" value="<?php echo esc_attr( $item->menu_order ); ?>" />
|
||||
<input class="menu-item-data-type" type="hidden" name="menu-item-type[<?php echo esc_attr( $item_id ); ?>]" value="<?php echo esc_attr( $item->type ); ?>" />
|
||||
</div><!-- .menu-item-settings-->
|
||||
<ul class="menu-item-transport"></ul>
|
||||
<?php
|
||||
|
||||
$output .= ob_get_clean();
|
||||
}
|
||||
}
|
||||
90
wp-content/themes/calla/includes/nav-menu/eltdf-menu.php
Normal file
90
wp-content/themes/calla/includes/nav-menu/eltdf-menu.php
Normal file
@@ -0,0 +1,90 @@
|
||||
<?php
|
||||
|
||||
if ( ! function_exists( 'calla_elated_add_custom_nav_fields' ) ) {
|
||||
function calla_elated_add_custom_nav_fields( $menu_item ) {
|
||||
$menu_item->anchor = get_post_meta( $menu_item->ID, '_menu_item_anchor', true );
|
||||
$menu_item->nolink = get_post_meta( $menu_item->ID, '_menu_item_nolink', true );
|
||||
$menu_item->hide = get_post_meta( $menu_item->ID, '_menu_item_hide', true );
|
||||
$menu_item->type_menu = get_post_meta( $menu_item->ID, '_menu_item_type_menu', true );
|
||||
$menu_item->icon = get_post_meta( $menu_item->ID, '_menu_item_icon', true );
|
||||
$menu_item->icon_pack = get_post_meta( $menu_item->ID, '_menu_item_icon_pack', true );
|
||||
$menu_item->sidebar = get_post_meta( $menu_item->ID, '_menu_item_sidebar', true );
|
||||
$menu_item->wide_position = get_post_meta( $menu_item->ID, '_menu_item_wide_position', true );
|
||||
$menu_item->featured_icon = get_post_meta( $menu_item->ID, '_menu_item_featured_icon', true );
|
||||
|
||||
return $menu_item;
|
||||
}
|
||||
|
||||
// add custom menu fields to menu
|
||||
add_filter( 'wp_setup_nav_menu_item', 'calla_elated_add_custom_nav_fields' );
|
||||
}
|
||||
|
||||
/**
|
||||
* Save menu custom fields
|
||||
*
|
||||
* @access public
|
||||
* @since 1.0
|
||||
* @return void
|
||||
*/
|
||||
if ( ! function_exists( 'calla_elated_update_custom_nav_fields' ) ) {
|
||||
function calla_elated_update_custom_nav_fields( $menu_id, $menu_item_db_id, $args ) {
|
||||
$check = array(
|
||||
'anchor',
|
||||
'nolink',
|
||||
'hide',
|
||||
'type_menu',
|
||||
'icon',
|
||||
'icon_pack',
|
||||
'sidebar',
|
||||
'wide_position',
|
||||
'featured_icon'
|
||||
);
|
||||
|
||||
if ( isset( $_POST['eltd_menu_options'] ) ) {
|
||||
parse_str( urldecode( $_POST['eltd_menu_options'] ), $parse_array );
|
||||
|
||||
foreach ( $check as $key ) {
|
||||
if ( ! isset( $parse_array[ 'menu_item_' . $key . '_' . $menu_item_db_id ] ) ) {
|
||||
$parse_array[ 'menu_item_' . $key . '_' . $menu_item_db_id ] = "";
|
||||
}
|
||||
|
||||
$value = $parse_array[ 'menu_item_' . $key . '_' . $menu_item_db_id ];
|
||||
update_post_meta( $menu_item_db_id, '_menu_item_' . $key, $value );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// save menu custom fields
|
||||
add_action( 'wp_update_nav_menu_item', 'calla_elated_update_custom_nav_fields', 10, 3 );
|
||||
}
|
||||
|
||||
/**
|
||||
* Define new Walker edit
|
||||
*
|
||||
* @access public
|
||||
* @since 1.0
|
||||
* @return void
|
||||
*/
|
||||
if ( ! function_exists( 'calla_elated_edit_walker' ) ) {
|
||||
function calla_elated_edit_walker( $walker, $menu_id ) {
|
||||
return 'CallaElated_Walker_Nav_Menu_Edit_Custom';
|
||||
}
|
||||
|
||||
// edit menu walker
|
||||
add_filter( 'wp_edit_nav_menu_walker', 'calla_elated_edit_walker', 10, 2 );
|
||||
}
|
||||
|
||||
if ( ! function_exists( 'calla_elated_include_custom_walkers' ) ) {
|
||||
function calla_elated_include_custom_walkers() {
|
||||
include_once ELATED_ROOT_DIR . '/includes/nav-menu/edit_custom_walker.php';
|
||||
|
||||
/**
|
||||
* Include custom walkers
|
||||
*/
|
||||
include_once ELATED_ROOT_DIR . '/includes/nav-menu/top-navigation-walker.php';
|
||||
|
||||
do_action( 'calla_elated_include_custom_walkers_nav' );
|
||||
}
|
||||
|
||||
add_action( 'after_setup_theme', 'calla_elated_include_custom_walkers' );
|
||||
}
|
||||
@@ -0,0 +1,171 @@
|
||||
<?php
|
||||
|
||||
if (!class_exists('CallaElatedTopNavigationWalker')) {
|
||||
class CallaElatedTopNavigationWalker extends Walker_Nav_Menu {
|
||||
|
||||
// add classes to ul sub-menus
|
||||
function display_element( $element, &$children_elements, $max_depth, $depth, $args, &$output ){
|
||||
$id_field = $this->db_fields['id'];
|
||||
if ( is_object( $args[0] ) ) {
|
||||
$args[0]->has_children = ! empty( $children_elements[$element->$id_field] );
|
||||
}
|
||||
return parent::display_element( $element, $children_elements, $max_depth, $depth, $args, $output );
|
||||
}
|
||||
|
||||
function start_lvl( &$output, $depth = 0, $args = array() ) {
|
||||
|
||||
$indent = str_repeat("\t", $depth);
|
||||
if($depth == 0){
|
||||
$out_div = '<div class="second"><div class="inner">';
|
||||
}else{
|
||||
$out_div = '';
|
||||
}
|
||||
|
||||
// build html
|
||||
$output .= "\n" . $indent . $out_div .'<ul>' . "\n";
|
||||
}
|
||||
function end_lvl( &$output, $depth = 0, $args = array() ) {
|
||||
$indent = str_repeat("\t", $depth);
|
||||
|
||||
if($depth == 0){
|
||||
$out_div_close = '</div></div>';
|
||||
}else{
|
||||
$out_div_close = '';
|
||||
}
|
||||
|
||||
$output .= "$indent</ul>". $out_div_close ."\n";
|
||||
}
|
||||
|
||||
// add main/sub classes to li's and links
|
||||
function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {
|
||||
|
||||
$sub = "";
|
||||
$indent = ( $depth > 0 ? str_repeat( "\t", $depth ) : '' ); // code indent
|
||||
if($depth==0 && $args->has_children) :
|
||||
$sub = ' has_sub';
|
||||
endif;
|
||||
if( ( $depth==1 or $depth == 2 ) && $args->has_children) :
|
||||
$sub = 'sub';
|
||||
endif;
|
||||
|
||||
// passed classes
|
||||
$classes = empty( $item->classes ) ? array() : (array) $item->classes;
|
||||
|
||||
$class_names = esc_attr( implode( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item ) ) );
|
||||
|
||||
//menu type class
|
||||
$menu_type = "";
|
||||
if($depth==0){
|
||||
if($item->type_menu == "wide"){
|
||||
$menu_type = " wide";
|
||||
} else {
|
||||
$menu_type = " narrow";
|
||||
}
|
||||
}
|
||||
|
||||
//wide menu position class
|
||||
$wide_menu_position = "";
|
||||
if($depth==0){
|
||||
if($item->wide_position == "right"){
|
||||
$wide_menu_position = " right_position";
|
||||
}elseif($item->wide_position == "left"){
|
||||
$wide_menu_position = " left_position";
|
||||
}else{
|
||||
$wide_menu_position = "";
|
||||
}
|
||||
}
|
||||
|
||||
$anchor = '';
|
||||
if($item->anchor != ""){
|
||||
$anchor = '#'.esc_attr($item->anchor);
|
||||
$class_names .= ' anchor-item';
|
||||
}
|
||||
|
||||
$active = "";
|
||||
// depth dependent classes
|
||||
if ($item->anchor == "" && (($item->current && $depth == 0) || ($item->current_item_ancestor && $depth == 0))):
|
||||
$active = 'eltdf-active-item';
|
||||
endif;
|
||||
|
||||
// build html
|
||||
$output .= $indent . '<li id="nav-menu-item-'. $item->ID . '" class="' . $class_names . ' '. $active . $sub . $menu_type . $wide_menu_position .'">';
|
||||
|
||||
$current_a = "";
|
||||
// link attributes
|
||||
$attributes = ! empty( $item->attr_title ) ? ' title="' . esc_attr( $item->attr_title ) .'"' : '';
|
||||
$attributes .= ! empty( $item->target ) ? ' target="' . esc_attr( $item->target ) .'"' : '';
|
||||
$attributes .= ! empty( $item->xfn ) ? ' rel="' . esc_attr( $item->xfn ) .'"' : '';
|
||||
$attributes .= ' href="' . esc_url( $item->url ) .$anchor.'"';
|
||||
if (($item->current && $depth == 0) || ($item->current_item_ancestor && $depth == 0) ):
|
||||
$current_a .= ' current ';
|
||||
endif;
|
||||
|
||||
$no_link_class = '';
|
||||
if($item->nolink != '') {
|
||||
$no_link_class = ' no_link';
|
||||
}
|
||||
|
||||
$attributes .= ' class="'.$current_a.$no_link_class.'"';
|
||||
$item_output = $args->before;
|
||||
if($item->hide == ""){
|
||||
if($item->nolink == ""){
|
||||
$item_output .= '<a'. $attributes .'><span class="item_outer">';
|
||||
} else{
|
||||
$item_output .= '<a'. $attributes .' onclick="JavaScript: return false;"><span class="item_outer">';
|
||||
}
|
||||
|
||||
$icon = '';
|
||||
if($item->icon !== "" && $item->icon !== 'null') {
|
||||
$icon = $item->icon;
|
||||
}
|
||||
|
||||
$icon_pack = 'font_awesome';
|
||||
|
||||
if(empty($this->icon_pack)) {
|
||||
$item->icon_pack = $icon_pack;
|
||||
}
|
||||
|
||||
if($icon !== '') {
|
||||
if($item->icon_pack == 'font_awesome') {
|
||||
$icon .= ' fa';
|
||||
}
|
||||
|
||||
$item_output .= '<span class="menu_icon_wrapper"><i class="menu_icon '.$icon.'"></i></span>';
|
||||
}
|
||||
|
||||
$item_output .= '<span class="item_text">';
|
||||
$item_output .= apply_filters('the_title', $item->title, $item->ID);
|
||||
|
||||
$featured_icon = '';
|
||||
if($item->featured_icon !== ""){
|
||||
$featured_icon .= '<i class="eltdf-menu-featured-icon fa '.$item->featured_icon .'"></i>';
|
||||
}
|
||||
|
||||
$item_output .= $featured_icon;
|
||||
|
||||
$item_output .= '</span>'; //close span.item_text
|
||||
|
||||
//append arrow for dropdown
|
||||
|
||||
if($args->has_children && $depth == 0) {
|
||||
$item_output .= '<i class="eltdf-menu-arrow fa fa-angle-down"></i>';
|
||||
}
|
||||
|
||||
$item_output .= '</span></a>';
|
||||
}
|
||||
|
||||
if($item->sidebar != "" && $depth > 0){
|
||||
ob_start();
|
||||
dynamic_sidebar($item->sidebar);
|
||||
$sidebar_content = ob_get_contents();
|
||||
ob_end_clean();
|
||||
$item_output .= $sidebar_content;
|
||||
}
|
||||
|
||||
$item_output .= $args->after;
|
||||
|
||||
// build html
|
||||
$output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
wp-content/themes/calla/includes/plugins/calla-core.zip
Normal file
BIN
wp-content/themes/calla/includes/plugins/calla-core.zip
Normal file
Binary file not shown.
Binary file not shown.
BIN
wp-content/themes/calla/includes/plugins/calla-twitter-feed.zip
Normal file
BIN
wp-content/themes/calla/includes/plugins/calla-twitter-feed.zip
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load Diff
BIN
wp-content/themes/calla/includes/plugins/js_composer.zip
Normal file
BIN
wp-content/themes/calla/includes/plugins/js_composer.zip
Normal file
Binary file not shown.
107
wp-content/themes/calla/includes/plugins/plugins-activation.php
Normal file
107
wp-content/themes/calla/includes/plugins/plugins-activation.php
Normal file
@@ -0,0 +1,107 @@
|
||||
<?php
|
||||
|
||||
if(!function_exists('calla_elated_register_required_plugins')) {
|
||||
/**
|
||||
* Registers theme required and optional plugins. Hooks to tgmpa_register hook
|
||||
*/
|
||||
function calla_elated_register_required_plugins() {
|
||||
$plugins = array(
|
||||
array(
|
||||
'name' => esc_html__('WPBakery Visual Composer', 'calla'),
|
||||
'slug' => 'js_composer',
|
||||
'source' => get_template_directory().'/includes/plugins/js_composer.zip',
|
||||
'version' => '6.6.0',
|
||||
'required' => true,
|
||||
'force_activation' => false,
|
||||
'force_deactivation' => false
|
||||
),
|
||||
array(
|
||||
'name' => esc_html__('Revolution Slider', 'calla'),
|
||||
'slug' => 'revslider',
|
||||
'source' => get_template_directory().'/includes/plugins/revslider.zip',
|
||||
'version' => '6.4.11',
|
||||
'required' => true,
|
||||
'force_activation' => false,
|
||||
'force_deactivation' => false
|
||||
),
|
||||
array(
|
||||
'name' => esc_html__('Calla Core', 'calla'),
|
||||
'slug' => 'calla-core',
|
||||
'source' => get_template_directory().'/includes/plugins/calla-core.zip',
|
||||
'version' => '1.3',
|
||||
'required' => true,
|
||||
'force_activation' => false,
|
||||
'force_deactivation' => false
|
||||
),
|
||||
array(
|
||||
'name' => esc_html__('Calla Instagram Feed', 'calla'),
|
||||
'slug' => 'calla-instagram-feed',
|
||||
'source' => get_template_directory().'/includes/plugins/calla-instagram-feed.zip',
|
||||
'version' => '2.0.1',
|
||||
'required' => true,
|
||||
'force_activation' => false,
|
||||
'force_deactivation' => false
|
||||
),
|
||||
array(
|
||||
'name' => esc_html__('Calla Twitter Feed', 'calla'),
|
||||
'slug' => 'calla-twitter-feed',
|
||||
'source' => get_template_directory().'/includes/plugins/calla-twitter-feed.zip',
|
||||
'version' => '1.0.2',
|
||||
'required' => true,
|
||||
'force_activation' => false,
|
||||
'force_deactivation' => false
|
||||
),
|
||||
array(
|
||||
'name' => esc_html__( 'WooCommerce Plugin', 'calla' ),
|
||||
'slug' => 'woocommerce',
|
||||
'required' => false
|
||||
),
|
||||
array(
|
||||
'name' => esc_html__( 'Contact Form 7', 'calla' ),
|
||||
'slug' => 'contact-form-7',
|
||||
'required' => false
|
||||
),
|
||||
array(
|
||||
'name' => esc_html__( 'Envato Market', 'calla' ),
|
||||
'slug' => 'envato-market',
|
||||
'source' => 'https://envato.github.io/wp-envato-market/dist/envato-market.zip',
|
||||
'required' => false
|
||||
)
|
||||
);
|
||||
|
||||
$config = array(
|
||||
'domain' => 'calla',
|
||||
'default_path' => '',
|
||||
'parent_slug' => 'themes.php',
|
||||
'capability' => 'edit_theme_options',
|
||||
'menu' => 'install-required-plugins',
|
||||
'has_notices' => true,
|
||||
'is_automatic' => false,
|
||||
'message' => '',
|
||||
'strings' => array(
|
||||
'page_title' => esc_html__('Install Required Plugins', 'calla'),
|
||||
'menu_title' => esc_html__('Install Plugins', 'calla'),
|
||||
'installing' => esc_html__('Installing Plugin: %s', 'calla'),
|
||||
'oops' => esc_html__('Something went wrong with the plugin API.', 'calla'),
|
||||
'notice_can_install_required' => _n_noop('This theme requires the following plugin: %1$s.', 'This theme requires the following plugins: %1$s.', 'calla'),
|
||||
'notice_can_install_recommended' => _n_noop('This theme recommends the following plugin: %1$s.', 'This theme recommends the following plugins: %1$s.', 'calla'),
|
||||
'notice_cannot_install' => _n_noop('Sorry, but you do not have the correct permissions to install the %s plugin. Contact the administrator of this site for help on getting the plugin installed.', 'Sorry, but you do not have the correct permissions to install the %s plugins. Contact the administrator of this site for help on getting the plugins installed.', 'calla'),
|
||||
'notice_can_activate_required' => _n_noop('The following required plugin is currently inactive: %1$s.', 'The following required plugins are currently inactive: %1$s.', 'calla'),
|
||||
'notice_can_activate_recommended' => _n_noop('The following recommended plugin is currently inactive: %1$s.', 'The following recommended plugins are currently inactive: %1$s.', 'calla'),
|
||||
'notice_cannot_activate' => _n_noop('Sorry, but you do not have the correct permissions to activate the %s plugin. Contact the administrator of this site for help on getting the plugin activated.', 'Sorry, but you do not have the correct permissions to activate the %s plugins. Contact the administrator of this site for help on getting the plugins activated.', 'calla'),
|
||||
'notice_ask_to_update' => _n_noop('The following plugin needs to be updated to its latest version to ensure maximum compatibility with this theme: %1$s.', 'The following plugins need to be updated to their latest version to ensure maximum compatibility with this theme: %1$s.', 'calla'),
|
||||
'notice_cannot_update' => _n_noop('Sorry, but you do not have the correct permissions to update the %s plugin. Contact the administrator of this site for help on getting the plugin updated.', 'Sorry, but you do not have the correct permissions to update the %s plugins. Contact the administrator of this site for help on getting the plugins updated.', 'calla'),
|
||||
'install_link' => _n_noop('Begin installing plugin', 'Begin installing plugins', 'calla'),
|
||||
'activate_link' => _n_noop('Activate installed plugin', 'Activate installed plugins', 'calla'),
|
||||
'return' => esc_html__('Return to Required Plugins Installer', 'calla'),
|
||||
'plugin_activated' => esc_html__('Plugin activated successfully.', 'calla'),
|
||||
'complete' => esc_html__('All plugins installed and activated successfully. %s', 'calla'),
|
||||
'nag_type' => 'updated'
|
||||
)
|
||||
);
|
||||
|
||||
tgmpa($plugins, $config);
|
||||
}
|
||||
|
||||
add_action('tgmpa_register', 'calla_elated_register_required_plugins');
|
||||
}
|
||||
BIN
wp-content/themes/calla/includes/plugins/revslider.zip
Normal file
BIN
wp-content/themes/calla/includes/plugins/revslider.zip
Normal file
Binary file not shown.
Reference in New Issue
Block a user