Пример #1
0
 public static function upload($label, $name = NULL, $value = '', $id = NULL)
 {
     list($label, $name, $id) = self::expand($label, $name, $id);
     $file = fHTML::upload($name, array('class' => array('upload'), 'id' => $id));
     // kein text als class wegen width
     self::attachLabel($file, $label);
     return $file;
 }