AkActionViewHelper | --FormTagHelper
Located in File: /AkActionView/helpers/form_tag_helper.php
NOTE: The html options disabled, readonly, and multiple can all be treated as booleans. So specifying <tt>'disabled' => true</tt> will give <tt>disabled="disabled"</tt>.
Method check_box_tag (line 160)
Method file_field_tag (line 125)
If you are using file uploads then you will also need to set the multipart option for the form: <?= $form_tag_helper->form_tag(array('action'=>'post'),array('multipart'=>true)); ?> <label for="file">File to Upload</label> <?= $form_tag_helper->file_field_tag('file'); ?> <?= $form_tag_helper->submit_tag(); ?> <?= $form_tag_helper->end_form_tag(); ?>
Method form_tag (line 43)
Options: * <tt>'multipart'</tt> - If set to true, the enctype is set to "multipart/form-data". * <tt>'method'</tt> - The method to use when submitting the form, usually either "get" or "post".
Method hidden_field_tag (line 111)
Takes the same options as text_field_tag
Method image_submit_tag (line 201)
<tt>source</tt> is passed to AssetTagHelper#image_path
Method password_field_tag (line 135)
Takes the same options as text_field_tag
Method radio_button_tag (line 172)
Method select_tag (line 86)
Helpers::FormOptions can be used to create common select boxes such as countries, time zones, or associated records.
<tt>option_tags</tt> is a string containing the option tags for the select box:
Options: * <tt>'multiple'</tt> - If set to true the selection will allow multiple choices.
Method start_form_tag (line 58)
Method submit_tag (line 185)
Method text_area_tag (line 148)
Options: * <tt>'size'</tt> - A string specifying the dimensions of the textarea.
Method text_field_tag (line 101)
Options: * <tt>'disabled'</tt> - If set to true, the user will not be able to use this input. * <tt>'size'</tt> - The number of visible characters that will fit in the input. * <tt>'maxlength'</tt> - The maximum number of characters that the browser will allow the user to enter.
An array of standard HTML options for the tag.
AkActionViewHelper::$locales_namespace -
AkActionViewHelper::AkActionViewHelper() -
AkActionViewHelper::addObject() -
AkActionViewHelper::getObject() -
AkActionViewHelper::setController() -
AkActionViewHelper::t() -