本文整理匯總了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);
}
示例2: hasMethod
/**
* @param string $name
* @return bool
*/
public function hasMethod($name)
{
if ($name == 'get' . $this->getAttributeName()) {
return true;
}
return parent::hasMethod($name);
}
示例3: hasMethod
/**
* @param string $name
*
* @return bool
*/
public function hasMethod($name)
{
if ($name === $this->methodName) {
return is_callable([$this, $name]);
}
return parent::hasMethod($name);
}
示例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);
}
示例5: hasMethod
/**
* @inheritdoc
*/
public function hasMethod($name)
{
if (parent::hasMethod($name)) {
return true;
}
$model = $this->getRoleRelationModel();
return $model->hasMethod($name);
}
示例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)));
}
}
示例7: hasMethod
/**
* @param string $name
* @return bool
*/
public function hasMethod($name)
{
return $this->isBehaviorAttribute(ltrim($name, 'get')) ? true : parent::hasMethod($name);
}
示例8: hasMethod
/**
* @inheritdoc
*/
public function hasMethod($name)
{
if ($this->hasRelation($name)) {
return true;
}
if ($this->hasRelationGetter($name)) {
return true;
}
return parent::hasMethod($name);
}