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


PHP Options::__construct方法代碼示例

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


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

示例1: __construct

 /**
  * Constructor
  *
  * @param array $options
  */
 public function __construct($options)
 {
     $this->filters = new Core_ArrayObject();
     $this->validators = new Core_ArrayObject();
     parent::__construct($options, Options::SELF);
     $this->attributes = new Core_ArrayObject();
     $this->errors = new Core_ArrayObject();
     if ($this->form->is_ajaxed && Ajax::get('element') == $this->name) {
         $this->is_ajaxed = TRUE;
     }
 }
開發者ID:romartyn,項目名稱:cogear,代碼行數:16,代碼來源:Abstract.php

示例2: __construct

 /**
  * Конструктор
  * @param string|array|Core_ArrayObject $path
  */
 public function __construct($gears = NULL, $options = array())
 {
     parent::__construct($options);
     if (is_array($gears) or $gears instanceof Core_ArrayObject) {
         // На будущее — возможность закешировать обработку шестерёнок
         //            if ($gears = cogear()->system_cache->get('gears')) {
         //                $this->extend($gears->toArray());
         //            } else {
         $this->load($gears);
         //                cogear()->system_cache->set('gears', $this);
         //            }
     } else {
         if (is_string($gears) && is_dir($gears)) {
             $this->loadDir($gears);
         }
     }
     $this->init();
 }
開發者ID:brussens,項目名稱:cogear2,代碼行數:22,代碼來源:Gears.php

示例3: __construct

 /**
  * Конструктор
  *
  * @param type $file
  * @param type $options
  */
 public function __construct($file, $options = array())
 {
     parent::__construct($options);
     $this->info = new Core_ArrayObject($this->info);
     // Проверяем файл на существование
     if (file_exists($file)) {
         $this->info->file = $file;
         // Получаем параметры изображения
         if ($info = getimagesize($file)) {
             $this->info->width = $info[0];
             $this->info->height = $info[1];
             $this->info->type = $info[2];
             $this->info->mime = $info[3];
             $this->create();
         } else {
             throw new Exception(t('Указанный файл не является изображением: %s', $file));
         }
     } else {
         throw new Exception(t('Изображение не существует: %s', $file));
     }
 }
開發者ID:brussens,項目名稱:cogear2,代碼行數:27,代碼來源:Abstract.php

示例4: __construct

 /**
  * Constructor
  *
  * @param string $text
  * @param array $options
  */
 public function __construct($text, $options = [])
 {
     parent::__construct($options);
     $this->setText($text);
 }
開發者ID:tinpont,項目名稱:pushbox,代碼行數:11,代碼來源:Message.php

示例5: __construct

 public function __construct($label, $options, $show_size = false, $required = true, $false_values = array())
 {
     parent::__construct($label, $options, $required, $false_values);
     $this->show_size = $show_size;
 }
開發者ID:priestd09,項目名稱:Nibble-Framework,代碼行數:5,代碼來源:NibbleForm.class.php

示例6: __construct

 /**
  * Constructor
  *
  * @param string $name Name under which all options are stored
  * @param array $defaults Default options
  * @api
  */
 public function __construct($name, array $defaults = array())
 {
     parent::__construct($name, $defaults);
     // Ensure we're working with the right options on a multisite
     add_action('switch_blog', array($this, '_invalidateOptions'), 10, 0);
 }
開發者ID:zhengxiexie,項目名稱:wordpress,代碼行數:13,代碼來源:WordpressOptions.php

示例7: __construct

 /**
  * Конструктор
  *
  * @param array $options
  */
 public function __construct($options = array())
 {
     parent::__construct($options);
     $this->render && hook($this->render, array($this, 'show'));
 }
開發者ID:brussens,項目名稱:cogear2,代碼行數:10,代碼來源:DDList.php

示例8: __construct

 /**
  * Конструктор
  *
  * @param array $options
  */
 public function __construct($options = array(), $place = 0)
 {
     parent::__construct($options, $place);
 }
開發者ID:brussens,項目名稱:cogear2,代碼行數:9,代碼來源:Handler.php

示例9: __construct

 /**
  * Constructor
  * 
  * @param array $data
  */
 public function __construct($options = NULL, $place = NULL)
 {
     $options && parent::__construct($options, $place);
     $this->object = new Core_ArrayObject();
 }
開發者ID:romartyn,項目名稱:cogear,代碼行數:10,代碼來源:Object.php

示例10: __construct

 public function __construct($label, array $attributes = array())
 {
     parent::__construct($label, $attributes);
 }
開發者ID:birah,項目名稱:Nibble-Forms,代碼行數:4,代碼來源:Select.php

示例11: __construct

 /**
  * Конструктор
  *
  * @param string $name
  * @param array $options
  */
 public function __construct($name, $options = array())
 {
     $options['name'] = $name;
     parent::__construct($options);
 }
開發者ID:brussens,項目名稱:cogear2,代碼行數:11,代碼來源:Region.php

示例12: __construct

 public function __construct(&$xpdo)
 {
     parent::__construct($xpdo);
 }
開發者ID:vgrish,項目名稱:WordPress-to-MODx,代碼行數:4,代碼來源:options.class.php

示例13: __construct

 /**
  * Constructor
  *
  * @param string $token
  * @param array $options
  */
 public function __construct($token, array $options = [])
 {
     parent::__construct($options);
     $this->setToken($token);
 }
開發者ID:tinpont,項目名稱:pushbox,代碼行數:11,代碼來源:Device.php


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