You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?php
- /**
- * Class helper_plugin_bureaucracy_fieldtextarea
- *
- * Creates a multi-line input field
- */
- class helper_plugin_bureaucracy_fieldtextarea extends helper_plugin_bureaucracy_field {
- /**
- * Arguments:
- * - cmd
- * - label
- * - x123 (optional) as number of lines
- * - ^ (optional)
- */
- public function initialize($args) {
- parent::initialize($args);
- if (!isset($this->opt['class'])) {
- $this->opt['class'] = '';
- }
- $this->opt['class'] .= ' textareafield';
- }
-
- protected $tpl =
- '<label class="@@CLASS@@">
- <span>@@DISPLAY@@</span>
- <textarea name="@@NAME@@" id="@@ID@@" rows="@@ROWS|10@@" cols="10" class="edit @@OPTIONAL|required" required="required@@">@@VALUE@@</textarea>
- </label>';
-
- }
|