balmet.com

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

class.pb_redux.php (984B)


      1 <?php
      2 namespace CVEC\classes\vc;
      3 
      4 class CVEC_Redux
      5 {
      6 
      7     public static function init()
      8     {
      9         if (!class_exists('Redux')) {
     10             return;
     11         }
     12 
     13         $redux_framework = \ReduxFrameworkInstances::get_instance($redux_item['option_name']);
     14         Redux::setSection($redux_framework, 
     15         array(
     16             'title' => esc_html__('Combine VC Elementor CSS Options','combine-vc-ele-css'),
     17             'id' => 'cvec_redux_settings',
     18             'desc' => esc_html__('Allows you to customize some settings for Combine VC Elementor CSS.','combine-vc-ele-css'),
     19             'customizer_width' => '400px',
     20             'fields' => 
     21                 array(
     22                     array(
     23                         'id' => 'search_shortcode_header',
     24                         'type' => 'button',
     25                         'title' => esc_html__('Clear Cache','combine-vc-ele-css'),
     26                         'indent' => true
     27                     )
     28                 )
     29         );
     30     }
     31 
     32 }