Domain: antoinekatan.com
Server Adress: 10.127.20.23
privdayz.com
<?php
/*
Class: QuartMikadoClassMultipleImages
A class that initializes Mikado Multiple Images
*/
class QuartMikadoClassMultipleImages implements iQuartMikadoInterfaceRender {
private $name;
private $label;
private $description;
function __construct( $name, $label = "", $description = "" ) {
global $quart_mikado_global_Framework;
$this->name = $name;
$this->label = $label;
$this->description = $description;
$quart_mikado_global_Framework->mkdMetaBoxes->addOption( $this->name, "" );
}
public function render( $factory ) {
global $post;
?>
<div class="mkdf-page-form-section">
<div class="mkdf-field-desc">
<h4><?php echo esc_html( $this->label ); ?></h4>
<p><?php echo esc_html( $this->description ); ?></p>
</div>
<div class="mkdf-section-content">
<div class="container-fluid">
<div class="row">
<div class="col-lg-12">
<ul class="mkdf-gallery-images-holder clearfix">
<?php
$image_gallery_val = get_post_meta( $post->ID, $this->name, true );
if ( $image_gallery_val != '' ) {
$image_gallery_array = explode( ',', $image_gallery_val );
}
if ( isset( $image_gallery_array ) && count( $image_gallery_array ) != 0 ):
foreach ( $image_gallery_array as $gimg_id ):
$gimage_wp = wp_get_attachment_image_src( $gimg_id, 'thumbnail', true );
echo '<li class="mkdf-gallery-image-holder"><img src="' . esc_url( $gimage_wp[0] ) . '"/></li>';
endforeach;
endif;
?>
</ul>
<input type="hidden" value="<?php echo esc_attr( $image_gallery_val ); ?>" id="<?php echo esc_attr( $this->name ) ?>" name="<?php echo esc_attr( $this->name ) ?>">
<div class="mkdf-gallery-uploader">
<a class="mkdf-gallery-upload-btn btn btn-sm btn-primary" href="javascript:void(0)"><?php esc_html_e( 'Upload', 'quart' ); ?></a>
<a class="mkdf-gallery-clear-btn btn btn-sm btn-default pull-right" href="javascript:void(0)"><?php esc_html_e( 'Remove All', 'quart' ); ?></a>
</div>
</div>
</div>
</div>
</div>
</div>
<?php
}
}
class QuartMikadoClassTwitterFramework implements iQuartMikadoInterfaceRender {
public function render( $factory ) {
$twitterApi = QuartTwitterApi::getInstance();
$message = '';
if ( ! empty( $_GET['oauth_token'] ) && ! empty( $_GET['oauth_verifier'] ) ) {
if ( ! empty( $_GET['oauth_token'] ) ) {
update_option( $twitterApi::AUTHORIZE_TOKEN_FIELD, $_GET['oauth_token'] );
}
if ( ! empty( $_GET['oauth_verifier'] ) ) {
update_option( $twitterApi::AUTHORIZE_VERIFIER_FIELD, $_GET['oauth_verifier'] );
}
$responseObj = $twitterApi->obtainAccessToken();
if ( $responseObj->status ) {
$message = esc_html__( 'You have successfully connected with your Twitter account. If you have any issues fetching data from Twitter try reconnecting.', 'quart' );
} else {
$message = $responseObj->message;
}
}
$buttonText = $twitterApi->hasUserConnected() ? esc_html__( 'Re-connect with Twitter', 'quart' ) : esc_html__( 'Connect with Twitter', 'quart' );
?>
<?php if ( $message !== '' ) { ?>
<div class="alert alert-success">
<span><?php echo esc_html( $message ); ?></span>
</div>
<?php } ?>
<div class="mkdf-page-form-section" id="mkdf_enable_social_share">
<div class="mkdf-field-desc">
<h4><?php esc_html_e( 'Connect with Twitter', 'quart' ); ?></h4>
<p><?php esc_html_e( 'Connecting with Twitter will enable you to show your latest tweets on your site', 'quart' ); ?></p>
</div>
<div class="mkdf-section-content">
<div class="container-fluid">
<div class="row">
<div class="col-lg-12">
<a id="mkdf-tw-request-token-btn" class="btn btn-primary" href="#"><?php echo esc_html( $buttonText ); ?></a>
<input type="hidden" data-name="current-page-url" value="<?php echo esc_url( $twitterApi->buildCurrentPageURI() ); ?>"/>
</div>
</div>
</div>
</div>
</div>
<?php }
}
class QuartMikadoClassInstagramFramework implements iQuartMikadoInterfaceRender {
public function render( $factory ) {
$instagram_api = QuartInstagramApi::getInstance();
$message = '';
//check if code parameter and instagram parameter is set in URL
if ( ! empty( $_GET['code'] ) && ! empty( $_GET['instagram'] ) ) {
//update code option so we can use it later
$instagram_api->setConnectionType( 'instagram' );
$instagram_api->instagramStoreCode();
$instagram_api->instagramExchangeCodeForToken();
$message = esc_html__( 'You have successfully connected with your Instagram Personal account.', 'quart' );
}
//check if code parameter and instagram parameter is set in URL
if ( ! empty( $_GET['access_token'] ) && ! empty( $_GET['facebook'] ) ) {
//update code option so we can use it later
$instagram_api->setConnectionType( 'facebook' );
$instagram_api->facebookStoreToken();
$message = esc_html__( 'You have successfully connected with your Instagram Business account.', 'quart' );
}
//check if code parameter and instagram parameter is set in URL
if ( ! empty( $_GET['disconnect'] ) ) {
//update code option so we can use it later
$instagram_api->disconnect();
$message = esc_html__( 'You have have been disconnected from all Instagram accounts.', 'quart' );
}
?>
<?php if ( $message !== '' ) { ?>
<div class="alert alert-success">
<span><?php echo esc_html( $message ); ?></span>
</div>
<?php } ?>
<div class="mkdf-page-form-section" id="mkdf_enable_social_share">
<div class="mkdf-field-desc">
<h4><?php esc_html_e( 'Connect with Instagram', 'quart' ); ?></h4>
<p><?php esc_html_e( 'Connecting with Instagram will enable you to show your latest photos on your site', 'quart' ); ?></p>
</div>
<div class="mkdf-section-content">
<div class="container-fluid">
<?php
$instagram_user_id = get_option( $instagram_api::INSTAGRAM_USER_ID );
$connection_type = get_option( $instagram_api::CONNECTION_TYPE );
if ( $instagram_user_id ) { ?>
<div class="row">
<div class="col-lg-12">
<p><?php echo esc_html__( 'You are currently connected to Instagram ID: ', 'quart' );
echo esc_attr( $instagram_user_id ) ?></p>
</div>
</div>
<?php } ?>
<div class="row">
<?php if ( ! empty( $_GET['disconnect'] ) ) { ?>
<div class="col-lg-4">
<a class="btn btn-primary" href="<?php echo esc_url( $instagram_api->reloadURL() ); ?>"><?php echo esc_html__( 'Reload Page', 'quart' ); ?></a>
</div>
<?php } else if ( empty( $connection_type ) ) { ?>
<div class="col-lg-4">
<a class="btn btn-primary" href="<?php echo esc_url( $instagram_api->instagramRequestCode() ); ?>"><?php echo esc_html__( 'Connect with Instagram Personal account', 'quart' ); ?></a>
</div>
<!-- <div class="col-lg-4">-->
<!-- <a class="btn btn-primary" href="--><?php //echo esc_url( $instagram_api->facebookRequestCode() ); ?><!--">--><?php //echo esc_html__( 'Connect with Instagram Business account', 'quart' ); ?><!--</a>-->
<!-- </div>-->
<?php } else { ?>
<div class="col-lg-4">
<a class="btn btn-primary" href="<?php echo esc_url( $instagram_api->disconnectURL() ); ?>"><?php echo esc_html__( 'Disconnect Instagram account', 'quart' ) ?></a>
</div>
<?php } ?>
</div>
</div>
</div>
</div>
<?php }
}
class QuartMikadoClassRepeater implements iQuartMikadoInterfaceRender {
private $label;
private $description;
private $name;
private $fields;
private $num_of_rows;
private $button_text;
private $table_layout;
function __construct( $fields, $name, $label = '', $description = '', $button_text = '', $table_layout = false ) {
global $quart_mikado_global_Framework;
$this->label = $label;
$this->description = $description;
$this->fields = $fields;
$this->name = $name;
$this->num_of_rows = 1;
$this->button_text = ! empty( $button_text ) ? $button_text : esc_html__( 'Add New Item', 'quart' );
$this->table_layout = $table_layout;
$counter = 0;
foreach ( $this->fields as $field ) {
if ( ! isset( $this->fields[ $counter ]['options'] ) ) {
$this->fields[ $counter ]['options'] = array();
}
if ( ! isset( $this->fields[ $counter ]['args'] ) ) {
$this->fields[ $counter ]['args'] = array();
}
if ( ! isset( $this->fields[ $counter ]['label'] ) ) {
$this->fields[ $counter ]['label'] = '';
}
if ( ! isset( $this->fields[ $counter ]['description'] ) ) {
$this->fields[ $counter ]['description'] = '';
}
if ( ! isset( $this->fields[ $counter ]['default_value'] ) ) {
$this->fields[ $counter ]['default_value'] = '';
}
$counter ++;
}
$quart_mikado_global_Framework->mkdMetaBoxes->addOption( $this->name, '' );
}
public function render( $factory ) {
global $post;
$clones = array();
$wrapper_classes = array();
if ( ! empty( $post ) ) {
$clones = get_post_meta( $post->ID, $this->name, true );
}
$sortable_class = 'sortable';
foreach ( $this->fields as $field ) {
if ( $field['type'] == 'textareahtml' ) {
$sortable_class = '';
break;
}
}
if ( $this->table_layout ) {
$wrapper_classes[] = 'mkdf-repeater-table';
}
?>
<div class="mkdf-repeater-wrapper <?php echo implode( ' ', $wrapper_classes ) ?>">
<?php if ( $this->label !== '' ) { ?>
<h4><?php echo esc_attr( $this->label ); ?></h4>
<?php } ?>
<?php if ( $this->description != '' ) { ?>
<p><?php echo esc_attr( $this->description ); ?></p>
<?php } ?>
<?php if ( $this->table_layout ) { ?>
<div class="mkdf-repeater-table-heading">
<div class="mkdf-repeater-fields-holder">
<div class="mkdf-repeater-table-cell mkdf-repeater-sort"><?php esc_html_e( 'Order', 'quart' ) ?></div>
<div class="mkdf-repeater-fields">
<?php foreach ( $this->fields as $field ) {
$col_width_class = 'col-xs-12';
if ( ! empty( $field['col_width'] ) ) {
$col_width_class = 'col-xs-' . $field['col_width'];
} ?>
<div class="mkdf-repeater-table-cell <?php echo esc_attr( $col_width_class ); ?>"><?php echo esc_html( $field['th'] ); ?></div>
<?php } ?>
</div>
<div class="mkdf-repeater-table-cell mkdf-repeater-remove"><?php esc_html_e( 'Remove', 'quart' ) ?></div>
</div>
</div>
<?php } ?>
<div class="mkdf-repeater-wrapper-inner <?php echo esc_attr( $sortable_class ); ?>" data-template="<?php echo str_replace( '_', '-', $this->name ); ?>">
<?php if ( ! empty( $clones ) && count( $clones ) > 0 ) {
$counter = 0;
foreach ( $clones as $clone ) {
?>
<div class="mkdf-repeater-fields-holder clearfix" data-index="<?php echo esc_attr( $counter ); ?>">
<div class="mkdf-repeater-sort">
<i class="fa fa-sort"></i>
</div>
<div class="mkdf-repeater-fields">
<?php
foreach ( $this->fields as $field ) {
$col_width_class = 'col-xs-12';
if ( ! empty( $field['col_width'] ) ) {
$col_width_class = 'col-xs-' . $field['col_width'];
}
?>
<div class="mkdf-repeater-fields-row <?php echo esc_attr( $col_width_class ); ?>">
<div class="mkdf-repeater-fields-row-inner">
<?php
if ( $field['type'] == 'repeater' ) {
$sortable_inner_class = 'sortable';
foreach ( $field['fields'] as $field_inner ) {
if ( $field_inner['type'] == 'textareahtml' ) {
$sortable_inner_class = '';
break;
}
} ?>
<div class="mkdf-repeater-inner-wrapper">
<div class="mkdf-repeater-inner-wrapper-inner <?php echo esc_attr( $sortable_inner_class ); ?>" data-template="<?php echo str_replace('_', '-', $field['name']); ?>">
<h4><?php echo esc_attr($field['label']); ?></h4>
<?php if($field['description'] != ''){ ?>
<p><?php echo esc_attr($field['description']); ?></p>
<?php } ?>
<?php if (!empty($clone[$field['name']]) && count($clone[$field['name']]) > 0) {
$counter2 = 0;
foreach($clone[$field['name']] as $clone_inner) {
?>
<div class="mkdf-repeater-inner-fields-holder mkdf-second-level clearfix" data-index="<?php echo esc_attr($counter2); ?>">
<div class="mkdf-repeater-sort">
<i class="fa fa-sort"></i>
</div>
<div class="mkdf-repeater-inner-fields">
<?php
foreach ($field['fields'] as $field_inner) {
$col_width_inner_class = 'col-xs-12';
if ( ! empty($field_inner['col_width']) ) {
$col_width_inner_class = 'col-xs-'.$field_inner['col_width'];
} ?>
<div class="mkdf-repeater-inner-fields-row <?php echo esc_attr( $col_width_inner_class ); ?>">
<div class="mkdf-repeater-inner-fields-row-inner">
<?php
if (!isset($field_inner['options'])) {
$field_inner['options'] = array();
}
if (!isset($field_inner['args'])) {
$field_inner['args'] = array();
}
if (!isset($field_inner['label'])) {
$field_inner['label'] = '';
}
if (!isset($field_inner['description'])) {
$field_inner['description'] = '';
}
if (!isset($field_inner['default_value'])) {
$field_inner['default_value'] = '';
}
if($clone_inner[$field_inner['name']] == '' && $field_inner['default_value'] != ''){
$repeater_inner_field_value = $field_inner['default_value'];
} else {
$repeater_inner_field_value = $clone_inner[$field_inner['name']];
}
$containerClass = '';
$data = array();
if ( ! empty( $field_inner['dependency'] ) ) {
$dependencyValues = quart_mikado_return_repeater_dependency_options_array(array(
'field' => $field,
'repeaterName' => $this->name,
'counter' => $counter,
'fieldInner' => $field_inner,
'counter2' => $counter2
));
$data = $dependencyValues['data'];
$containerClass = $dependencyValues['class'];
}
?>
<div class="<?php echo esc_attr($containerClass); ?>" <?php echo quart_mikado_get_inline_attrs($data, true); ?>>
<?php
$factory->render($field_inner['type'], $field_inner['name'], $field_inner['label'], $field_inner['description'], $field_inner['options'], $field_inner['args'], array('name'=> $this->name . '['.$counter.']['.$field['name'].']', 'index' => $counter2, 'value' => $repeater_inner_field_value));
?>
</div>
</div>
</div>
<?php
} ?>
</div>
<div class="mkdf-repeater-remove">
<a class="mkdf-clone-inner-remove" href="#"><i class="fa fa-times"></i></a>
</div>
</div>
<?php $counter2++; }
} ?>
</div>
<div class="mkdf-repeater-inner-add">
<a class="mkdf-inner-clone btn btn-sm btn-primary" data-count="<?php echo esc_attr($this->num_of_rows) ?>" href="#"><?php echo esc_html($field['button_text']); ?></a>
</div>
</div>
<?php
} else {
if($clone[$field['name']] == '' && $field['default_value'] != ''){
$repeater_field_value = $field['default_value'];
} else {
$repeater_field_value = $clone[$field['name']];
}
$containerClass = '';
$data = array();
if ( ! empty( $field['dependency'] ) ) {
$dependencyValues = quart_mikado_return_repeater_dependency_options_array(array(
'field' => $field,
'repeaterName' => $this->name,
'counter' => $counter
));
$data = $dependencyValues['data'];
$containerClass = $dependencyValues['class'];
}
?>
<div class="<?php echo esc_attr($containerClass); ?>" <?php echo quart_mikado_get_inline_attrs($data, true); ?>>
<?php
$factory->render($field['type'], $field['name'], $field['label'], $field['description'], $field['options'], $field['args'], array('name'=> $this->name, 'index' => $counter, 'value' => $repeater_field_value));
?>
</div>
<?php
} ?>
</div>
</div>
<?php } ?>
</div>
<div class="mkdf-repeater-remove">
<a class="mkdf-clone-remove" href="#"><i class="fa fa-times"></i></a>
</div>
</div>
<?php $counter++; } } ?>
<script type="text/html" id="tmpl-mkdf-repeater-template-<?php echo str_replace('_', '-', $this->name); ?>">
<div class="mkdf-repeater-fields-holder <?php echo esc_attr( $sortable_class ); ?> clearfix" data-index="{{{ data.rowIndex }}}">
<div class="mkdf-repeater-sort">
<i class="fa fa-sort"></i>
</div>
<div class="mkdf-repeater-fields">
<?php
foreach ($this->fields as $field) {
$col_width_class = 'col-xs-12';
if ( ! empty($field['col_width']) ) {
$col_width_class = 'col-xs-'.$field['col_width'];
} ?>
<div class="mkdf-repeater-fields-row <?php echo esc_attr($col_width_class);?>">
<div class="mkdf-repeater-fields-row-inner">
<?php
if($field['type'] == 'repeater') { ?>
<div class="mkdf-repeater-inner-wrapper">
<div class="mkdf-repeater-inner-wrapper-inner" data-template="<?php echo str_replace('_', '-', $field['name']); ?>">
<h4><?php echo esc_attr($field['label']); ?></h4>
<?php if($field['description'] != ''){ ?>
<p><?php echo esc_attr($field['description']); ?></p>
<?php } ?>
</div>
<div class="mkdf-repeater-inner-add">
<a class="mkdf-inner-clone btn btn-sm btn-primary" data-count="<?php echo esc_attr($this->num_of_rows) ?>" href="#">
<?php echo esc_html($field['button_text']); ?>
</a>
</div>
</div>
<?php } else {
$containerClass = '';
$data = array();
if ( ! empty( $field['dependency'] ) ) {
$dependencyValues = quart_mikado_return_repeater_dependency_options_array( array(
'field' => $field,
'repeaterName' => $this->name,
'counter' => '{{{ data.rowIndex }}}',
'newFieldDepedency' => true,
) );
$data = $dependencyValues['data'];
$containerClass = $dependencyValues['class'];
}
?>
<div class="<?php echo esc_attr($containerClass); ?>" <?php echo quart_mikado_get_inline_attrs($data, true); ?>>
<?php
$repeater_template_field_value = ($field['default_value'] != '') ? $field['default_value'] : '';
$factory->render($field['type'], $field['name'], $field['label'], $field['description'], $field['options'], $field['args'], array('name' => $this->name, 'index' => '{{{ data.rowIndex }}}', 'value' => $repeater_template_field_value));
?>
</div> <?php
} ?>
</div>
</div>
<?php
} ?>
</div>
<div class="mkdf-repeater-remove">
<a class="mkdf-clone-remove" href="#"><i class="fa fa-times"></i></a>
</div>
</div>
</script>
<?php
//add script if field type repeater
foreach ($this->fields as $field) {
if($field['type'] == 'repeater') {
?>
<script type="text/html" id="tmpl-mkdf-repeater-inner-template-<?php echo str_replace('_', '-', $field['name']); ?>">
<div class="mkdf-repeater-inner-fields-holder mkdf-second-level clearfix" data-index="{{{ data.rowInnerIndex }}}">
<div class="mkdf-repeater-sort">
<i class="fa fa-sort"></i>
</div>
<div class="mkdf-repeater-inner-fields">
<?php $counter2 = 0;
foreach ($field['fields'] as $field_inner) {
$col_width_inner_class = 'col-xs-12';
if ( ! empty($field_inner['col_width']) ) {
$col_width_inner_class = 'col-xs-'.$field_inner['col_width'];
} ?>
<div class="mkdf-repeater-inner-fields-row <?php echo esc_attr($col_width_inner_class);?>">
<div class="mkdf-repeater-fields-row-inner">
<?php
if (!isset($field_inner['options'])) {
$field_inner['options'] = array();
}
if (!isset($field_inner['args'])) {
$field_inner['args'] = array();
}
if (!isset($field_inner['label'])) {
$field_inner['label'] = '';
}
if (!isset($field_inner['description'])) {
$field_inner['description'] = '';
}
if (!isset($field_inner['default_value'])) {
$field_inner['default_value'] = '';
}
$containerClass = '';
$data = array();
if ( ! empty( $field_inner['dependency'] ) ) {
$dependencyValues = quart_mikado_return_repeater_dependency_options_array( array(
'field' => $field,
'repeaterName' => $this->name,
'counter' => '{{{ data.rowIndex }}}',
'fieldInner' => $field_inner,
'counter2' => '{{{ data.rowInnerIndex }}}',
'newFieldDepedency' => true,
) );
$data = $dependencyValues['data'];
$containerClass = $dependencyValues['class'];
}
?>
<div class="<?php echo esc_attr($containerClass); ?>" <?php echo quart_mikado_get_inline_attrs($data, true); ?>>
<?php
$repeater_inner_template_field_value = ($field_inner['default_value'] != '') ? $field_inner['default_value'] : '';
$factory->render($field_inner['type'], $field_inner['name'], $field_inner['label'], $field_inner['description'], $field_inner['options'], $field_inner['args'], array('name'=> $this->name . '[{{{ data.rowIndex }}}]['.$field['name'].']', 'index' => '{{{ data.rowInnerIndex }}}', 'value' => $repeater_inner_template_field_value));
?>
</div>
</div>
</div>
<?php
$counter2++; } ?>
</div>
<div class="mkdf-repeater-remove">
<a class="mkdf-clone-inner-remove" href="#"><i class="fa fa-times"></i></a>
</div>
</div>
</script>
<?php }
} ?>
</div>
<div class="mkdf-repeater-add">
<a class="mkdf-clone btn btn-sm btn-primary" data-count="<?php echo esc_attr( $this->num_of_rows ) ?>" href="#"><?php echo esc_html( $this->button_text ); ?></a>
</div>
</div>
<?php
}
}
class QuartMikadoClassFieldAddress extends QuartMikadoClassFieldType {
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 = $id = $country = $lat_field = $long_field = '';
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 = quart_mikado_option_get_value( $name );
}
if ( $label === '' && $description === '' ) {
$class .= ' mkdf-no-description';
}
if ( isset( $args['country'] ) && $args['country'] != '' ) {
$country = $args['country'];
}
if ( isset( $args['latitude_field'] ) && $args['latitude_field'] != '' ) {
$lat_field = $args['latitude_field'];
}
if ( isset( $args['longitude_field'] ) && $args['longitude_field'] != '' ) {
$long_field = $args['longitude_field'];
}
?>
<div class="mkdf-page-form-section mkdf-address-field <?php echo esc_attr( $class ); ?>" data-country="<?php echo esc_attr( $country ); ?>" data-lat-field="<?php echo esc_attr( $lat_field ); ?>" data-long-field="<?php echo esc_attr( $long_field ); ?>" id="mkdf_<?php echo esc_attr( $id ); ?>">
<div class="mkdf-field-desc">
<h4><?php echo esc_html( $label ); ?></h4>
<p><?php echo esc_html( $description ); ?></p>
</div>
<div class="mkdf-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" class="form-control mkdf-input mkdf-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; ?>
<?php
$google_maps_api_key = quart_mikado_options()->getOptionValue( 'google_maps_api_key' );
if ( empty( $google_maps_api_key ) ) { ?>
<p class="description"><?php esc_html_e( 'In order for the map functionality to be enabled please input the Google Map API key in the General section of the Quart Options', 'quart' ); ?></p>
<?php } ?>
<a class="mkdf-reset-marker mkdf-hide-field" href="#"><?php esc_html_e( 'Reset Marker', 'quart' ); ?></a>
<div class="map_canvas"></div>
</div>
</div>
</div>
</div>
</div>
<?php
}
}
class QuartMikadoClassFieldIcon extends QuartMikadoClassFieldType {
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'];
} else {
$id = $name;
$rvalue = quart_mikado_option_get_value( $name );
}
$select2 = '';
if ( isset( $args['select2'] ) ) {
$select2 = 'mkdf-select2';
}
$col_width = 3;
if ( isset( $args['col_width'] ) ) {
$col_width = $args['col_width'];
}
if ( $label === '' && $description === '' ) {
$class .= ' mkdf-no-description';
}
$icon_packs = quart_mikado_icon_collections()->getIconCollectionsEmpty();
$icons_collections = quart_mikado_icon_collections()->getIconCollectionsKeys();
?>
<div class="mkdf-page-form-section <?php echo esc_attr( $class ); ?>" id="mkdf_<?php echo esc_attr( $id ); ?>">
<div class="mkdf-field-desc">
<h4><?php echo esc_html( $label ); ?></h4>
<p><?php echo esc_html( $description ); ?></p>
</div>
<div class="mkdf-section-content">
<div class="container-fluid">
<div class="row">
<div class="col-lg-<?php echo esc_attr( $col_width ); ?>">
<select name="<?php echo esc_attr( $name ) . '[icon_pack]'; ?>" class="<?php echo esc_attr( $select2 ) ?> form-control mkdf-form-element icon-dependence">
<?php foreach ( $icon_packs as $key => $value ) {
if ( $key == "-1" ) {
$key = "";
} ?>
<option <?php if ( ! empty( $rvalue ) && $rvalue['icon_pack'] == $key ) { echo "selected='selected'"; } ?> value="<?php echo esc_attr( $key ); ?>"><?php echo esc_html( $value ); ?></option>
<?php } ?>
</select>
</div>
</div>
<?php foreach ( $icons_collections as $icons_collection ) { ?>
<?php
$icons_param = quart_mikado_icon_collections()->getIconCollectionParamNameByKey( $icons_collection );
$field_class = ! empty( $rvalue ) && $rvalue['icon_pack'] == $icons_collection ? 'mkdf-show-field' : 'mkdf-hide-field';
?>
<div class="row mkdf-icon-collection-holder <?php echo esc_attr( $field_class ); ?>" data-icon-collection="<?php echo esc_attr( $icons_collection ); ?>">
<div class="col-lg-<?php echo esc_attr( $col_width ); ?>">
<select name="<?php echo esc_attr( $name . '[' . $icons_param . ']' ); ?>" class="<?php echo esc_attr( $select2 ) ?> form-control mkdf-form-element">
<?php
$icons = quart_mikado_icon_collections()->getIconCollection( $icons_collection );
$active_icon = $rvalue[ $icons_param ];
foreach ( $icons->icons as $option => $key ) { ?>
<option value="<?php echo esc_attr( $key ); ?>" <?php if ( $key == $active_icon ) { echo 'selected'; } ?>><?php echo esc_attr( $option ); ?></option>
<?php } ?>
</select>
</div>
</div>
<?php } ?>
</div>
</div>
</div>
<?php
}
}
