当前位置: 首页>>代码示例>>PHP>>正文


PHP Behavior::canGetProperty方法代码示例

本文整理汇总了PHP中yii\base\Behavior::canGetProperty方法的典型用法代码示例。如果您正苦于以下问题:PHP Behavior::canGetProperty方法的具体用法?PHP Behavior::canGetProperty怎么用?PHP Behavior::canGetProperty使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在yii\base\Behavior的用法示例。


在下文中一共展示了Behavior::canGetProperty方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: canGetProperty

 /**
  * Indicates whether a property can be read.
  * @param string $name the property name
  * @param boolean $checkVars whether to treat member variables as properties
  */
 public function canGetProperty($name, $checkVars = true)
 {
     if (!in_array($name, $this->attrs)) {
         return parent::canGetProperty($name, $checkVars);
     }
     return true;
 }
开发者ID:dlds,项目名称:yii2-rels,代码行数:12,代码来源:Behavior.php

示例2: canGetProperty

 /**
  * @inheritdoc
  */
 public function canGetProperty($name, $checkVars = true)
 {
     if (isset($this->attributes[$name]) || $name === $this->flagsAttribute) {
         return true;
     }
     return parent::canGetProperty($name, $checkVars);
 }
开发者ID:Mirocow,项目名称:yii2-flag-behavior,代码行数:10,代码来源:FlagBehavior.php

示例3: canGetProperty

 /**
  * @inheritdoc
  */
 public function canGetProperty($name, $checkVars = true)
 {
     if (in_array($name, [$this->titleAttribute, $this->keywordsAttribute, $this->descriptionAttribute])) {
         return true;
     }
     return parent::canGetProperty($name, $checkVars);
 }
开发者ID:romi45,项目名称:yii2-seo-behavior,代码行数:10,代码来源:SeoBehavior.php

示例4: canGetProperty

 /**
  * @inheritdoc
  */
 public function canGetProperty($name, $checkVars = true)
 {
     if ($name === $this->attribute) {
         return true;
     }
     return parent::canGetProperty($name, $checkVars);
 }
开发者ID:2amigos,项目名称:yii2-taggable-behavior,代码行数:10,代码来源:Taggable.php

示例5: canGetProperty

 /**
  * @inheritdoc
  */
 public function canGetProperty($name, $checkVars = true)
 {
     if (parent::canGetProperty($name, $checkVars)) {
         return true;
     } else {
         return $this->hasAttribute($name);
     }
 }
开发者ID:manyoubaby123,项目名称:imshop,代码行数:11,代码来源:EavBehavior.php

示例6: canGetProperty

 public function canGetProperty($name, $checkVars = true)
 {
     if (in_array($name, $this->mediasAttributes)) {
         return true;
     } else {
         return parent::canGetProperty($name, $checkVars);
     }
 }
开发者ID:kleitz,项目名称:golfleague,代码行数:8,代码来源:MediaBehavior.php

示例7: canGetProperty

 public function canGetProperty($name, $checkVars = true)
 {
     if (preg_match('/^(.+)(_image)$/', $name, $m) && isset($m[1]) && isset($this->imageFields[$m[1]])) {
         return true;
     }
     return parent::canGetProperty($name, $checkVars);
     // TODO: Change the autogenerated stub
 }
开发者ID:dkhru,项目名称:yii2-image-store,代码行数:8,代码来源:ImageBehavior.php

示例8: canGetProperty

 public function canGetProperty($name, $checkVars = true)
 {
     if ($this->fileInputName == $name) {
         return true;
     }
     return parent::canGetProperty($name, $checkVars);
     // TODO: Change the autogenerated stub
 }
开发者ID:zabachok,项目名称:yii2-hydra,代码行数:8,代码来源:FileInput.php

示例9: canGetProperty

 /**
  * Expose [[$attributes]] readable
  * @inheritdoc
  */
 public function canGetProperty($name, $checkVars = true)
 {
     return isset($this->attributes[$name]) || parent::canGetProperty($name, $checkVars);
 }
开发者ID:iutbay,项目名称:yii2-behaviors,代码行数:8,代码来源:ConverterBehavior.php

示例10: canGetProperty

 /**
  * @inheritdoc
  */
 public function canGetProperty($name, $checkVars = true)
 {
     return in_array($name, $this->virtualAttributesNames()) ? true : parent::canGetProperty($name, $checkVars);
 }
开发者ID:cakebake,项目名称:yii2-scalable-behavior,代码行数:7,代码来源:ScalableBehavior.php

示例11: canGetProperty

 /**
  * @inheritdoc
  */
 public function canGetProperty($name, $checkVars = true)
 {
     return $this->transformedPropertyExists($name) || parent::canGetProperty($name, $checkVars);
 }
开发者ID:tsyrya,项目名称:mybriop,代码行数:7,代码来源:TransformationBehavior.php

示例12: canGetProperty

 /**
  * @inheritdoc
  */
 public function canGetProperty($name, $checkVars = true)
 {
     if (parent::canGetProperty($name, $checkVars)) {
         return true;
     }
     return $name === $this->relationReferenceAttribute;
 }
开发者ID:yii2tech,项目名称:ar-linkmany,代码行数:10,代码来源:LinkManyBehavior.php

示例13: canGetProperty

 /**
  * @inheritdoc
  */
 public function canGetProperty($name, $checkVars = true)
 {
     return in_array($name, $this->getTranslationModelAttributes()) || parent::canGetProperty($name, $checkVars);
 }
开发者ID:uniqby,项目名称:yii2-ar-translatable,代码行数:7,代码来源:Translatable.php

示例14: canGetProperty

 /**
  * @inheritdoc
  */
 public function canGetProperty($name, $checkVars = true)
 {
     $this->initProperties();
     return isset($this->_properties[$name]) || array_key_exists($name, $this->_properties) || parent::canGetProperty($name, $checkVars);
 }
开发者ID:sangkilsoft,项目名称:sangkilbiz-3,代码行数:8,代码来源:PropertyBehavior.php

示例15: canGetProperty

 public function canGetProperty($name, $checkVars = true)
 {
     if ($this->hasStoreRelation($name)) {
         return true;
     }
     return parent::canGetProperty($name, $checkVars);
 }
开发者ID:RangelReale,项目名称:yii2-storerelation,代码行数:7,代码来源:StoreRelationBehavior.php


注:本文中的yii\base\Behavior::canGetProperty方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。