當前位置: 首頁>>代碼示例>>PHP>>正文


PHP TitanFrameworkOption::factory方法代碼示例

本文整理匯總了PHP中TitanFrameworkOption::factory方法的典型用法代碼示例。如果您正苦於以下問題:PHP TitanFrameworkOption::factory方法的具體用法?PHP TitanFrameworkOption::factory怎麽用?PHP TitanFrameworkOption::factory使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在TitanFrameworkOption的用法示例。


在下文中一共展示了TitanFrameworkOption::factory方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: createOption

 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;
 }
開發者ID:gambitph,項目名稱:titan-framework,代碼行數:10,代碼來源:class-admin-tab.php

示例2: createOption

 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;
 }
開發者ID:webkupas,項目名稱:Titan-Framework-Embedding-Demo,代碼行數:11,代碼來源:class-theme-customizer-section.php

示例3: init_group_options

 /**
  * 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);
             }
         }
     }
 }
開發者ID:gambitph,項目名稱:titan-framework,代碼行數:21,代碼來源:class-option-group.php

示例4: insertOptionBefore

 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;
 }
開發者ID:vinhnq1211,項目名稱:funy,代碼行數:19,代碼來源:class-meta-box.php

示例5: addSubSection

 /**
  * 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;
 }
開發者ID:vinhnq1211,項目名稱:funy,代碼行數:17,代碼來源:thim-class-customizer-section.php


注:本文中的TitanFrameworkOption::factory方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。