i want to set a custom template in custom directory for reuse template from multiple modules
// re-use the input template for presenting the errors in the form
$this->getLayer('content')->setTemplate('Input');
checking the class, i can see the magic metod __call
and the config files ( output_type ) i can see other property
<layer name="decorator">
<ae:parameter name="directory">%core.template_dir%</ae:parameter>
<ae:parameter name="template">Master</ae:parameter>
</layer>
i guess that i cant execute
$layer->setParameter('template', $XXXX);
or
$layer->setTemplate($XXX);
why the value for template parameter is a View Name?
can i set a filename ?
Are there other possible values for the template parameter?
what other properties exist for the AgaviTemplateLayer ?
Thansk for your help