Phalcon の Tag のヘルパによる表示例
Phalcon\Tag にはいろいろヘルパがあるがここではフォームに関するものについて volt での書き方と html の出力結果を書いておく.
基本
ここでは text_field() を使って例を出す。
- 何も設定しない
{{ text_field() }}
<input type="text" />
- 第一引き数に文字列を与える
{{ text_field('hoge') }}
<input type="text" id="hoge" name="hoge" />
- 第二引き数以降にキーと値を与える
{{ text_field('hoge', 'class':'myclass', 'aaa': 'bbb') }}
<input type="text" id="hoge" name="hoge" class="myclass" aaa="bbb" />
出力例
text_field
「基本」を参照.
password_field
{{ password_field('hoge') }}
<input type="password" id="hoge" name="hoge" />
file_field
{{ file_field('hoge') }}
<input type="file" id="hoge" name="hoge" />
check_field
{{ check_field('hoge') }}
<input type="checkbox" id="hoge" name="hoge" />
radio_field
{{ radio_field('hoge') }}
<input type="radio" id="hoge" name="hoge" />
date_field
{{ date_field('hoge') }}
<input type="date" id="hoge" name="hoge" />
email_field
{{ email_field('hoge') }}
<input type="email" id="hoge" name="hoge" />
numeric_field
ドキュメントが間違っているようだけど number_field ではなく numeric_field とのこと.
ドキュメント直ってないけどなぜか下記 Issue は close されている.
Phalcon\Tag のページだと numericField になっている.
{{ numeric_field('hoge') }}
<input type="number" id="hoge" name="hoge" />
submit_button
{{ submit_button() }}
<input type="submit" />
select_static
このヘルパは 第一引き数だけだとエラーとなって動かない
{{ select_static('hoge') }}
Invalid data provided to SELECT helper
第二引き数に連想配列を指定
{{ select_static('hoge', ['A': 'Active', 'B': 'Inactive']) }}
<select id="hoge" name="hoge">
<option value="A">Active</option>
<option value="B">Inactive</option>
</select>
multiple を付けたい場合は単体だと表示してくれないので空文字列でも設定しておく.
{{ select_static('hoge', ['A': 'Active', 'B': 'Inactive'], 'multiple': '') }}
<select id="hoge" name="hoge" multiple="">
<option value="A">Active</option>
<option value="B">Inactive</option>
</select>
表示例
select
select_static と同様,第一引き数だけだとエラーになる.
{{ select('hoge') }}
Invalid data provided to SELECT helper
select と select_static の違いは select は Phalcon\Mvc\Model\ResultsetInterface を渡すことができるらしい.
普通に連想配列を渡すと select_static と同じ動きはする. ResultsetInterface のほうはここでは省略.
{{ select('hoge', ['A': 'Active', 'B': 'Inactive']) }}
<select id="hoge" name="hoge">
<option value="A">Active</option>
<option value="B">Inactive</option>
</select>
text_area
{{ text_area('hoge') }}
<textarea id="hoge" name="hoge"></textarea>
中身を追加したい場合.なぜか value 属性がついてて要らない気もするけど.
{{ text_area('hoge', 'value': 'This is contents.') }}
<textarea id="hoge" name="hoge" value="This is contents.">This is contents.</textarea>
form
{{ form() }}
<form method="post">
第一引き数を指定した場合
{{ form('hoge') }}
<form action="/hoge" method="post">
属性指定は他と同様.
{{ form('hoge', 'enctype': 'multipart/form-data') }}
<form action="/hoge" enctype="multipart/form-data" method="post">
end_form
{{ end_form() }}
</form>
ちなみに文字列で引き数渡しても効果はない
{{ end_form('hoge') }}
</form>
参考文献
API ドキュメント
Class Phalcon\Tag — Phalcon 1.3.1 documentation
http://docs.phalconphp.com/ja/latest/api/Phalcon_Tag.html
Volt についての説明
Volt: テンプレートエンジン — Phalcon 1.3.1 documentation
http://docs.phalconphp.com/ja/latest/reference/volt.html
ヘルパの説明
Viewヘルパ — Phalcon 1.3.1 documentation
http://docs.phalconphp.com/ja/latest/reference/tags.html
Author And Source
この問題について(Phalcon の Tag のヘルパによる表示例), 我々は、より多くの情報をここで見つけました https://qiita.com/nise_nabe/items/55c7276705910c5a4c03著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .