質問

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?

役に立ちましたか?

解決

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

See How do you use Twig include statement with FuelPHP?

他のヒント

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() }}
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top