| Current Path : /home/x/b/o/xbodynamge/namtation/wp-content/ |
| Current File : /home/x/b/o/xbodynamge/namtation/wp-content/class-hestia-generic-notice-section.php.tar |
www/wp-content/themes/hestia/inc/customizer/controls/ui/class-hestia-generic-notice-section.php 0000644 00000005011 15113641554 0032121 0 ustar 00 home/xbodynamge <?php
/**
* Customizer info main class.
*
* @package Hestia
* @since Hestia 1.0
*/
/**
* Pro customizer section.
*
* @since 1.0.0
* @access public
*/
class Hestia_Generic_Notice_Section extends WP_Customize_Section {
/**
* The type of customize section being rendered.
*
* @since 1.0.0
* @access public
* @var string
*/
public $type = 'customizer-notice';
/**
* Label text to output.
*
* @since 1.0.0
* @access public
* @var string
*/
public $section_text = '';
/**
* Plugin slug for which to create install button.
*
* @since 1.0.0
* @access public
* @var string
*/
public $slug = '';
/**
* Hide notice.
*
* @since 1.1.34
* @access public
* @var string
*/
public $hide_notice = false;
/**
* Screen reader text on dismiss button.
*
* @since 1.1.34
* @access public
* @var string
*/
public $button_screenreader = '';
/**
* Control options.
*
* Ex: redirect link after install
*
* @var array
*/
public $options = array();
/**
* Enqueue function.
*/
public function enqueue() {
Hestia_Plugin_Install_Helper::instance()->enqueue_scripts();
}
/**
* Add custom parameters to pass to the JS via JSON.
*
* @since 1.0.0
* @access public
* @return array
*/
public function json() {
$json = parent::json();
$json['section_text'] = $this->section_text;
$json['hide_notice'] = $this->hide_notice;
$json['plugin_install_button'] = $this->create_plugin_install_button( $this->slug, $this->options );
return $json;
}
/**
* Outputs the Underscore.js template.
*
* @since 1.0.0
* @access public
* @return void
*/
protected function render_template() {
?>
<# if ( !data.hide_notice ) { #>
<li id="accordion-section-{{ data.id }}"
class="hestia-notice accordion-section control-section control-section-{{ data.type }} cannot-expand">
<button type="button" class="notice-dismiss" style="z-index: 1;"></button>
<h4 class="accordion-section-title" style="padding-right: 36px">
<# if ( data.section_text ) { #>
{{{data.section_text}}}
<# } #>
<# if ( data.plugin_install_button ) { #>
{{{data.plugin_install_button}}}
<# } #>
</h4>
</li>
<# } #>
<?php
}
/**
* Check plugin state.
*
* @param string $slug plugin slug.
*
* @return bool
*/
public function create_plugin_install_button( $slug, $settings = array() ) {
return Hestia_Plugin_Install_Helper::instance()->get_button_html( $slug, $settings );
}
}