Habari\Pluggable::_plugin_available_templates PHP Метод

_plugin_available_templates() публичный Метод

Add plugin templates to the list of templates that are present in the current theme
public _plugin_available_templates ( array $list ) : array
$list array List of template names in the current theme
Результат array The modified list of template names
    public function _plugin_available_templates($list)
    {
        $list = array_merge($list, array_keys($this->_added_templates));
        return $list;
    }