| Server IP : 146.59.209.152 / Your IP : 216.73.216.46 Web Server : Apache System : Linux webm005.cluster131.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64 User : infrafs ( 43850) PHP Version : 8.2.29 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/infrafs/bike/wp-content/themes/colibri-wp/inc/src/Customizer/Panel/ |
Upload File : |
<?php
namespace ColibriWP\Theme\Customizer\Panel;
use ColibriWP\Theme\Translations;
use WP_Customize_Panel;
class ColibriPanel extends WP_Customize_Panel {
public $type = 'colibri_panel';
public $footer_buttons = array();
protected function content_template() {
?>
<li class="panel-meta customize-info accordion-section <# if ( ! data.description ) { #> cannot-expand<# } #>">
<button class="customize-panel-back" tabindex="-1"><span
class="screen-reader-text"><?php Translations::escHtmlE( 'back' ); ?></span></button>
<div class="accordion-section-title">
<span class="preview-notice">
<strong class="panel-title">{{ data.title }}</strong>
</span>
<# if ( data.description ) { #>
<button type="button" class="customize-help-toggle dashicons dashicons-editor-help"
aria-expanded="false"><span
class="screen-reader-text"><?php Translations::escHtmlE( 'help' ); ?></span></button>
<# } #>
</div>
<# if ( data.description ) { #>
<div class="description customize-panel-description">
{{{ data.description }}}
</div>
<# } #>
<div class="customize-control-notifications-container"></div>
</li>
<?php
}
public function json() {
$json = parent::json();
$json['footer_buttons'] = $this->footer_buttons;
return $json;
}
}