本文整理汇总了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);
}