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


PHP Behavior::hasMethod方法代碼示例

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


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

示例1: hasMethod

 public function hasMethod($name)
 {
     if ($name == 'magicBehaviorMethod') {
         return true;
     }
     return parent::hasMethod($name);
 }
開發者ID:howq,項目名稱:yii2,代碼行數:7,代碼來源:BehaviorTest.php

示例2: hasMethod

 /**
  * @param string $name
  * @return bool
  */
 public function hasMethod($name)
 {
     if ($name == 'get' . $this->getAttributeName()) {
         return true;
     }
     return parent::hasMethod($name);
 }
開發者ID:NullRefExcep,項目名稱:yii2-core,代碼行數:11,代碼來源:HasRelation.php

示例3: hasMethod

 /**
  * @param string $name
  *
  * @return bool
  */
 public function hasMethod($name)
 {
     if ($name === $this->methodName) {
         return is_callable([$this, $name]);
     }
     return parent::hasMethod($name);
 }
開發者ID:highestgoodlikewater,項目名稱:yii2-image,代碼行數:12,代碼來源:ImageBehavior.php

示例4: hasMethod

 /**
  * @inheritdoc
  */
 public function hasMethod($name)
 {
     $attribute = $this->attributeFromGetMethodUrl($name);
     return $attribute && isset($this->attributes[$attribute]) && is_array($this->attributes[$attribute]) || parent::hasMethod($name);
 }
開發者ID:mervick,項目名稱:yii2-adminlte-behaviors,代碼行數:8,代碼來源:ImageBehavior.php

示例5: hasMethod

 /**
  * @inheritdoc
  */
 public function hasMethod($name)
 {
     if (parent::hasMethod($name)) {
         return true;
     }
     $model = $this->getRoleRelationModel();
     return $model->hasMethod($name);
 }
開發者ID:yii2tech,項目名稱:ar-role,代碼行數:11,代碼來源:RoleBehavior.php

示例6: hasMethod

 /**
  * @inheritdoc
  */
 public function hasMethod($name)
 {
     if (parent::hasMethod($name)) {
         return true;
     } else {
         if (strncmp($name, 'get', 3) === 0) {
             $name = substr($name, 3);
         }
         return $this->hasRelation($this->getRelationName($this->normalizeName($name)));
     }
 }
開發者ID:xyxdasnjss,項目名稱:imshop,代碼行數:14,代碼來源:RelationsBehavior.php

示例7: hasMethod

 /**
  * @param string $name
  * @return bool
  */
 public function hasMethod($name)
 {
     return $this->isBehaviorAttribute(ltrim($name, 'get')) ? true : parent::hasMethod($name);
 }
開發者ID:vetoni,項目名稱:toko,代碼行數:8,代碼來源:ImageAttachmentBehavior.php

示例8: hasMethod

 /**
  * @inheritdoc
  */
 public function hasMethod($name)
 {
     if ($this->hasRelation($name)) {
         return true;
     }
     if ($this->hasRelationGetter($name)) {
         return true;
     }
     return parent::hasMethod($name);
 }
開發者ID:vtvz,項目名稱:yii2-relations,代碼行數:13,代碼來源:Relations.php


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