56 lines
1.7 KiB
PHP
56 lines
1.7 KiB
PHP
<?php
|
|
/**
|
|
* Customizer Builder
|
|
* Image Chooser Field Control
|
|
*
|
|
* @since 2.0
|
|
*/
|
|
namespace SmashBalloon\YouTubeFeed\Builder\Controls;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
class SB_Imagechooser_Control extends SB_Controls_Base {
|
|
|
|
/**
|
|
* Get control type.
|
|
*
|
|
* Getting the Control Type
|
|
*
|
|
* @since 2.0
|
|
* @access public
|
|
*
|
|
* @return string
|
|
*/
|
|
public function get_type() {
|
|
return 'imagechooser';
|
|
}
|
|
|
|
/**
|
|
* Output Control
|
|
*
|
|
*
|
|
* @since 2.0
|
|
* @access public
|
|
*/
|
|
public function get_control_output( $controlEditingTypeModel ) {
|
|
?>
|
|
<div class="sb-control-imagechooser-ctn sby-yt-fs">
|
|
<div class="sby-yt-fs">
|
|
<input type="text" class="sb-control-imagechooser-input sby-yt-fs" :class="checkNotEmpty(<?php echo $controlEditingTypeModel; ?>[control.id]) ? 'sb-control-imagechooser-padding' : ''" v-model="<?php echo $controlEditingTypeModel; ?>[control.id]" :placeholder="control.placeholder ? control.placeholder : <?php echo $controlEditingTypeModel; ?>[control.id]" disabled>
|
|
<div class="sb-control-imagechooser-clear sbi-fb-tltp-parent" v-if="checkNotEmpty(<?php echo $controlEditingTypeModel; ?>[control.id])">
|
|
<div class="sb-control-imagechooser-clear-icon" @click.prevent.default="changeSettingValue(control.id, '')"></div>
|
|
<div class="sbi-fb-tltp-elem"><span>{{genericText.clear.replace(/ /g," ")}}</span></div>
|
|
</div>
|
|
</div>
|
|
<div class="sb-control-imagechooser-btn" @click.prevent.default="imageChooser( control.id )">
|
|
<div v-html="svgIcons['imageChooser']"></div>
|
|
<span v-html="checkNotEmpty(<?php echo $controlEditingTypeModel ?>[control.id]) ? genericText.change : genericText.addImage.replace(/ /g,' ')"></span>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
}
|
|
|
|
}
|