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


PHP Attribute::__construct方法代碼示例

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


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

示例1: __construct

 public function __construct($name, $values, $server_id, $source = null)
 {
     # Call our parent constructor
     parent::__construct($name, $values, $server_id, $source);
     # Our values are set by parent(). If we do have values, and the source was XML, move them to our selection.
     if ($this->source == 'XML' && $this->values) {
         $this->selection = $this->values;
         $this->values = array();
     }
     if (isset($values['type']) && $values['type'] == 'multiselect') {
         $this->multiple = true;
     } else {
         $this->multiple = false;
     }
 }
開發者ID:dannylsl,項目名稱:phpLDAPadmin,代碼行數:15,代碼來源:SelectionAttribute.php

示例2: __construct

 public function __construct($value = null, $AttributeType = null)
 {
     parent::__construct();
     $this->value = $value;
     $this->AttributeType = $AttributeType;
 }
開發者ID:sonicgd,項目名稱:google-adwords-api-light,代碼行數:6,代碼來源:KeywordAttribute.php

示例3: __construct

 public function __construct($value = NULL, $AttributeType = NULL)
 {
     if (get_parent_class('AdSpecListAttribute')) {
         parent::__construct();
     }
     $this->value = $value;
     $this->AttributeType = $AttributeType;
 }
開發者ID:fertandil87,項目名稱:adwords-php-client,代碼行數:8,代碼來源:TargetingIdeaService.php

示例4: __construct

 public function __construct($name, $values, $server_id, $source = null)
 {
     parent::__construct($name, $values, $server_id, $source);
     $this->filepaths = array();
     $this->filenames = array();
 }
開發者ID:dannylsl,項目名稱:phpLDAPadmin,代碼行數:6,代碼來源:BinaryAttribute.php

示例5: createStaticQuery

 function __construct($attrId, $optionId)
 {
     $attrId = Attribute::toID($attrId);
     $optionId = ProductOption::toID($optionId);
     parent::__construct($attrId);
     static $q = null;
     createStaticQuery($q, "\r\n\t\t\tSELECT attribute_value\r\n\t\t\tFROM cf_product_options_attributes\r\n\t\t\tWHERE product_option_id=:optionId AND attribute_id=:attrId\r\n\t\t");
     $q->setParam('optionId', $optionId);
     $q->setParam('attrId', $attrId);
     $q->execute();
     if ($q->fetch()) {
         $this->setValue($q->at('attribute_value'));
     }
     $q->close();
 }
開發者ID:sd-studio,項目名稱:or,代碼行數:15,代碼來源:shop.php

示例6: __construct

 /**
  * TextAttribute constructor.
  *
  * @param string $name
  * @param string $type
  * @param array  $flags
  */
 public function __construct($name = '', $type = 'text', $flags = [])
 {
     $this->flags = $flags;
     parent::__construct($name, $flags);
 }
開發者ID:wearejust,項目名稱:shapeshifter,代碼行數:12,代碼來源:TextAttribute.php


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