ru-se.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

SectionSettingControl.php (438B)


      1 <?php
      2 
      3 namespace Materialis\KirkiControls;
      4 
      5 class SectionSettingControl extends \Kirki_Customize_Control
      6 {
      7     public $type = "sectionsetting";
      8 
      9     protected function content_template()
     10     {
     11         ?>
     12             <# if ( data.label ) { #>
     13                 <span class="customize-control-title">{{ data.label }}</span>
     14             <# } #>
     15 			<div class="setting-control-container">
     16             </div>
     17 			<?php
     18     }
     19 }