luya\base\Widget::getViewPath PHP Method

getViewPath() public method

{@inheritDoc}
See also: yii\base\Widget::getViewPath()
public getViewPath ( ) : string
return string
    public function getViewPath()
    {
        // get reflection
        $class = new ReflectionClass($this);
        // get path with alias
        return '@app/views/widgets/' . Inflector::camel2id($class->getShortName());
    }