gyro/core/view/widgets/input/base/file.input.widget.php
Go to the documentation of this file.00001 <?php 00002 /** 00003 * A file input 00004 * 00005 * @author Gerd Riesselmann 00006 * @ingroup View 00007 */ 00008 class InputWidgetFileBase extends InputWidgetBase { 00009 /** 00010 * Render the actual widget 00011 */ 00012 protected function render_input($attrs, $params, $name, $title, $value, $policy) { 00013 return html::input('file', $name, $attrs); 00014 } 00015 }