skeeks\cms\models\searchs\CmsContentElementSearch::attributes PHP Method

attributes() public method

By default, this method returns all public non-static properties of the class. You may override this method to change the default behavior.
public attributes ( ) : array
return array list of attribute names.
    public function attributes()
    {
        $class = new \ReflectionClass($this);
        $names = [];
        foreach ($class->getProperties(\ReflectionProperty::IS_PUBLIC) as $property) {
            if (!$property->isStatic()) {
                $names[] = $property->getName();
            }
        }
        return ArrayHelper::merge(parent::attributes(), $names);
    }