OwlCyberSecurity - MANAGER
Edit File: eltdf.optionsapi.php
<?php if ( ! function_exists( 'musea_elated_set_options_map_position' ) ) { function musea_elated_set_options_map_position( $map ) { $position = 10; switch ( $map ) { case 'general': $position = 1; break; case 'logo': $position = 2; break; case 'fonts': $position = 3; break; case 'header': $position = 4; break; case 'mobile-header': $position = 5; break; case 'title': $position = 6; break; case 'page': $position = 7; break; case 'sidebar': $position = 8; break; case 'footer': $position = 9; break; case 'blog': $position = 10; break; case 'portfolio': $position = 11; break; case 'proofing-gallery': $position = 11; break; case 'stock-photography': $position = 11; break; case 'sidearea': $position = 12; break; case 'search': $position = 13; break; case 'skewed-section': $position = 13; break; case 'subscribe-popup': $position = 17; break; case 'social': $position = 18; break; case '404': $position = 19; break; case 'contact_form_7': $position = 20; break; case 'woocommerce': $position = 21; break; case 'reset': $position = 100; break; } return apply_filters( 'musea_elated_filter_options_map_position', $position, $map ); } } if ( ! function_exists( 'musea_elated_add_admin_page' ) ) { /** * Generates admin page object and adds it to options * $attributes array can container: * $slug - slug of the page with which it will be registered in admin, and which will be appended to admin URL * $title - title of the page * $icon - icon that will be added to admin page in options navigation * * @param $attributes * * @return bool|MuseaElatedClassAdminPage */ function musea_elated_add_admin_page( $attributes ) { $slug = ''; $title = ''; $icon = ''; extract( $attributes ); if ( isset( $slug ) && ! empty( $title ) ) { $admin_page = new MuseaElatedClassAdminPage( $slug, $title, $icon ); musea_elated_framework()->eltdOptions->addAdminPage( $slug, $admin_page ); return $admin_page; } return false; } } if ( ! function_exists( 'musea_elated_add_admin_panel' ) ) { /** * Generates panel object from given parameters * $attributes can container: * $title - title of panel * $name - name of panel with which it will be registered in admin page * $page - slug of that page to which to add panel * * @param $attributes * * @return bool|MuseaElatedClassPanel */ function musea_elated_add_admin_panel( $attributes ) { $title = ''; $name = ''; $dependency = array(); $args = array(); $page = ''; extract( $attributes ); if ( isset( $page ) && ! empty( $title ) && ! empty( $name ) && musea_elated_framework()->eltdOptions->adminPageExists( $page ) ) { $admin_page = musea_elated_framework()->eltdOptions->getAdminPage( $page ); if ( is_object( $admin_page ) ) { $panel = new MuseaElatedClassPanel( $title, $name, $args, $dependency); $admin_page->addChild( $name, $panel ); return $panel; } } return false; } } if ( ! function_exists( 'musea_elated_add_admin_container' ) ) { /** * Generates container object * $attributes can contain: * $name - name of the container with which it will be added to parent element * $parent - parent object to which to add container * * @param $attributes * * @return bool|MuseaElatedClassContainer */ function musea_elated_add_admin_container( $attributes ) { $name = ''; $parent = ''; $dependency = array(); extract( $attributes ); if ( ! empty( $name ) && is_object( $parent ) ) { $container = new MuseaElatedClassContainer( $name, $dependency ); $parent->addChild( $name, $container ); return $container; } return false; } } if ( ! function_exists( 'musea_elated_add_admin_twitter_button' ) ) { /** * Generates twitter button field * * @param $attributes * * @return bool|MuseaElatedClassTwitterFramework */ function musea_elated_add_admin_twitter_button( $attributes ) { $name = ''; $parent = ''; extract( $attributes ); if ( ! empty( $parent ) && ! empty( $name ) ) { $field = new MuseaElatedClassTwitterFramework(); if ( is_object( $parent ) ) { $parent->addChild( $name, $field ); } return $field; } return false; } } if ( ! function_exists( 'musea_elated_add_admin_instagram_button' ) ) { /** * Generates instagram button field * * @param $attributes * * @return bool|MuseaElatedClassInstagramFramework */ function musea_elated_add_admin_instagram_button( $attributes ) { $name = ''; $parent = ''; extract( $attributes ); if ( ! empty( $parent ) && ! empty( $name ) ) { $field = new MuseaElatedClassInstagramFramework(); if ( is_object( $parent ) ) { $parent->addChild( $name, $field ); } return $field; } return false; } } if ( ! function_exists( 'musea_elated_add_admin_container_no_style' ) ) { /** * Generates container object * $attributes can contain: * $name - name of the container with which it will be added to parent element * $parent - parent object to which to add container * * @param $attributes * * @return bool|MuseaElatedClassContainerNoStyle */ function musea_elated_add_admin_container_no_style( $attributes ) { $name = ''; $parent = ''; $args = array(); $dependency = array(); extract( $attributes ); if ( ! empty( $name ) && is_object( $parent ) ) { $container = new MuseaElatedClassContainerNoStyle( $name, $args, $dependency ); $parent->addChild( $name, $container ); return $container; } return false; } } if ( ! function_exists( 'musea_elated_add_admin_group' ) ) { /** * Generates group object * $attributes can contain: * $name - name of the group with which it will be added to parent element * $title - title of group * $description - description of group * $parent - parent object to which to add group * * @param $attributes * * @return bool|MuseaElatedClassGroup */ function musea_elated_add_admin_group( $attributes ) { $name = ''; $title = ''; $description = ''; $parent = ''; extract( $attributes ); if ( ! empty( $name ) && ! empty( $title ) && is_object( $parent ) ) { $group = new MuseaElatedClassGroup( $title, $description ); $parent->addChild( $name, $group ); return $group; } return false; } } if ( ! function_exists( 'musea_elated_add_admin_row' ) ) { /** * Generates row object * $attributes can contain: * $name - name of the group with which it will be added to parent element * $parent - parent object to which to add row * $next - whether row has next row. Used to add bottom margin class * * @param $attributes * * @return bool|MuseaElatedClassRow */ function musea_elated_add_admin_row( $attributes ) { $parent = ''; $next = false; $name = ''; extract( $attributes ); if ( is_object( $parent ) ) { $row = new MuseaElatedClassRow( $next ); $parent->addChild( $name, $row ); return $row; } return false; } } if ( ! function_exists( 'musea_elated_add_admin_field' ) ) { /** * Generates admin field object * $attributes can container: * $type - type of the field to generate * $name - name of the field. This will be name of the option in database * $default_value * $label - title of the option * $description * $options - assoc array of option. Used only for select and radiogroup field types * $args - assoc array of additional parameters. Used for dependency * $parent - parent object to which to add field * * @param $attributes * * @return bool|MuseaElatedClassField */ function musea_elated_add_admin_field( $attributes ) { $type = ''; $name = ''; $default_value = ''; $label = ''; $description = ''; $options = array(); $args = array(); $parent = ''; $dependency = array(); extract( $attributes ); if ( ! empty( $parent ) && ! empty( $type ) && ! empty( $name ) ) { $field = new MuseaElatedClassField( $type, $name, $default_value, $label, $description, $options, $args, $dependency ); if ( is_object( $parent ) ) { $parent->addChild( $name, $field ); return $field; } } return false; } } if ( ! function_exists( 'musea_elated_add_admin_section_title' ) ) { /** * Generates admin title field * $attributes can contain: * $parent - parent object to which to add title * $name - name of title with which to add it to the parent * $title - title text * * @param $attributes * * @return bool|MuseaElatedClassTitle */ function musea_elated_add_admin_section_title( $attributes ) { $parent = ''; $name = ''; $title = ''; extract( $attributes ); if ( is_object( $parent ) && ! empty( $title ) && ! empty( $name ) ) { $section_title = new MuseaElatedClassTitle( $name, $title ); $parent->addChild( $name, $section_title ); return $section_title; } return false; } } if ( ! function_exists( 'musea_elated_add_admin_notice' ) ) { /** * Generates MuseaElatedClassNotice object from given parameters * $attributes array can contain: * $title - title of notice object * $description - description of notice object * $notice - text of notice to display * $name - unique name of notice with which it will be added to it's parent * $parent - object to which to add notice object using addChild method * * @param $attributes * * @return bool|MuseaElatedClassNotice */ function musea_elated_add_admin_notice( $attributes ) { $title = ''; $description = ''; $notice = ''; $parent = ''; $name = ''; extract( $attributes ); if ( is_object( $parent ) && ! empty( $title ) && ! empty( $notice ) && ! empty( $name ) ) { $notice_object = new MuseaElatedClassNotice( $title, $description, $notice); $parent->addChild( $name, $notice_object ); return $notice_object; } return false; } } if ( ! function_exists( 'musea_elated_framework' ) ) { /** * Function that returns instance of MuseaElatedClassFramework class * * @return MuseaElatedClassFramework */ function musea_elated_framework() { return MuseaElatedClassFramework::get_instance(); } } if ( ! function_exists( 'musea_elated_options' ) ) { /** * Returns instance of MuseaElatedClassOptions class * * @return MuseaElatedClassOptions */ function musea_elated_options() { return musea_elated_framework()->eltdOptions; } } if ( ! function_exists( 'musea_elated_meta_boxes' ) ) { /** * Returns instance of MuseaElatedClassMetaBoxes class * * @return MuseaElatedClassMetaBoxes */ function musea_elated_meta_boxes() { return musea_elated_framework()->eltdMetaBoxes; } } /** * Meta boxes functions */ if ( ! function_exists( 'musea_elated_create_meta_box' ) ) { /** * Adds new meta box * * @param $attributes * * @return bool|MuseaElatedClassMetaBox */ function musea_elated_create_meta_box( $attributes ) { $scope = array(); $title = ''; $name = ''; extract( $attributes ); if ( ! empty( $scope ) && $title !== '' && $name !== '' ) { $meta_box_obj = new MuseaElatedClassMetaBox( $scope, $title, $name ); musea_elated_framework()->eltdMetaBoxes->addMetaBox( $name, $meta_box_obj ); return $meta_box_obj; } return false; } } if ( ! function_exists( 'musea_elated_create_meta_box_field' ) ) { /** * Generates meta box field object * $attributes can contain: * $type - type of the field to generate * $name - name of the field. This will be name of the option in database * $default_value * $label - title of the option * $description * $options - assoc array of option. Used only for select and radiogroup field types * $args - assoc array of additional parameters. Used for dependency * $parent - parent object to which to add field * * @param $attributes * * @return bool|MuseaElatedClassField */ function musea_elated_create_meta_box_field( $attributes ) { $type = ''; $name = ''; $default_value = ''; $label = ''; $description = ''; $options = array(); $args = array(); $dependency = array(); $parent = ''; extract( $attributes ); if ( ! empty( $parent ) && ! empty( $type ) && ! empty( $name ) ) { $field = new MuseaElatedClassMetaField( $type, $name, $default_value, $label, $description, $options, $args, $dependency ); if ( is_object( $parent ) ) { $parent->addChild( $name, $field ); return $field; } } return false; } } if ( ! function_exists( 'musea_elated_add_multiple_images_field' ) ) { /** * Generates meta box field object * $attributes can contain: * $name - name of the field. This will be name of the option in database * $label - title of the option * $description * $parent - parent object to which to add field * * @param $attributes * * @return bool|MuseaElatedClassField */ function musea_elated_add_multiple_images_field( $attributes ) { $name = ''; $label = ''; $description = ''; $parent = ''; extract( $attributes ); if ( ! empty( $parent ) && ! empty( $name ) ) { $field = new MuseaElatedClassMultipleImages( $name, $label, $description ); if ( is_object( $parent ) ) { $parent->addChild( $name, $field ); return $field; } } return false; } } if ( ! function_exists( 'musea_elated_get_yes_no_select_array' ) ) { /** * Returns array of yes no * @return array */ function musea_elated_get_yes_no_select_array( $enable_default = true, $set_yes_to_be_first = false ) { $select_options = array(); if ( $enable_default ) { $select_options[''] = esc_html__( 'Default', 'musea' ); } if ( $set_yes_to_be_first ) { $select_options['yes'] = esc_html__( 'Yes', 'musea' ); $select_options['no'] = esc_html__( 'No', 'musea' ); } else { $select_options['no'] = esc_html__( 'No', 'musea' ); $select_options['yes'] = esc_html__( 'Yes', 'musea' ); } return $select_options; } } if ( ! function_exists( 'musea_elated_get_query_order_by_array' ) ) { /** * Returns array of query order by * * @param bool $first_empty whether to add empty first member * @param array $additional_elements * * @return array */ function musea_elated_get_query_order_by_array( $first_empty = false, $additional_elements = array() ) { $orderBy = array(); if ( $first_empty ) { $orderBy[''] = esc_html__( 'Default', 'musea' ); } $orderBy['date'] = esc_html__( 'Date', 'musea' ); $orderBy['ID'] = esc_html__( 'ID', 'musea' ); $orderBy['menu_order'] = esc_html__( 'Menu Order', 'musea' ); $orderBy['name'] = esc_html__( 'Post Name', 'musea' ); $orderBy['rand'] = esc_html__( 'Random', 'musea' ); $orderBy['title'] = esc_html__( 'Title', 'musea' ); if ( ! empty( $additional_elements ) ) { $orderBy = array_merge( $orderBy, $additional_elements ); } return $orderBy; } } if ( ! function_exists( 'musea_elated_get_query_order_array' ) ) { /** * Returns array of query order * * @param bool $first_empty whether to add empty first member * * @return array */ function musea_elated_get_query_order_array( $first_empty = false ) { $order = array(); if ( $first_empty ) { $order[''] = esc_html__( 'Default', 'musea' ); } $order['ASC'] = esc_html__( 'ASC', 'musea' ); $order['DESC'] = esc_html__( 'DESC', 'musea' ); return $order; } } if ( ! function_exists( 'musea_elated_get_number_of_columns_array' ) ) { /** * Returns array of columns number * * @param bool $first_empty whether to add empty first member * @param array $removed_items * * @return array */ function musea_elated_get_number_of_columns_array( $first_empty = false, $removed_items = array() ) { $options = array(); if ( $first_empty ) { $options[''] = esc_html__( 'Default', 'musea' ); } $options['one'] = esc_html__( 'One', 'musea' ); $options['two'] = esc_html__( 'Two', 'musea' ); $options['three'] = esc_html__( 'Three', 'musea' ); $options['four'] = esc_html__( 'Four', 'musea' ); $options['five'] = esc_html__( 'Five', 'musea' ); $options['six'] = esc_html__( 'Six', 'musea' ); if ( ! empty( $removed_items ) ) { foreach ( $removed_items as $removed_item ) { unset( $options[ $removed_item ] ); } } return $options; } } if ( ! function_exists( 'musea_elated_get_space_between_items_array' ) ) { /** * Returns array of space between items * * @param bool $first_empty whether to add empty first member * @param array $disable_by_keys * * @return array */ function musea_elated_get_space_between_items_array( $first_empty = false, $disable_by_keys = array() ) { $options = array(); if ( $first_empty ) { $options[''] = esc_html__( 'Default', 'musea' ); } $options['huge'] = esc_html__( 'Huge (40)', 'musea' ); $options['large'] = esc_html__( 'Large (25)', 'musea' ); $options['medium'] = esc_html__( 'Medium (20)', 'musea' ); $options['normal'] = esc_html__( 'Normal (15)', 'musea' ); $options['small'] = esc_html__( 'Small (10)', 'musea' ); $options['tiny'] = esc_html__( 'Tiny (5)', 'musea' ); $options['no'] = esc_html__( 'No (0)', 'musea' ); if ( ! empty( $disable_by_keys ) ) { foreach ( $disable_by_keys as $key ) { if ( array_key_exists( $key, $options ) ) { unset( $options[ $key ] ); } } } return $options; } } if ( ! function_exists( 'musea_elated_get_link_target_array' ) ) { /** * Returns array of link target * * @param bool $first_empty whether to add empty first member * * @return array */ function musea_elated_get_link_target_array( $first_empty = false ) { $order = array(); if ( $first_empty ) { $order[''] = esc_html__( 'Default', 'musea' ); } $order['_self'] = esc_html__( 'Same Window', 'musea' ); $order['_blank'] = esc_html__( 'New Window', 'musea' ); return $order; } } if ( ! function_exists( 'musea_elated_get_title_tag' ) ) { /** * Returns array of title tags * * @param bool $first_empty * @param array $additional_elements * * @return array */ function musea_elated_get_title_tag( $first_empty = false, $additional_elements = array() ) { $title_tag = array(); if ( $first_empty ) { $title_tag[''] = esc_html__( 'Default', 'musea' ); } $title_tag['h1'] = 'h1'; $title_tag['h2'] = 'h2'; $title_tag['h3'] = 'h3'; $title_tag['h4'] = 'h4'; $title_tag['h5'] = 'h5'; $title_tag['h6'] = 'h6'; if ( ! empty( $additional_elements ) ) { $title_tag = array_merge( $title_tag, $additional_elements ); } return $title_tag; } } if ( ! function_exists( 'musea_elated_get_font_weight_array' ) ) { /** * Returns array of font weights * * @param bool $first_empty whether to add empty first member * * @return array */ function musea_elated_get_font_weight_array( $first_empty = false ) { $font_weights = array(); if ( $first_empty ) { $font_weights[''] = esc_html__( 'Default', 'musea' ); } $font_weights['100'] = esc_html__( '100 Thin', 'musea' ); $font_weights['200'] = esc_html__( '200 Thin-Light', 'musea' ); $font_weights['300'] = esc_html__( '300 Light', 'musea' ); $font_weights['400'] = esc_html__( '400 Normal', 'musea' ); $font_weights['500'] = esc_html__( '500 Medium', 'musea' ); $font_weights['600'] = esc_html__( '600 Semi-Bold', 'musea' ); $font_weights['700'] = esc_html__( '700 Bold', 'musea' ); $font_weights['800'] = esc_html__( '800 Extra-Bold', 'musea' ); $font_weights['900'] = esc_html__( '900 Ultra-Bold', 'musea' ); return $font_weights; } } if ( ! function_exists( 'musea_elated_get_font_style_array' ) ) { /** * Returns array of font styles * * @param bool $first_empty * * @return array */ function musea_elated_get_font_style_array( $first_empty = false ) { $font_styles = array(); if ( $first_empty ) { $font_styles[''] = esc_html__( 'Default', 'musea' ); } $font_styles['normal'] = esc_html__( 'Normal', 'musea' ); $font_styles['italic'] = esc_html__( 'Italic', 'musea' ); $font_styles['oblique'] = esc_html__( 'Oblique', 'musea' ); $font_styles['initial'] = esc_html__( 'Initial', 'musea' ); $font_styles['inherit'] = esc_html__( 'Inherit', 'musea' ); return $font_styles; } } if ( ! function_exists( 'musea_elated_get_text_transform_array' ) ) { /** * Returns array of text transforms * * @param bool $first_empty * * @return array */ function musea_elated_get_text_transform_array( $first_empty = false ) { $text_transforms = array(); if ( $first_empty ) { $text_transforms[''] = esc_html__( 'Default', 'musea' ); } $text_transforms['none'] = esc_html__( 'None', 'musea' ); $text_transforms['capitalize'] = esc_html__( 'Capitalize', 'musea' ); $text_transforms['uppercase'] = esc_html__( 'Uppercase', 'musea' ); $text_transforms['lowercase'] = esc_html__( 'Lowercase', 'musea' ); $text_transforms['initial'] = esc_html__( 'Initial', 'musea' ); $text_transforms['inherit'] = esc_html__( 'Inherit', 'musea' ); return $text_transforms; } } if ( ! function_exists( 'musea_elated_get_text_decorations' ) ) { /** * Returns array of text transforms * * @param bool $first_empty * * @return array */ function musea_elated_get_text_decorations( $first_empty = false ) { $text_decorations = array(); if ( $first_empty ) { $text_decorations[''] = esc_html__( 'Default', 'musea' ); } $text_decorations['none'] = esc_html__( 'None', 'musea' ); $text_decorations['underline'] = esc_html__( 'Underline', 'musea' ); $text_decorations['overline'] = esc_html__( 'Overline', 'musea' ); $text_decorations['line-through'] = esc_html__( 'Line-Through', 'musea' ); $text_decorations['initial'] = esc_html__( 'Initial', 'musea' ); $text_decorations['inherit'] = esc_html__( 'Inherit', 'musea' ); return $text_decorations; } } if ( ! function_exists( 'musea_elated_is_font_option_valid' ) ) { /** * Checks if font family option is valid (different that -1) * * @param $option_name * * @return bool */ function musea_elated_is_font_option_valid( $option_name ) { return $option_name !== '-1' && $option_name !== ''; } } if ( ! function_exists( 'musea_elated_get_font_option_val' ) ) { /** * Returns font option value without + so it can be used in css * * @param $option_val * * @return mixed */ function musea_elated_get_font_option_val( $option_val ) { $option_val = str_replace( '+', ' ', $option_val ); return $option_val; } } if ( ! function_exists( 'musea_elated_get_icon_sources_array' ) ) { /** * Returns array of icon sources * * @param bool $first_empty * @param bool $enable_predefined * * @return array */ function musea_elated_get_icon_sources_array( $first_empty = false, $enable_predefined = true ) { $icon_sources = array(); if ( $first_empty ) { $icon_sources[''] = esc_html__( 'Default', 'musea' ); } $icon_sources['icon_pack'] = esc_html__( 'Icon Pack', 'musea' ); $icon_sources['svg_path'] = esc_html__( 'SVG Path', 'musea' ); if ( $enable_predefined ) { $icon_sources['predefined'] = esc_html__( 'Predefined', 'musea' ); } return $icon_sources; } } if ( ! function_exists( 'musea_elated_get_icon_sources_class' ) ) { /** * Returns class for icon sources * * @param string $option_name * @param string $class_prefix * * @return string */ function musea_elated_get_icon_sources_class( $option_name = '', $class_prefix = '' ) { $class = ''; if ( ! empty( $option_name ) && ! empty( $class_prefix ) ) { $icon_source = musea_elated_options()->getOptionValue( $option_name . '_icon_source' ); if ( $icon_source === 'icon_pack' ) { $class = $class_prefix . '-icon-pack'; } else if ( $icon_source === 'svg_path' ) { $class = $class_prefix . '-svg-path'; } else if ( $icon_source === 'predefined' ) { $class = $class_prefix . '-predefined'; } } return $class; } } if ( ! function_exists( 'musea_elated_get_icon_sources_html' ) ) { /** * Returns html for icon sources * * @param string $option_name * @param bool $is_close_icon * @param array $args * * @return string/html */ function musea_elated_get_icon_sources_html( $option_name = '', $is_close_icon = false, $args = array() ) { $html = ''; if ( ! empty( $option_name ) ) { $icon_source = musea_elated_options()->getOptionValue( $option_name . '_icon_source' ); $icon_pack = musea_elated_options()->getOptionValue( $option_name . '_icon_pack' ); $icon_svg_path = musea_elated_options()->getOptionValue( $option_name . '_icon_svg_path' ); $close_icon_svg_path = musea_elated_options()->getOptionValue( $option_name . '_close_icon_svg_path' ); $is_search_icon = isset( $args['search'] ) && $args['search'] === 'yes'; $is_dropdown_cart = isset( $args['dropdown_cart'] ) && $args['dropdown_cart'] === 'yes'; if ( $icon_source === 'icon_pack' && isset( $icon_pack ) ) { if ( $is_search_icon ) { if ( $is_close_icon ) { $html .= musea_elated_icon_collections()->getSearchClose( $icon_pack, true ); } else { $html .= musea_elated_icon_collections()->getSearchIcon( $icon_pack, true ); } } else if ( $is_dropdown_cart ) { $html .= musea_elated_icon_collections()->getDropdownCartIcon( $icon_pack, true ); } else if ( $is_close_icon ) { $html .= musea_elated_icon_collections()->getMenuCloseIcon( $icon_pack, true ); } else { $html .= musea_elated_icon_collections()->getMenuIcon( $icon_pack, true ); } } else if ( ( isset( $icon_svg_path ) && ! empty( $icon_svg_path ) ) || ( isset( $close_icon_svg_path ) && ! empty( $close_icon_svg_path ) ) ) { if ( $is_close_icon ) { $html .= $close_icon_svg_path; } else { $html .= $icon_svg_path; } } else if ( $icon_source === 'predefined' ) { if ( $is_close_icon ) { $html .= musea_elated_icon_collections()->getMenuCloseIcon( 'font_elegant', true ); } else { $html .= '<span class="eltdf-hm-lines">'; $html .= '<span class="eltdf-hm-line eltdf-line-1"></span>'; $html .= '<span class="eltdf-hm-line eltdf-line-2"></span>'; $html .= '<span class="eltdf-hm-line eltdf-line-3"></span>'; $html .= '</span>'; } } } return $html; } } if ( ! function_exists( 'musea_elated_is_customizer_item_enabled' ) ) { /** * Function check is item enabled throw customizer options * * @param $item string - module path * @param $option_name string - customizer option name * @param $is_item_id_class bool * * @return bool */ function musea_elated_is_customizer_item_enabled( $item, $option_name, $is_item_id_class = false ) { $item_slug = $is_item_id_class ? $item : basename( dirname( $item ) ); $item_id_class = str_replace( '-', '_', $item_slug ); $item_option = get_option( $option_name . $item_id_class ); $is_item_enabled = empty( $item_option ); return $is_item_enabled; } } if ( ! function_exists( 'musea_elated_add_repeater_field' ) ) { /** * Generates meta box field object * $attributes can contain: * $name - name of the field. This will be name of the option in database * $label - title of the option * $description * $field_type - type of the field that will be rendered and repeated * $parent - parent object to which to add field * * @param $attributes * * @return bool|RepeaterField */ function musea_elated_add_repeater_field( $attributes ) { $name = ''; $label = ''; $description = ''; $fields = array(); $parent = ''; $button_text = ''; $table_layout = false; extract( $attributes ); if ( ! empty( $parent ) && ! empty( $name ) ) { $field = new MuseaElatedClassRepeater( $fields, $name, $label, $description, $button_text, $table_layout ); if ( is_object( $parent ) ) { $parent->addChild( $name, $field ); return $field; } } return false; } } /** * Taxonomy fields function */ if ( ! function_exists( 'musea_elated_add_taxonomy_fields' ) ) { /** * Adds new meta box * * @param $attributes * * @return bool|SelectMetaBox */ function musea_elated_add_taxonomy_fields( $attributes ) { $scope = array(); $name = ''; extract( $attributes ); if ( ! empty( $scope ) ) { $tax_obj = new MuseaElatedClassTaxonomyOption( $scope ); musea_elated_framework()->eltdTaxonomyOptions->addTaxonomyOptions( $name, $tax_obj ); return $tax_obj; } return false; } } if ( ! function_exists( 'musea_elated_add_taxonomy_field' ) ) { /** * Generates meta box field object * $attributes can contain: * $type - type of the field to generate * $name - name of the field. This will be name of the option in database * $label - title of the option * $description * $options - assoc array of option. Used only for select and radiogroup field types * $args - assoc array of additional parameters. Used for dependency * $parent - parent object to which to add field * * @param $attributes * * @return bool|RepeaterField */ function musea_elated_add_taxonomy_field( $attributes ) { $type = ''; $name = ''; $label = ''; $description = ''; $options = array(); $args = array(); $parent = ''; extract( $attributes ); if ( ! empty( $parent ) && ! empty( $name ) ) { $field = new MuseaElatedClassTaxonomyField( $type, $name, $label, $description, $options, $args); if ( is_object( $parent ) ) { $parent->addChild( $name, $field ); return $field; } } return false; } } /** * User fields function */ if ( ! function_exists( 'musea_elated_add_user_fields' ) ) { /** * Adds new meta box * * @param $attributes * * @return bool|SelectMetaBox */ function musea_elated_add_user_fields( $attributes ) { $scope = array(); $name = ''; extract( $attributes ); if ( ! empty( $scope ) ) { $user_obj = new MuseaElatedClassUserOption( $scope ); musea_elated_framework()->eltdUserOptions->addUserOptions( $name, $user_obj ); return $user_obj; } return false; } } if ( ! function_exists( 'musea_elated_add_user_field' ) ) { /** * Generates meta box field object * $attributes can contain: * $type - type of the field to generate * $name - name of the field. This will be name of the option in database * $label - title of the option * $description * $options - assoc array of option. Used only for select and radiogroup field types * $args - assoc array of additional parameters. Used for dependency * $parent - parent object to which to add field * * @param $attributes * * @return bool|RepeaterField */ function musea_elated_add_user_field( $attributes ) { $type = ''; $name = ''; $label = ''; $description = ''; $options = array(); $args = array(); $parent = ''; extract( $attributes ); if ( ! empty( $parent ) && ! empty( $name ) ) { $field = new MuseaElatedClassUserField( $type, $name, $label, $description, $options, $args ); if ( is_object( $parent ) ) { $parent->addChild( $name, $field ); return $field; } } return false; } } if ( ! function_exists( 'musea_elated_add_user_group' ) ) { /** * Generates group object * $attributes can contain: * $name - name of the group with which it will be added to parent element * $title - title of group * $description - description of group * $parent - parent object to which to add group * * @param $attributes * * @return bool|MuseaElatedClassUserGroup */ function musea_elated_add_user_group( $attributes ) { $name = ''; $title = ''; $description = ''; $parent = ''; extract( $attributes ); if ( ! empty( $name ) && ! empty( $title ) && is_object( $parent ) ) { $group = new MuseaElatedClassUserGroup( $title, $description ); $parent->addChild( $name, $group ); return $group; } return false; } } /** * Dashboard fields function */ if ( ! function_exists( 'musea_elated_add_dashboard_fields' ) ) { /** * Adds new meta box * * @param $attributes * * @return bool|MuseaElatedClassDashboardOption */ function musea_elated_add_dashboard_fields( $attributes ) { $name = ''; extract( $attributes ); if ( $name !== '') { $dash_obj = new MuseaElatedClassDashboardOption(); musea_elated_framework()->eltdDashboardOptions->addDashboardOptions( $name, $dash_obj ); return $dash_obj; } return false; } } if ( ! function_exists( 'musea_elated_add_dashboard_form' ) ) { /** * Generates form object * $attributes can contain: * $name - name of the form with which it will be added to parent element * $parent - parent object to which to add form * $form_id - id of form generated * $form_method - method for form generated * $form_nonce - nonce for form generated * * @param $attributes * * @return bool|MuseaElatedClassContainer */ function musea_elated_add_dashboard_form( $attributes ) { $name = ''; $form_id = ''; $form_method = 'post'; $form_action = ''; $form_nonce_action = ''; $form_nonce_name = ''; $button_label = esc_html__('SUMBIT','musea'); $button_args = array(); $parent = ''; extract( $attributes ); if ( ! empty( $name ) && is_object( $parent ) && $form_id !== '') { $container = new MuseaElatedClassDashboardForm( $name, $form_id, $form_method, $form_action, $form_nonce_action, $form_nonce_name, $button_label, $button_args); $parent->addChild( $name, $container ); return $container; } return false; } } if ( ! function_exists( 'musea_elated_add_dashboard_group' ) ) { /** * Generates form object * $attributes can contain: * $name - name of the form with which it will be added to parent element * $parent - parent object to which to add form * * @param $attributes * * @return bool|MuseaElatedClassContainer */ function musea_elated_add_dashboard_group( $attributes ) { $name = ''; $title = ''; $description = ''; $parent = ''; extract( $attributes ); if ( ! empty( $name ) && is_object( $parent ) ) { $container = new MuseaElatedClassDashboardGroup( $name, $title, $description ); $parent->addChild( $name, $container ); return $container; } return false; } } if ( ! function_exists( 'musea_elated_add_dashboard_section_title' ) ) { /** * Generates dashboard title field * $attributes can contain: * $parent - parent object to which to add title * $name - name of title with which to add it to the parent * $title - title text * * @param $attributes * * @return bool|MuseaElatedClassDashboardTitle */ function musea_elated_add_dashboard_section_title( $attributes ) { $parent = ''; $name = ''; $title = ''; $args = array(); extract( $attributes ); if ( is_object( $parent ) && ! empty( $title ) && ! empty( $name ) ) { $section_title = new MuseaElatedClassDashboardTitle( $name, $title, $args ); $parent->addChild( $name, $section_title ); return $section_title; } return false; } } if ( ! function_exists( 'musea_elated_add_dashboard_repeater_field' ) ) { /** * Generates meta box field object * $attributes can contain: * $name - name of the field. This will be name of the option in database * $label - title of the option * $description * $field_type - type of the field that will be rendered and repeated * $parent - parent object to which to add field * * @param $attributes * * @return bool|MuseaElatedClassDashboardRepeater */ function musea_elated_add_dashboard_repeater_field( $attributes ) { $name = ''; $label = ''; $description = ''; $fields = array(); $parent = ''; $button_text = ''; $table_layout = false; $value = array(); extract( $attributes ); if ( ! empty( $parent ) && ! empty( $name ) ) { $field = new MuseaElatedClassDashboardRepeater( $fields, $name, $label, $description, $button_text, $table_layout, $value); if ( is_object( $parent ) ) { $parent->addChild( $name, $field ); return $field; } } return false; } } if ( ! function_exists( 'musea_elated_add_dashboard_field' ) ) { /** * Generates dashboard field object * $attributes can contain: * $type - type of the field to generate * $name - name of the field. This will be name of the option in database * $label - title of the option * $description * $options - assoc array of option. Used only for select and radiogroup field types * $args - assoc array of additional parameters. Used for dependency * $parent - parent object to which to add field * $hidden_property - name of option that hides field * $hidden_values - array of valus of $hidden_property that hides field * * @param $attributes * * @return bool|MuseaElatedClassDashboardField */ function musea_elated_add_dashboard_field( $attributes ) { $type = ''; $name = ''; $label = ''; $description = ''; $options = array(); $args = array(); $value = ''; $parent = ''; $repeat = array(); extract( $attributes ); if ( ! empty( $parent ) && ! empty( $name ) ) { $field = new MuseaElatedClassDashboardField( $type, $name, $label, $description, $options, $args, $value, $repeat); if ( is_object( $parent ) ) { $parent->addChild( $name, $field ); return $field; } } return false; } }