File: /home/accemeff/vendor/craftcms/cms/src/behaviors/ElementQueryBehavior.php.template
<?php // v{VERSION}
/**
* @link http://craftcms.com/
* @copyright Copyright (c) Pixel & Tonic, Inc.
* @license http://craftcms.com/license
*/
namespace craft\behaviors;
/**
* Element Query behavior
*
* This class provides attributes for all the unique custom field handles.
*
{METHOD_DOCS}
*/
class ElementQueryBehavior extends ContentBehavior
{
// Public Methods
// =========================================================================
/**
* @inheritdoc
*/
public function __call($name, $params)
{
if (isset(self::$fieldHandles[$name]) && count($params) === 1) {
$this->$name = $params[0];
return $this->owner;
}
return parent::__call($name, $params);
}
/**
* @inheritdoc
*/
public function hasMethod($name)
{
if (isset(self::$fieldHandles[$name])) {
return true;
}
return parent::hasMethod($name);
}
}