OwlCyberSecurity - MANAGER
Edit File: eltdf.layout1.php
<?php /* Interface: iMuseaElatedInterfaceLayoutNode A interface that implements Layout Node methods */ interface iMuseaElatedInterfaceLayoutNode { public function hasChidren(); public function getChild($key); public function addChild($key, $value); } /* Interface: iMuseaElatedInterfaceRender A interface that implements Render methods */ interface iMuseaElatedInterfaceRender { public function render($factory); } /* Class: MuseaElatedClassPanel A class that initializes Select Panel */ class MuseaElatedClassPanel implements iMuseaElatedInterfaceLayoutNode, iMuseaElatedInterfaceRender { public $children; public $title; public $name; public $dependency = array(); function __construct( $title_panel = "", $name = "", $args = array(), $dependency = array() ) { $this->children = array(); $this->title = $title_panel; $this->name = $name; $this->args = $args; $this->dependency = $dependency; } public function hasChidren() { return ( count( $this->children ) > 0 ) ? true : false; } public function getChild( $key ) { return $this->children[ $key ]; } public function addChild( $key, $value ) { $this->children[ $key ] = $value; } public function render( $factory ) { $containerClass = ''; $data = array(); if ( ! empty( $this->dependency ) ) { $show = array_key_exists( 'show', $this->dependency ) ? musea_elated_return_dependency_options_array( $this->dependency['show'], false ) : array(); $hide = array_key_exists( 'hide', $this->dependency ) ? musea_elated_return_dependency_options_array( $this->dependency['hide'], true ) : array(); $showDataValues = ''; $hideDataValues = ''; $hideContainer = true; $containerClass = 'eltdf-dependency-holder'; if ( ! empty( $show ) ) { $showDataValues = $show['data_values']; $hideContainer = $show['hide_container']; } if ( ! empty( $hide ) ) { $hideDataValues = $hide['data_values']; $hideContainer = $hide['hide_container']; } $data['data-show'] = ! empty( $showDataValues ) ? json_encode( $showDataValues ) : ''; $data['data-hide'] = ! empty( $hideDataValues ) ? json_encode( $hideDataValues ) : ''; if ( $hideContainer ) { $containerClass .= ' eltdf-hide-dependency-holder'; } } ?> <div class="eltdf-page-form-section-holder <?php echo esc_attr( $containerClass ); ?>" id="eltdf_<?php echo esc_attr( $this->name ); ?>" <?php echo musea_elated_get_inline_attrs( $data, true ); ?>> <h3 class="eltdf-page-section-title"><?php echo esc_html( $this->title ); ?></h3> <?php foreach ( $this->children as $child ) { $this->renderChild( $child, $factory ); } ?> </div> <?php } public function renderChild( iMuseaElatedInterfaceRender $child, $factory ) { $child->render( $factory ); } } /* Class: MuseaElatedClassContainer A class that initializes Select Container */ class MuseaElatedClassContainer implements iMuseaElatedInterfaceLayoutNode, iMuseaElatedInterfaceRender { public $children; public $name; public $dependency; function __construct( $name = "", $dependency = array() ) { $this->children = array(); $this->name = $name; $this->dependency = $dependency; } public function hasChidren() { return ( count( $this->children ) > 0 ) ? true : false; } public function getChild( $key ) { return $this->children[ $key ]; } public function addChild( $key, $value ) { $this->children[ $key ] = $value; } public function render( $factory ) { $containerClass = ''; $data = array(); if ( ! empty( $this->dependency ) ) { $show = array_key_exists( 'show', $this->dependency ) ? musea_elated_return_dependency_options_array( $this->dependency['show'], false ) : array(); $hide = array_key_exists( 'hide', $this->dependency ) ? musea_elated_return_dependency_options_array( $this->dependency['hide'], true ) : array(); $showDataValues = ''; $hideDataValues = ''; $hideContainer = true; $containerClass = 'eltdf-dependency-holder'; if ( ! empty( $show ) ) { $showDataValues = $show['data_values']; $hideContainer = $show['hide_container']; } if ( ! empty( $hide ) ) { $hideDataValues = $hide['data_values']; $hideContainer = $hide['hide_container']; } $data['data-show'] = ! empty( $showDataValues ) ? json_encode( $showDataValues ) : ''; $data['data-hide'] = ! empty( $hideDataValues ) ? json_encode( $hideDataValues ) : ''; if ( $hideContainer ) { $containerClass .= ' eltdf-hide-dependency-holder'; } } ?> <div class="eltdf-page-form-container-holder <?php echo esc_attr( $containerClass ); ?>" id="eltdf_<?php echo esc_attr( $this->name ); ?>" <?php echo musea_elated_get_inline_attrs( $data, true ); ?>> <?php foreach ( $this->children as $child ) { $this->renderChild( $child, $factory ); } ?> </div> <?php } public function renderChild( iMuseaElatedInterfaceRender $child, $factory ) { $child->render( $factory ); } } /* Class: MuseaElatedClassContainerNoStyle A class that initializes Select Container without css classes */ class MuseaElatedClassContainerNoStyle implements iMuseaElatedInterfaceLayoutNode, iMuseaElatedInterfaceRender { public $children; public $name; public $dependency; function __construct( $name = "", $args = array(), $dependency = array() ) { $this->children = array(); $this->name = $name; $this->dependency = $dependency; $this->args = $args; } public function hasChidren() { return ( count( $this->children ) > 0 ) ? true : false; } public function getChild( $key ) { return $this->children[ $key ]; } public function addChild( $key, $value ) { $this->children[ $key ] = $value; } public function render( $factory ) { $containerClass = ''; $data = array(); if ( ! empty( $this->dependency ) ) { $show = array_key_exists( 'show', $this->dependency ) ? musea_elated_return_dependency_options_array( $this->dependency['show'], false ) : array(); $hide = array_key_exists( 'hide', $this->dependency ) ? musea_elated_return_dependency_options_array( $this->dependency['hide'], true ) : array(); $showDataValues = ''; $hideDataValues = ''; $hideContainer = true; $containerClass = 'eltdf-dependency-holder'; if ( ! empty( $show ) ) { $showDataValues = $show['data_values']; $hideContainer = $show['hide_container']; } if ( ! empty( $hide ) ) { $hideDataValues = $hide['data_values']; $hideContainer = $hide['hide_container']; } $data['data-show'] = ! empty( $showDataValues ) ? json_encode( $showDataValues ) : ''; $data['data-hide'] = ! empty( $hideDataValues ) ? json_encode( $hideDataValues ) : ''; if ( $hideContainer ) { $containerClass .= ' eltdf-hide-dependency-holder'; } } ?> <div class="<?php echo esc_attr( $containerClass ); ?>" id="eltdf_<?php echo esc_attr( $this->name ); ?>" <?php echo musea_elated_get_inline_attrs( $data, true ); ?>> <?php foreach ( $this->children as $child ) { $this->renderChild( $child, $factory ); } ?> </div> <?php } public function renderChild( iMuseaElatedInterfaceRender $child, $factory ) { $child->render( $factory ); } } /* Class: MuseaElatedClassGroup A class that initializes Select Group */ class MuseaElatedClassGroup implements iMuseaElatedInterfaceLayoutNode, iMuseaElatedInterfaceRender { public $children; public $title; public $description; function __construct( $title_group = "", $description = "" ) { $this->children = array(); $this->title = $title_group; $this->description = $description; } public function hasChidren() { return ( count( $this->children ) > 0 ) ? true : false; } public function getChild( $key ) { return $this->children[ $key ]; } public function addChild( $key, $value ) { $this->children[ $key ] = $value; } public function render( $factory ) { ?> <div class="eltdf-page-form-section"> <div class="eltdf-field-desc"> <h4><?php echo esc_html( $this->title ); ?></h4> <p><?php echo esc_html( $this->description ); ?></p> </div> <div class="eltdf-section-content"> <div class="container-fluid"> <?php foreach ( $this->children as $child ) { $this->renderChild( $child, $factory ); } ?> </div> </div> </div> <?php } public function renderChild( iMuseaElatedInterfaceRender $child, $factory ) { $child->render( $factory ); } } /* Class: MuseaElatedClassNotice A class that initializes Select Notice */ class MuseaElatedClassNotice implements iMuseaElatedInterfaceRender { public $children; public $title; public $description; public $notice; function __construct( $title_notice = "", $description = "", $notice = "" ) { $this->children = array(); $this->title = $title_notice; $this->description = $description; $this->notice = $notice; } public function render( $factory ) { ?> <div class="eltdf-page-form-section"> <div class="eltdf-field-desc"> <h4><?php echo esc_html( $this->title ); ?></h4> <p><?php echo esc_html( $this->description ); ?></p> </div> <div class="eltdf-section-content"> <div class="container-fluid"> <div class="alert alert-warning"> <?php echo esc_html( $this->notice ); ?> </div> </div> </div> </div> <?php } } /* Class: MuseaElatedClassRow A class that initializes Select Row */ class MuseaElatedClassRow implements iMuseaElatedInterfaceLayoutNode, iMuseaElatedInterfaceRender { public $children; public $next; function __construct( $next = false ) { $this->children = array(); $this->next = $next; } public function hasChidren() { return ( count( $this->children ) > 0 ) ? true : false; } public function getChild( $key ) { return $this->children[ $key ]; } public function addChild( $key, $value ) { $this->children[ $key ] = $value; } public function render( $factory ) { ?> <div class="row<?php if ( $this->next ) { echo " next-row"; } ?>"> <?php foreach ( $this->children as $child ) { $this->renderChild( $child, $factory ); } ?> </div> <?php } public function renderChild( iMuseaElatedInterfaceRender $child, $factory ) { $child->render( $factory ); } } /* Class: MuseaElatedClassTitle A class that initializes Select Title */ class MuseaElatedClassTitle implements iMuseaElatedInterfaceRender { private $name; private $title; function __construct( $name = "", $title_class = "" ) { $this->title = $title_class; $this->name = $name; } public function render( $factory ) { ?> <h5 class="eltdf-page-section-subtitle" id="eltdf_<?php echo esc_attr( $this->name ); ?>"><?php echo esc_html( $this->title ); ?></h5> <?php } } /* Class: MuseaElatedClassField A class that initializes Select Field */ class MuseaElatedClassField implements iMuseaElatedInterfaceRender { private $type; private $name; private $default_value; private $label; private $description; private $options = array(); private $args = array(); public $dependency = array(); function __construct( $type, $name, $default_value = "", $label = "", $description = "", $options = array(), $args = array(), $dependency = array() ) { global $musea_elated_global_Framework; $this->type = $type; $this->name = $name; $this->default_value = $default_value; $this->label = $label; $this->description = $description; $this->options = $options; $this->args = $args; $this->dependency = $dependency; $musea_elated_global_Framework->eltdOptions->addOption( $this->name, $this->default_value, $type ); } public function render( $factory ) { $containerClass = ''; $data = array(); if ( ! empty( $this->dependency ) ) { $show = array_key_exists( 'show', $this->dependency ) ? musea_elated_return_dependency_options_array( $this->dependency['show'], false ) : array(); $hide = array_key_exists( 'hide', $this->dependency ) ? musea_elated_return_dependency_options_array( $this->dependency['hide'], true ) : array(); $showDataValues = ''; $hideDataValues = ''; $hideContainer = true; $containerClass = 'eltdf-dependency-holder'; if ( ! empty( $show ) ) { $showDataValues = $show['data_values']; $hideContainer = $show['hide_container']; } if ( ! empty( $hide ) ) { $hideDataValues = $hide['data_values']; $hideContainer = $hide['hide_container']; } $data['data-show'] = ! empty( $showDataValues ) ? json_encode( $showDataValues ) : ''; $data['data-hide'] = ! empty( $hideDataValues ) ? json_encode( $hideDataValues ) : ''; if ( $hideContainer ) { $containerClass .= ' eltdf-hide-dependency-holder'; } } ?> <div class="<?php echo esc_attr( $containerClass ); ?>" <?php echo musea_elated_get_inline_attrs( $data, true ); ?>> <?php $factory->render( $this->type, $this->name, $this->label, $this->description, $this->options, $this->args ); ?> </div> <?php } } /* Class: MuseaElatedClassMetaField A class that initializes Select Meta Field */ class MuseaElatedClassMetaField implements iMuseaElatedInterfaceRender { private $type; private $name; private $default_value; private $label; private $description; private $options = array(); private $args = array(); public $dependency = array(); function __construct( $type, $name, $default_value = "", $label = "", $description = "", $options = array(), $args = array(), $dependency = array() ) { global $musea_elated_global_Framework; $this->type = $type; $this->name = $name; $this->default_value = $default_value; $this->label = $label; $this->description = $description; $this->options = $options; $this->args = $args; $this->dependency = $dependency; $musea_elated_global_Framework->eltdMetaBoxes->addOption( $this->name, $this->default_value, $type ); } public function render( $factory ) { $containerClass = ''; $data = array(); if ( ! empty( $this->dependency ) ) { $show = array_key_exists( 'show', $this->dependency ) ? musea_elated_return_dependency_options_array( $this->dependency['show'], false ) : array(); $hide = array_key_exists( 'hide', $this->dependency ) ? musea_elated_return_dependency_options_array( $this->dependency['hide'], true ) : array(); $showDataValues = ''; $hideDataValues = ''; $hideContainer = true; $containerClass = 'eltdf-dependency-holder'; if ( ! empty( $show ) ) { $showDataValues = $show['data_values']; $hideContainer = $show['hide_container']; } if ( ! empty( $hide ) ) { $hideDataValues = $hide['data_values']; $hideContainer = $hide['hide_container']; } $data['data-show'] = ! empty( $showDataValues ) ? json_encode( $showDataValues ) : ''; $data['data-hide'] = ! empty( $hideDataValues ) ? json_encode( $hideDataValues ) : ''; if ( $hideContainer ) { $containerClass .= ' eltdf-hide-dependency-holder'; } } ?> <div class="<?php echo esc_attr( $containerClass ); ?>" <?php echo musea_elated_get_inline_attrs( $data, true ); ?>> <?php $factory->render( $this->type, $this->name, $this->label, $this->description, $this->options, $this->args ); ?> </div> <?php } } abstract class MuseaElatedClassFieldType { abstract public function render( $name, $label = "", $description = "", $options = array(), $args = array() ); } class MuseaElatedClassFieldText extends MuseaElatedClassFieldType { public function render( $name, $label = "", $description = "", $options = array(), $args = array(), $repeat = array() ) { $col_width = 12; if ( isset( $args["col_width"] ) ) { $col_width = $args["col_width"]; } $suffix = ! empty( $args['suffix'] ) ? $args['suffix'] : false; $class = ''; if ( ! empty( $repeat ) && array_key_exists( 'name', $repeat ) && array_key_exists( 'index', $repeat ) ) { $id = $name . '-' . $repeat['index']; $name = $repeat['name'] . '[' . $repeat['index'] . '][' . $name . ']'; $value = $repeat['value']; } else { $id = $name; $value = musea_elated_option_get_value( $name ); } if ( $label === '' && $description === '' ) { $class .= ' eltdf-no-description'; } if ( isset( $args['custom_class'] ) && $args['custom_class'] != '' ) { $class .= ' ' . $args['custom_class']; } $data_string = ''; if ( isset( $args['input-data'] ) && $args['input-data'] != '' ) { foreach ( $args['input-data'] as $data_key => $data_value ) { $data_string .= $data_key . '=' . $data_value; $data_string .= ' '; } } ?> <div class="eltdf-page-form-section <?php echo esc_attr( $class ); ?>" id="eltdf_<?php echo esc_attr( $id ); ?>"> <div class="eltdf-field-desc"> <h4><?php echo esc_html( $label ); ?></h4> <p><?php echo esc_html( $description ); ?></p> </div> <div class="eltdf-section-content"> <div class="container-fluid"> <div class="row"> <div class="col-lg-<?php echo esc_attr( $col_width ); ?>"> <?php if ( $suffix ) : ?> <div class="input-group"> <?php endif; ?> <input type="text" <?php echo esc_attr( $data_string ); ?> class="form-control eltdf-input eltdf-form-element" name="<?php echo esc_attr( $name ); ?>" value="<?php echo esc_attr( htmlspecialchars( $value ) ); ?>"/> <?php if ( $suffix ) : ?> <div class="input-group-addon"><?php echo esc_html( $args['suffix'] ); ?></div> <?php endif; ?> <?php if ( $suffix ) : ?> </div> <?php endif; ?> </div> </div> </div> </div> </div> <?php } } class MuseaElatedClassFieldTextSimple extends MuseaElatedClassFieldType { public function render( $name, $label = "", $description = "", $options = array(), $args = array() ) { $col_width = 3; if ( isset( $args["col_width"] ) ) { $col_width = $args["col_width"]; } $suffix = ! empty( $args['suffix'] ) ? $args['suffix'] : false; ?> <div class="col-lg-<?php echo esc_attr( $col_width ); ?>" id="eltdf_<?php echo esc_attr( $name ); ?>"> <em class="eltdf-field-description"><?php echo esc_html( $label ); ?></em> <?php if ( $suffix ) : ?> <div class="input-group"> <?php endif; ?> <input type="text" class="form-control eltdf-input eltdf-form-element" name="<?php echo esc_attr( $name ); ?>" value="<?php echo esc_attr( htmlspecialchars( musea_elated_option_get_value( $name ) ) ); ?>"/> <?php if ( $suffix ) : ?> <div class="input-group-addon"><?php echo esc_html( $args['suffix'] ); ?></div> <?php endif; ?> <?php if ( $suffix ) : ?> </div> <?php endif; ?> </div> <?php } } class MuseaElatedClassFieldTextArea extends MuseaElatedClassFieldType { public function render( $name, $label = "", $description = "", $options = array(), $args = array(), $repeat = array() ) { $class = ''; if ( ! empty( $repeat ) && array_key_exists( 'name', $repeat ) && array_key_exists( 'index', $repeat ) ) { $id = $name . '-' . $repeat['index']; $name = $repeat['name'] . '[' . $repeat['index'] . '][' . $name . ']'; $value = $repeat['value']; } else { $id = $name; $value = musea_elated_option_get_value( $name ); } if ( $label === '' && $description === '' ) { $class .= ' eltdf-no-description'; } $disabled = ''; if ( isset( $args['disabled'] ) && $args['disabled'] ) { $disabled = ' disabled'; } ?> <div class="eltdf-page-form-section <?php echo esc_attr( $class ); ?>" id="eltdf_<?php echo esc_attr( $id ); ?>"> <div class="eltdf-field-desc"> <h4><?php echo esc_html( $label ); ?></h4> <p><?php echo esc_html( $description ); ?></p> </div> <div class="eltdf-section-content"> <div class="container-fluid"> <div class="row"> <div class="col-lg-12"> <textarea class="form-control eltdf-form-element" name="<?php echo esc_attr( $name ); ?>" rows="5" <?php echo esc_attr( $disabled ); ?>><?php echo esc_html( htmlspecialchars( $value ) ); ?></textarea> </div> </div> </div> </div> </div> <?php } } class MuseaElatedClassFieldTextAreaSimple extends MuseaElatedClassFieldType { public function render( $name, $label = "", $description = "", $options = array(), $args = array() ) { ?> <div class="col-lg-3"> <em class="eltdf-field-description"><?php echo esc_html( $label ); ?></em> <textarea class="form-control eltdf-form-element" name="<?php echo esc_attr( $name ); ?>" rows="5"><?php echo esc_html( musea_elated_option_get_value( $name ) ); ?></textarea> </div> <?php } } class MuseaElatedClassFieldTextAreaHtml extends MuseaElatedClassFieldType { public function render( $name, $label = "", $description = "", $options = array(), $args = array(), $repeat = array() ) { $class = ''; if ( ! empty( $repeat ) && array_key_exists( 'name', $repeat ) && array_key_exists( 'index', $repeat ) ) { $id = $name . '-' . $repeat['index']; //if textareahtml already exists it will have index as number, if created in repeater it will be a string because of the tinymce rules if ( is_int( $repeat['index'] ) ) { $field_id = $repeat['name'] . '_textarea_index_' . $repeat['index'] . '_' . $name; } else { $field_id = $repeat['name'] . '_textarea_index_' . $name; } $name = $repeat['name'] . '[' . $repeat['index'] . '][' . $name . ']'; $value = $repeat['value']; } else { $id = $field_id = $name; $value = musea_elated_option_get_value( $name ); } if ( $label === '' && $description === '' ) { $class .= ' eltdf-no-description'; } ?> <div class="eltdf-page-form-section <?php echo esc_attr( $class ); ?>" id="eltdf_<?php echo esc_attr( $id ); ?>"> <div class="eltdf-field-desc"> <h4><?php echo esc_html( $label ); ?></h4> <p><?php echo esc_html( $description ); ?></p> </div> <div class="eltdf-section-content"> <div class="container-fluid"> <div class="row"> <div class="col-lg-12 <?php echo esc_attr( $class ); ?>"> <?php wp_editor( $value, $field_id, array( 'textarea_name' => $name, 'height' => '200' ) ); ?> </div> </div> </div> </div> </div> <?php } } class MuseaElatedClassFieldColor extends MuseaElatedClassFieldType { public function render( $name, $label = "", $description = "", $options = array(), $args = array(), $repeat = array() ) { if ( ! empty( $repeat ) && array_key_exists( 'name', $repeat ) && array_key_exists( 'index', $repeat ) ) { $id = $name . '-' . $repeat['index']; $name = $repeat['name'] . '[' . $repeat['index'] . '][' . $name . ']'; $value = $repeat['value']; } else { $id = $name; $value = musea_elated_option_get_value( $name ); } ?> <div class="eltdf-page-form-section" id="eltdf_<?php echo esc_attr( $id ); ?>"> <div class="eltdf-field-desc"> <h4><?php echo esc_html( $label ); ?></h4> <p><?php echo esc_html( $description ); ?></p> </div> <div class="eltdf-section-content"> <div class="container-fluid"> <div class="row"> <div class="col-lg-12"> <input type="text" name="<?php echo esc_attr( $name ); ?>" value="<?php echo esc_attr( $value ); ?>" class="my-color-field"/> </div> </div> </div> </div> </div> <?php } } class MuseaElatedClassFieldColorSimple extends MuseaElatedClassFieldType { public function render( $name, $label = "", $description = "", $options = array(), $args = array() ) { ?> <div class="col-lg-3" id="eltdf_<?php echo esc_attr( $name ); ?>"> <em class="eltdf-field-description"><?php echo esc_html( $label ); ?></em> <input type="text" name="<?php echo esc_attr( $name ); ?>" value="<?php echo esc_attr( musea_elated_option_get_value( $name ) ); ?>" class="my-color-field"/> </div> <?php } } class MuseaElatedClassFieldImage extends MuseaElatedClassFieldType { public function render( $name, $label = "", $description = "", $options = array(), $args = array(), $repeat = array() ) { $class = ''; if ( ! empty( $repeat ) && array_key_exists( 'name', $repeat ) && array_key_exists( 'index', $repeat ) ) { $id = $name . '-' . $repeat['index']; $name = $repeat['name'] . '[' . $repeat['index'] . '][' . $name . ']'; $value = $repeat['value']; $has_image = ! empty( $value ); } else { $id = $name; $has_image = musea_elated_option_has_value( $name ); $value = musea_elated_option_get_value( $name ); } if ( $label === '' && $description === '' ) { $class .= ' eltdf-no-description'; } ?> <div class="eltdf-page-form-section <?php echo esc_attr( $class ); ?>" id="eltdf_<?php echo esc_attr( $id ); ?>"> <div class="eltdf-field-desc"> <h4><?php echo esc_html( $label ); ?></h4> <p><?php echo esc_html( $description ); ?></p> </div> <div class="eltdf-section-content"> <div class="container-fluid"> <div class="row"> <div class="col-lg-12"> <div class="eltdf-media-uploader"> <div class="eltdf-media-image-holder <?php echo ! $has_image ? 'eltdf-hide-field' : ''; ?>"> <img src="<?php if ( $has_image ) { echo esc_url( musea_elated_get_attachment_thumb_url( $value ) ); } ?>" alt="<?php esc_attr_e( 'Image thumbnail', 'musea' ); ?>" class="eltdf-media-image img-thumbnail"/> </div> <div class="eltdf-media-meta-fields eltdf-hide-field"> <input type="hidden" class="eltdf-media-upload-url" name="<?php echo esc_attr( $name ); ?>" value="<?php echo esc_attr( $value ); ?>"/> </div> <a class="eltdf-media-upload-btn btn btn-sm btn-primary" href="javascript:void(0)" data-frame-title="<?php esc_attr_e( 'Select Image', 'musea' ); ?>" data-frame-button-text="<?php esc_attr_e( 'Select Image', 'musea' ); ?>"><?php esc_html_e( 'Upload', 'musea' ); ?></a> <a href="javascript: void(0)" class="eltdf-media-remove-btn btn btn-default btn-sm eltdf-hide-field"><?php esc_html_e( 'Remove', 'musea' ); ?></a> </div> </div> </div> </div> </div> </div> <?php } } class MuseaElatedClassFieldImageSimple extends MuseaElatedClassFieldType { public function render( $name, $label = "", $description = "", $options = array(), $args = array() ) { ?> <div class="col-lg-3" id="eltdf_<?php echo esc_attr( $name ); ?>"> <em class="eltdf-field-description"><?php echo esc_html( $label ); ?></em> <div class="eltdf-media-uploader"> <div class="eltdf-media-image-holder <?php echo ! musea_elated_option_has_value( $name ) ? 'eltdf-hide-field' : ''; ?>"> <img src="<?php if ( musea_elated_option_has_value( $name ) ) { echo esc_url( musea_elated_get_attachment_thumb_url( musea_elated_option_get_value( $name ) ) ); } ?>" alt="<?php esc_attr_e( 'Image thumbnail', 'musea' ); ?>" class="eltdf-media-image img-thumbnail"/> </div> <div class="eltdf-media-meta-fields eltdf-hide-field"> <input type="hidden" class="eltdf-media-upload-url" name="<?php echo esc_attr( $name ); ?>" value="<?php echo esc_attr( musea_elated_option_get_value( $name ) ); ?>"/> </div> <a class="eltdf-media-upload-btn btn btn-sm btn-primary" href="javascript:void(0)" data-frame-title="<?php esc_attr_e( 'Select Image', 'musea' ); ?>" data-frame-button-text="<?php esc_attr_e( 'Select Image', 'musea' ); ?>"><?php esc_html_e( 'Upload', 'musea' ); ?></a> <a href="javascript: void(0)" class="eltdf-media-remove-btn btn btn-default btn-sm eltdf-hide-field"><?php esc_html_e( 'Remove', 'musea' ); ?></a> </div> </div> <?php } } class MuseaElatedClassFieldFont extends MuseaElatedClassFieldType { public function render( $name, $label = "", $description = "", $options = array(), $args = array(), $repeat = array() ) { global $musea_elated_global_fonts_array; if ( ! empty( $repeat ) && array_key_exists( 'name', $repeat ) && array_key_exists( 'index', $repeat ) ) { $id = $name . '-' . $repeat['index']; $name = $repeat['name'] . '[' . $repeat['index'] . '][' . $name . ']'; $value = $repeat['value']; } else { $id = $name; $value = musea_elated_option_get_value( $name ); } ?> <div class="eltdf-page-form-section" id="eltdf_<?php echo esc_attr( $id ); ?>"> <div class="eltdf-field-desc"> <h4><?php echo esc_html( $label ); ?></h4> <p><?php echo esc_html( $description ); ?></p> </div> <div class="eltdf-section-content"> <div class="container-fluid"> <div class="row"> <div class="col-lg-3"> <select class="eltdf-select2 form-control eltdf-form-element" name="<?php echo esc_attr( $name ); ?>"> <option value="-1"><?php esc_html_e( 'Default', 'musea' ); ?></option> <?php foreach ( $musea_elated_global_fonts_array as $fontArray ) { ?> <option <?php if ( $value == str_replace( ' ', '+', $fontArray["family"] ) ) { echo "selected='selected'"; } ?> value="<?php echo esc_attr( str_replace( ' ', '+', $fontArray["family"] ) ); ?>"><?php echo esc_html( $fontArray["family"] ); ?></option> <?php } ?> </select> </div> </div> </div> </div> </div> <?php } } class MuseaElatedClassFieldFontSimple extends MuseaElatedClassFieldType { public function render( $name, $label = "", $description = "", $options = array(), $args = array() ) { global $musea_elated_global_fonts_array; ?> <div class="col-lg-3"> <em class="eltdf-field-description"><?php echo esc_html( $label ); ?></em> <select class="eltdf-select2 form-control eltdf-form-element" name="<?php echo esc_attr( $name ); ?>"> <option value="-1"><?php esc_html_e( 'Default', 'musea' ); ?></option> <?php foreach ( $musea_elated_global_fonts_array as $fontArray ) { ?> <option <?php if ( musea_elated_option_get_value( $name ) == str_replace( ' ', '+', $fontArray["family"] ) ) { echo "selected='selected'"; } ?> value="<?php echo esc_attr( str_replace( ' ', '+', $fontArray["family"] ) ); ?>"><?php echo esc_html( $fontArray["family"] ); ?></option> <?php } ?> </select> </div> <?php } } class MuseaElatedClassFieldSelect extends MuseaElatedClassFieldType { public function render( $name, $label = "", $description = "", $options = array(), $args = array(), $repeat = array() ) { $class = ''; if ( ! empty( $repeat ) && array_key_exists( 'name', $repeat ) && array_key_exists( 'index', $repeat ) ) { $id = $name . '-' . $repeat['index']; $name = $repeat['name'] . '[' . $repeat['index'] . '][' . $name . ']'; $rvalue = $repeat['value']; $class = 'eltdf-repeater-field'; } else { $id = $name; $rvalue = musea_elated_option_get_value( $name ); } $select2 = ''; if ( isset( $args['select2'] ) ) { $select2 = 'eltdf-select2'; } $col_width = 3; if ( isset( $args['col_width'] ) ) { $col_width = $args['col_width']; } $switcher = ''; $data_switch_type = ''; $data_switch_property = ''; $data_switch_enabled = ''; if ( isset( $args["use_as_switcher"] ) ) { $switcher = $args["use_as_switcher"] ? 'eltdf-switcher' : ""; } if ( isset( $args['switch_type'] ) ) { $data_switch_type = $args['switch_type']; } if ( isset( $args['switch_property'] ) ) { $data_switch_property = $args['switch_property']; } if ( isset( $args['switch_enabled'] ) ) { $data_switch_enabled = $args['switch_enabled']; } if ( $label === '' && $description === '' ) { $class .= ' eltdf-no-description'; } ?> <div class="eltdf-page-form-section <?php echo esc_attr( $class ); ?>" id="eltdf_<?php echo esc_attr( $id ); ?>"> <div class="eltdf-field-desc"> <h4><?php echo esc_html( $label ); ?></h4> <p><?php echo esc_html( $description ); ?></p> </div> <div class="eltdf-section-content"> <div class="container-fluid"> <div class="row"> <div class="col-lg-<?php echo esc_attr( $col_width ); ?>"> <select class="<?php echo esc_attr( $select2 ) . ' ' . esc_attr( $switcher ); ?> eltdf-field form-control eltdf-form-element" data-switch-type="<?php echo esc_attr( $data_switch_type ); ?>" data-switch-property="<?php echo esc_attr( $data_switch_property ); ?>" data-switch-enabled="<?php echo esc_attr( $data_switch_enabled ); ?>" name="<?php echo esc_attr( $name ); ?>" data-option-name="<?php echo esc_attr( $name ); ?>" data-option-type="selectbox"> <?php foreach ( $options as $key => $value ) { if ( $key == "-1" ) { $key = ""; } ?> <option <?php if ( $rvalue == $key ) { echo "selected='selected'"; } ?> value="<?php echo esc_attr( $key ); ?>"><?php echo esc_html( $value ); ?></option> <?php } ?> </select> </div> </div> </div> </div> </div> <?php } } class MuseaElatedClassFieldSelectBlank extends MuseaElatedClassFieldType { public function render( $name, $label = "", $description = "", $options = array(), $args = array() ) { $class = ''; if ( ! empty( $repeat ) && array_key_exists( 'name', $repeat ) && array_key_exists( 'index', $repeat ) ) { $id = $name . '-' . $repeat['index']; $name = $repeat['name'] . '[' . $repeat['index'] . '][' . $name . ']'; $rvalue = $repeat['value']; $class = 'eltdf-repeater-field'; } else { $id = $name; $rvalue = musea_elated_option_get_value( $name ); } $select2 = ''; if ( isset( $args['select2'] ) ) { $select2 = ( $args['select2'] ) ? 'eltdf-select2' : ''; } ?> <div class="eltdf-page-form-section <?php echo esc_attr( $class ); ?>" id="eltdf_<?php echo esc_attr( $id ); ?>"> <div class="eltdf-field-desc"> <h4><?php echo esc_html( $label ); ?></h4> <p><?php echo esc_html( $description ); ?></p> </div> <div class="eltdf-section-content"> <div class="container-fluid"> <div class="row"> <div class="col-lg-3"> <select class="<?php echo esc_attr( $select2 ); ?> eltdf-field form-control eltdf-form-element" name="<?php echo esc_attr( $name ); ?>" data-option-name="<?php echo esc_attr( $name ); ?>" data-option-type="selectbox"> <option value="" <?php if ( musea_elated_option_get_value( $name ) == "" ) { echo "selected='selected'"; } ?>><?php esc_html_e( 'Default', 'musea' ); ?></option> <?php foreach ( $options as $key => $value ) { if ( $key == "-1" ) { $key = ""; } ?> <option <?php if ( $rvalue == $key ) { echo "selected='selected'"; } ?> value="<?php echo esc_attr( $key ); ?>"><?php echo esc_html( $value ); ?></option> <?php } ?> </select> </div> </div> </div> </div> </div> <?php } } class MuseaElatedClassFieldSelectSimple extends MuseaElatedClassFieldType { public function render( $name, $label = "", $description = "", $options = array(), $args = array() ) { ?> <div class="col-lg-3"> <em class="eltdf-field-description"><?php echo esc_html( $label ); ?></em> <select class="eltdf-field form-control eltdf-form-element" name="<?php echo esc_attr( $name ); ?>" data-option-name="<?php echo esc_attr( $name ); ?>" data-option-type="selectbox"> <option <?php if ( musea_elated_option_get_value( $name ) == "" ) { echo "selected='selected'"; } ?> value=""></option> <?php foreach ( $options as $key => $value ) { if ( $key == "-1" ) { $key = ""; } ?> <option <?php if ( musea_elated_option_get_value( $name ) == $key ) { echo "selected='selected'"; } ?> value="<?php echo esc_attr( $key ); ?>"><?php echo esc_html( $value ); ?></option> <?php } ?> </select> </div> <?php } } class MuseaElatedClassFieldSelectBlankSimple extends MuseaElatedClassFieldType { public function render( $name, $label = "", $description = "", $options = array(), $args = array() ) { ?> <div class="col-lg-3"> <em class="eltdf-field-description"><?php echo esc_html( $label ); ?></em> <select class="eltdf-field form-control eltdf-form-element" name="<?php echo esc_attr( $name ); ?>" data-option-name="<?php echo esc_attr( $name ); ?>" data-option-type="selectbox"> <option <?php if ( musea_elated_option_get_value( $name ) == "" ) { echo "selected='selected'"; } ?> value=""></option> <?php foreach ( $options as $key => $value ) { if ( $key == "-1" ) { $key = ""; } ?> <option <?php if ( musea_elated_option_get_value( $name ) == $key ) { echo "selected='selected'"; } ?> value="<?php echo esc_attr( $key ); ?>"><?php echo esc_html( $value ); ?></option> <?php } ?> </select> </div> <?php } } class MuseaElatedClassFieldYesNo extends MuseaElatedClassFieldType { public function render( $name, $label = "", $description = "", $options = array(), $args = array(), $repeat = array() ) { $switcher_name = $name; $class = ''; $tname = $name; if ( ! empty( $repeat ) && array_key_exists( 'name', $repeat ) && array_key_exists( 'index', $repeat ) ) { $id = $name . '-' . $repeat['index']; $tname = $repeat['name'] . '[' . $repeat['index'] . '][' . $name . ']'; $name = $repeat['name'] . '[' . $repeat['index'] . '][' . $name . ']'; $rvalue = $repeat['value']; $class = 'eltdf-repeater-field'; } else { $id = $name; $rvalue = musea_elated_option_get_value( $name ); } if ( $label === '' && $description === '' ) { $class .= ' eltdf-no-description'; } ?> <div class="eltdf-page-form-section <?php echo esc_attr( $class ); ?>" id="eltdf_<?php echo esc_attr( $id ); ?>"> <div class="eltdf-field-desc"> <h4><?php echo esc_html( $label ); ?></h4> <p><?php echo esc_html( $description ); ?></p> </div> <div class="eltdf-section-content"> <div class="container-fluid"> <div class="row"> <div class="col-lg-12"> <p class="eltdf-field field switch switch-<?php echo esc_attr( $switcher_name ); ?>" data-option-name="<?php echo esc_attr( $tname ); ?>" data-option-type="checkbox"> <label class="cb-enable <?php if ( $rvalue == "yes" ) { echo " selected"; } ?>" data-value="yes"><span><?php esc_html_e( 'Yes', 'musea' ) ?></span></label> <label class="cb-disable <?php if ( $rvalue == "no" ) { echo " selected"; } ?>" data-value="no"><span><?php esc_html_e( 'No', 'musea' ) ?></span></label> <input type="checkbox" id="checkbox" class="checkbox" name="<?php echo esc_attr( $tname ); ?>" value="yes"<?php if ( $rvalue == "yes" ) { echo " checked"; } ?>/> <input type="hidden" class="checkboxhidden_yesno" name="<?php echo esc_attr( $name ); ?>" value="<?php echo esc_attr( $rvalue ); ?>"/> </p> </div> </div> </div> </div> </div> <?php } } class MuseaElatedClassFieldYesNoSimple extends MuseaElatedClassFieldType { public function render( $name, $label = "", $description = "", $options = array(), $args = array() ) { ?> <div class="col-lg-3"> <em class="eltdf-field-description"><?php echo esc_html( $label ); ?></em> <p class="eltdf-field field switch" data-option-name="<?php echo esc_attr( $name ); ?>" data-option-type="checkbox"> <label class="cb-enable<?php if ( musea_elated_option_get_value( $name ) == "yes" ) { echo " selected"; } ?>" data-value="yes"><span><?php esc_html_e( 'Yes', 'musea' ) ?></span></label> <label class="cb-disable<?php if ( musea_elated_option_get_value( $name ) == "no" ) { echo " selected"; } ?>" data-value="no"><span><?php esc_html_e( 'No', 'musea' ) ?></span></label> <input type="checkbox" id="checkbox" class="checkbox" name="<?php echo esc_attr( $name ); ?>_yesno" value="yes"<?php if ( musea_elated_option_get_value( $name ) == "yes" ) { echo " selected"; } ?>/> <input type="hidden" class="checkboxhidden_yesno" name="<?php echo esc_attr( $name ); ?>" value="<?php echo esc_attr( musea_elated_option_get_value( $name ) ); ?>"/> </p> </div> <?php } }