Pregunta

What's the equivalent function for this in TWIG in FuelPHP framework? I am converting a FuelPHP project from php template to TWIG template.

<?php echo render('categories/_form'); ?>

I could not see any function for this in fuel\packages\parser\classes\twig\fuel\extension.php file.

I tried the below and it says no function available as said above.

{{ render('categories/_form') }}

Is there any other method to do this?

¿Fue útil?

Solución

Normally you would use the Twig include tag to include sub views.

See How do you use Twig include statement with FuelPHP?

Otros consejos

I manually added the form elements in the view and I get it to work.

{{ form_open({'method' : 'post','enctype' : 'multipart/form-data'}) }}
<ul>
    <li class="field">
       {{ form_label('Name', 'name') }}
       {{ form_input('name', input_post('name', ''), {'class' : 'text input'} )}}
    </li>

    <li class="field">
        {{ form_submit('submit', 'Save', {'class' : 'btn'}) }}
    </li>
</ul>
{{ form_close() }}
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top