/**
  * Constructor
  *
  * @since	1.4
  */
 function __construct($settings, $owner)
 {
     parent::__construct($settings, $owner);
     add_action('admin_enqueue_scripts', array($this, 'enqueueSlider'));
     add_action('customize_controls_enqueue_scripts', array($this, 'enqueueSlider'));
     add_action('admin_head', array(__CLASS__, 'createSliderScript'));
 }
 /**
  * Constructor
  *
  * @return	void
  * @since	1.5
  */
 function __construct($settings, $owner)
 {
     parent::__construct($settings, $owner);
     add_filter('tf_generate_css_upload_' . $this->getOptionNamespace(), array($this, 'generateCSS'), 10, 2);
     add_action('tf_livepreview_pre_' . $this->getOptionNamespace(), array($this, 'preLivePreview'), 10, 3);
     add_action('tf_livepreview_post_' . $this->getOptionNamespace(), array($this, 'postLivePreview'), 10, 3);
 }
 /**
  * Constructor
  *
  * @param array  $settings Option settings
  * @param string $owner    Namespace
  *
  * @since    1.9.3
  */
 function __construct($settings, $owner)
 {
     parent::__construct($settings, $owner);
     tf_add_action_once('admin_enqueue_scripts', array($this, 'load_select_scripts'));
     tf_add_action_once('customize_controls_enqueue_scripts', array($this, 'load_select_scripts'));
     tf_add_action_once('admin_head', array($this, 'init_select_script'));
     tf_add_action_once('customize_controls_print_footer_scripts', array($this, 'init_select_script'));
 }
 public function createOption($settings)
 {
     if (!apply_filters('tf_create_option_continue_' . $this->owner->owner->optionNamespace, true, $settings)) {
         return null;
     }
     $obj = TitanFrameworkOption::factory($settings, $this);
     $this->options[] = $obj;
     do_action('tf_create_option_' . $this->owner->owner->optionNamespace, $obj);
     return $obj;
 }
 /**
  * Constructor
  *
  * @return	void
  * @since	1.4
  */
 function __construct($settings, $owner)
 {
     parent::__construct($settings, $owner);
     add_action('admin_enqueue_scripts', array($this, "loadAdminScripts"));
     add_action('customize_controls_enqueue_scripts', array($this, 'loadAdminScripts'));
     add_action('admin_head', array(__CLASS__, 'createFontScript'));
     add_action('tf_create_option_' . $this->getOptionNamespace(), array($this, "rememberGoogleFonts"));
     add_action('wp_enqueue_scripts', array($this, "enqueueGooglefonts"));
     add_filter('tf_generate_css_font_' . $this->getOptionNamespace(), array($this, 'generateCSS'), 10, 2);
 }
 /**
  * Constructor
  *
  * @since	1.4
  */
 function __construct($settings, $owner)
 {
     parent::__construct($settings, $owner);
     add_action('admin_enqueue_scripts', array($this, 'enqueueDatepicker'));
     add_action('customize_controls_enqueue_scripts', array($this, 'enqueueDatepicker'));
     add_action('admin_head', array(__CLASS__, 'createCalendarScript'));
     if (empty(self::$date_epoch)) {
         self::$date_epoch = date('Y-m-d', 0);
     }
 }
 public function createOption($settings)
 {
     $obj = TitanFrameworkOption::factory($settings, $this);
     // $obj = new TitanFrameworkOption( $settings, $this );
     $this->options[] = $obj;
     if (!empty($obj->settings['id'])) {
         $this->owner->optionsUsed[$obj->settings['id']] = $obj;
     }
     do_action('tf_create_option', $obj);
     return $obj;
 }
 /**
  * Constructor
  *
  * @since	1.4
  */
 function __construct($settings, $owner)
 {
     if (defined('WP_DEBUG')) {
         if (WP_DEBUG == true) {
             // Warn about deprecation, refer to `font` option
             TitanFramework::displayFrameworkError(sprintf(__('%s has been deprecated and will be removed in version %s! Please use %s instead to avoid errors in the future.', TF_I18NDOMAIN), '<code>select-googlefont</code>', '<code>1.5</code>', '<code>font</code>'));
         }
     }
     parent::__construct($settings, $owner);
     add_filter('tf_generate_css_select-googlefont_' . $this->getOptionNamespace(), array($this, 'generateCSS'), 10, 2);
 }
 /**
  * Constructor
  *
  * @since	1.3
  */
 function __construct($settings, $owner)
 {
     parent::__construct($settings, $owner);
     add_action('admin_enqueue_scripts', array($this, "loadAdminScripts"));
     add_action('customize_controls_enqueue_scripts', array($this, 'loadAdminScripts'));
     // CSS generation for CSS code langs
     add_filter('tf_generate_css_code_' . $this->getOptionNamespace(), array($this, "generateCSSCode"), 10, 2);
     add_filter('wp_head', array($this, "printCSSForPagesAndPosts"), 100);
     // JS inclusion for Javascript code langs
     add_filter('wp_footer', array($this, "printJS"), 100);
     add_filter('wp_footer', array($this, "printJSForPagesAndPosts"), 101);
 }
 /**
  * Constructor
  *
  * @return	void
  * @since	1.4
  */
 function __construct($settings, $owner)
 {
     parent::__construct($settings, $owner);
     tf_add_action_once('admin_enqueue_scripts', array($this, 'loadAdminScripts'));
     tf_add_action_once('customize_controls_enqueue_scripts', array($this, 'loadAdminScripts'));
     tf_add_action_once('admin_head', array(__CLASS__, 'createFontScript'));
     tf_add_action_once('wp_enqueue_scripts', array($this, 'enqueueGooglefonts'));
     add_filter('tf_generate_css_font_' . $this->getOptionNamespace(), array($this, 'generateCSS'), 10, 2);
     // Customizer preview handling
     tf_add_action_once('tf_generate_customizer_preview_js', array($this, 'generateCustomizerPreviewJS'));
     tf_add_filter_once('tf_generate_customizer_preview_css_' . $this->getOptionNamespace(), array($this, 'generateCustomizerPreviewCSS'));
     if ($this->settings['enqueue']) {
         self::$optionsToEnqueue[] = $this;
     }
 }
 /**
  * Creates the options contained in the group. Mimics how Admin pages
  * create options.
  *
  * @return void
  */
 public function init_group_options()
 {
     if (!empty($this->settings['options'])) {
         if (is_array($this->settings['options'])) {
             foreach ($this->settings['options'] as $settings) {
                 if (!apply_filters('tf_create_option_continue_' . $this->getOptionNamespace(), true, $settings)) {
                     continue;
                 }
                 $obj = TitanFrameworkOption::factory($settings, $this->owner);
                 $this->options[] = $obj;
                 do_action('tf_create_option_' . $this->getOptionNamespace(), $obj);
             }
         }
     }
 }
 function __construct($settings, $owner)
 {
     parent::__construct($settings, $owner);
     add_action('tf_livepreview_pre_' . $this->getOptionNamespace(), array($this, 'preLivePreview'), 10, 3);
 }
 function __construct($settings, $owner)
 {
     parent::__construct($settings, $owner);
     add_action("admin_enqueue_scripts", array($this, 'enqueueScripts'));
 }
 /**
  * Constructor
  *
  * @return	void
  * @since	1.5
  */
 function __construct($settings, $owner)
 {
     parent::__construct($settings, $owner);
     add_filter('tf_generate_css_upload_' . $this->getOptionNamespace(), array($this, 'generateCSS'), 10, 2);
 }
 function __construct($settings, $owner)
 {
     parent::__construct($settings, $owner);
     add_action('tf_livepreview_pre', array($this, 'preLivePreview'), 10, 3);
 }
 function __construct($settings, $owner)
 {
     parent::__construct($settings, $owner);
     tf_add_action_once('admin_enqueue_scripts', array($this, 'enqueueColorPickerScript'));
     tf_add_action_once('admin_footer', array($this, 'startColorPicker'));
 }
 function __construct($settings, $owner)
 {
     parent::__construct($settings, $owner);
 }
 /**
  * Constructor, fixes the settings to allow for multiple ajax buttons in a single option
  *
  * @param	$settings	Array	Option settings
  * @param	$owner		Object	The container of the option
  * @return	void
  */
 function __construct($settings, $owner)
 {
     parent::__construct($settings, $owner);
     add_action('admin_head', array(__CLASS__, 'createAjaxScript'));
     // Adjust the settings
     foreach ($this->defaultSecondarySettings as $key => $default) {
         if (!is_array($this->settings[$key])) {
             $this->settings[$key] = array($this->settings[$key]);
         }
     }
     while (count($this->settings['label']) < count($this->settings['action'])) {
         $this->settings['label'][] = $this->settings['label'][count($this->settings['label']) - 1];
     }
     while (count($this->settings['class']) < count($this->settings['action'])) {
         $this->settings['class'][] = 'button-secondary';
     }
     while (count($this->settings['wait_label']) < count($this->settings['action'])) {
         $this->settings['wait_label'][] = $this->settings['wait_label'][count($this->settings['wait_label']) - 1];
     }
     while (count($this->settings['error_label']) < count($this->settings['action'])) {
         $this->settings['error_label'][] = $this->settings['error_label'][count($this->settings['error_label']) - 1];
     }
     while (count($this->settings['success_label']) < count($this->settings['action'])) {
         $this->settings['success_label'][] = $this->settings['success_label'][count($this->settings['success_label']) - 1];
     }
     while (count($this->settings['success_callback']) < count($this->settings['action'])) {
         $this->settings['success_callback'][] = '';
     }
     while (count($this->settings['error_callback']) < count($this->settings['action'])) {
         $this->settings['error_callback'][] = __('Something went wrong', TF_I18NDOMAIN);
     }
     foreach ($this->settings['label'] as $i => $label) {
         if (empty($label)) {
             $this->settings['label'][$i] = __('Click me', TF_I18NDOMAIN);
         }
     }
     foreach ($this->settings['wait_label'] as $i => $label) {
         if (empty($label)) {
             $this->settings['wait_label'][$i] = __('Please wait...', TF_I18NDOMAIN);
         }
     }
     foreach ($this->settings['error_label'] as $i => $label) {
         if (empty($label)) {
             $this->settings['error_label'][$i] = $this->settings['label'][$i];
         }
     }
     foreach ($this->settings['success_label'] as $i => $label) {
         if (empty($label)) {
             $this->settings['success_label'][$i] = $this->settings['label'][$i];
         }
     }
     /**
      * Create ajax handlers for security and last resort success returns
      */
     foreach ($this->settings['action'] as $i => $action) {
         if (!empty($action)) {
             add_action('wp_ajax_' . $action, array($this, 'ajaxSecurityChecker'), 1);
             add_action('wp_ajax_' . $action, array($this, 'ajaxLastSuccess'), 99999);
         }
     }
 }
Exemple #19
0
 public function insertOptionBefore($settings, $index = null, $overwrite = false)
 {
     if (is_null($index)) {
         return $this->createOption($settings);
     }
     if (!apply_filters('tf_create_option_continue_' . $this->owner->optionNamespace, true, $settings)) {
         return null;
     }
     $obj = TitanFrameworkOption::factory($settings, $this);
     $count = count($this->options);
     if (!$overwrite) {
         for ($i = $count - 1; $i >= $index; $i--) {
             $this->options[$i + 1] = $this->options[$i];
         }
     }
     $this->options[$index] = $obj;
     do_action('tf_create_option_' . $this->owner->optionNamespace, $obj);
     return $obj;
 }
 /**
  * Store Subsection
  *
  * @return  void
  */
 public function addSubSection($settings)
 {
     $this->subID = $settings['id'];
     $settings['capability'] = 'edit_theme_options';
     if (!apply_filters('tf_create_option_continue_' . $this->owner->optionNamespace, true, $settings)) {
         return null;
     }
     $objx = TitanFrameworkOption::factory($settings, $this);
     $this->subSec[] = $objx;
     do_action('tf_create_option_' . $this->owner->optionNamespace, $objx);
     return $objx;
 }
 /**
  * Constructor
  *
  * @since    1.7.1
  *
  * @param array  $settings Option settings
  * @param string $owner
  */
 function __construct($settings, $owner)
 {
     parent::__construct($settings, $owner);
     add_action('admin_init', array($this, 'checkUpdates'), 10, 0);
     add_action('tf_create_option_' . $this->getOptionNamespace(), array($this, 'activateLicense'));
 }
 /**
  * Constructor
  *
  * @return	void
  * @since	1.7.1
  */
 function __construct($settings, $owner)
 {
     parent::__construct($settings, $owner);
     add_action('tf_create_option_' . $this->getOptionNamespace(), array($this, "activateLicense"));
 }