form.php 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351
  1. <?php namespace System;
  2. class Form {
  3. /**
  4. * Stores labels names.
  5. *
  6. * @var array
  7. */
  8. private static $labels = array();
  9. /**
  10. * Open a HTML form.
  11. *
  12. * @param string $action
  13. * @param string $method
  14. * @param array $attributes
  15. * @return string
  16. */
  17. public static function open($action = null, $method = 'POST', $attributes = array())
  18. {
  19. if (is_null($action))
  20. {
  21. $action = Request::uri();
  22. }
  23. $action = URL::to($action);
  24. $attributes['action'] = HTML::entities($action);
  25. $attributes['method'] = ($method == 'GET' or $method == 'POST') ? $method : 'POST';
  26. if ( ! array_key_exists('accept-charset', $attributes))
  27. {
  28. $attributes['accept-charset'] = Config::get('application.encoding');
  29. }
  30. $html = '<form'.HTML::attributes($attributes).'>';
  31. // -------------------------------------------------------
  32. // If the method is PUT or DELETE, we'll need to spoof it
  33. // using a hidden input field.
  34. //
  35. // For more information, see the Input library.
  36. // -------------------------------------------------------
  37. if ($method == 'PUT' or $method == 'DELETE')
  38. {
  39. $html .= PHP_EOL.static::hidden('REQUEST_METHOD', $method);
  40. }
  41. return $html.PHP_EOL;
  42. }
  43. /**
  44. * Open a HTML form that accepts file uploads.
  45. *
  46. * @param string $action
  47. * @param string $method
  48. * @param array $attributes
  49. * @return string
  50. */
  51. public static function open_multipart($action = null, $method = 'POST', $attributes = array())
  52. {
  53. $attributes['enctype'] = 'multipart/form-data';
  54. return static::open($action, $method, $attributes);
  55. }
  56. /**
  57. * Close a HTML form.
  58. *
  59. * @return string
  60. */
  61. public static function close()
  62. {
  63. return '</form>'.PHP_EOL;
  64. }
  65. /**
  66. * Generate a hidden field containing the current CSRF token.
  67. *
  68. * @return string
  69. */
  70. public static function token()
  71. {
  72. return static::hidden('csrf_token', static::raw_token());
  73. }
  74. /**
  75. * Retrieve the current CSRF token.
  76. *
  77. * @return string
  78. */
  79. public static function raw_token()
  80. {
  81. // -------------------------------------------------------
  82. // CSRF tokens are stored in the session, so we need to
  83. // make sure a driver has been specified.
  84. // -------------------------------------------------------
  85. if (Config::get('session.driver') == '')
  86. {
  87. throw new \Exception('Sessions must be enabled to retrieve a CSRF token.');
  88. }
  89. return Session::get('csrf_token');
  90. }
  91. /**
  92. * Create a HTML label element.
  93. *
  94. * @param string $name
  95. * @param string $value
  96. * @param array $attributes
  97. * @return string
  98. */
  99. public static function label($name, $value, $attributes = array())
  100. {
  101. static::$labels[] = $name;
  102. return '<label for="'.$name.'"'.HTML::attributes($attributes).'>'.HTML::entities($value).'</label>'.PHP_EOL;
  103. }
  104. /**
  105. * Create a HTML text input element.
  106. *
  107. * @param string $name
  108. * @param string $value
  109. * @param array $attributes
  110. * @return string
  111. */
  112. public static function text($name, $value = null, $attributes = array())
  113. {
  114. return static::input('text', $name, $value, $attributes);
  115. }
  116. /**
  117. * Create a HTML password input element.
  118. *
  119. * @param string $name
  120. * @param array $attributes
  121. * @return string
  122. */
  123. public static function password($name, $attributes = array())
  124. {
  125. return static::input('password', $name, null, $attributes);
  126. }
  127. /**
  128. * Create a HTML hidden input element.
  129. *
  130. * @param string $name
  131. * @param array $attributes
  132. * @return string
  133. */
  134. public static function hidden($name, $value = null, $attributes = array())
  135. {
  136. return static::input('hidden', $name, $value, $attributes);
  137. }
  138. /**
  139. * Create a HTML file input element.
  140. *
  141. * @param string $name
  142. * @param array $attributes
  143. * @return string
  144. */
  145. public static function file($name, $attributes = array())
  146. {
  147. return static::input('file', $name, null, $attributes);
  148. }
  149. /**
  150. * Create a HTML submit input element.
  151. *
  152. * @param string $name
  153. * @param array $attributes
  154. * @return string
  155. */
  156. public static function submit($value, $attributes = array())
  157. {
  158. return static::input('submit', null, $value, $attributes);
  159. }
  160. /**
  161. * Create a HTML button element.
  162. *
  163. * @param string $name
  164. * @param string $value
  165. * @param array $attributes
  166. * @return string
  167. */
  168. public static function button($value, $attributes = array())
  169. {
  170. return '<button'.HTML::attributes($attributes).'>'.HTML::entities($value).'</button>'.PHP_EOL;
  171. }
  172. /**
  173. * Create a HTML checkbox input element.
  174. *
  175. * @param string $name
  176. * @param string $value
  177. * @param bool $checked
  178. * @param array $attributes
  179. * @return string
  180. */
  181. public static function checkbox($name, $value = null, $checked = false, $attributes = array())
  182. {
  183. return static::checkable('checkbox', $name, $value, $checked, $attributes);
  184. }
  185. /**
  186. * Create a HTML radio button input element.
  187. *
  188. * @param string $name
  189. * @param string $value
  190. * @param bool $checked
  191. * @param array $attributes
  192. * @return string
  193. */
  194. public static function radio($name, $value = null, $checked = false, $attributes = array())
  195. {
  196. return static::checkable('radio', $name, $value, $checked, $attributes);
  197. }
  198. /**
  199. * Create a checkable input element.
  200. *
  201. * @param string $type
  202. * @param string $name
  203. * @param string $value
  204. * @param bool $checked
  205. * @param array $attributes
  206. * @return string
  207. */
  208. private static function checkable($type, $name, $value, $checked, $attributes)
  209. {
  210. if ($checked === true)
  211. {
  212. $attributes['checked'] = 'checked';
  213. }
  214. $attributes['id'] = static::id($name, $attributes);
  215. return static::input($type, $name, $value, $attributes);
  216. }
  217. /**
  218. * Create a HTML textarea element.
  219. *
  220. * @param string $name
  221. * @param string $value
  222. * @param array $attributes
  223. * @return string
  224. */
  225. public static function textarea($name, $value = '', $attributes = array())
  226. {
  227. $attributes['name'] = $name;
  228. $attributes['id'] = static::id($name, $attributes);
  229. // -------------------------------------------------------
  230. // Set the default number of rows.
  231. // -------------------------------------------------------
  232. if ( ! isset($attributes['rows']))
  233. {
  234. $attributes['rows'] = 10;
  235. }
  236. // -------------------------------------------------------
  237. // Set the default number of columns.
  238. // -------------------------------------------------------
  239. if ( ! isset($attributes['cols']))
  240. {
  241. $attributes['cols'] = 50;
  242. }
  243. return '<textarea'.HTML::attributes($attributes).'>'.HTML::entities($value).'</textarea>'.PHP_EOL;
  244. }
  245. /**
  246. * Create a HTML select element.
  247. *
  248. * @param string $name
  249. * @param array $options
  250. * @param string $selected
  251. * @param array $attributes
  252. * @return string
  253. */
  254. public static function select($name, $options = array(), $selected = null, $attributes = array())
  255. {
  256. $attributes['name'] = $name;
  257. $attributes['id'] = static::id($name, $attributes);
  258. $html_options = array();
  259. foreach ($options as $value => $display)
  260. {
  261. $option_attributes = array();
  262. $option_attributes['value'] = HTML::entities($value);
  263. $option_attributes['selected'] = ($value == $selected) ? 'selected' : null;
  264. $html_options[] = '<option'.HTML::attributes($option_attributes).'>'.HTML::entities($display).'</option>';
  265. }
  266. return '<select'.HTML::attributes($attributes).'>'.implode('', $html_options).'</select>'.PHP_EOL;
  267. }
  268. /**
  269. * Create a HTML input element.
  270. *
  271. * @param string $name
  272. * @param mixed $value
  273. * @param array $attributes
  274. * @return string
  275. */
  276. private static function input($type, $name, $value = null, $attributes = array())
  277. {
  278. $attributes['type'] = $type;
  279. $attributes['name'] = $name;
  280. $attributes['value'] = $value;
  281. $attributes['id'] = static::id($name, $attributes);
  282. return '<input'.HTML::attributes($attributes).'>'.PHP_EOL;
  283. }
  284. /**
  285. * Determine the ID attribute for a form element.
  286. *
  287. * @param string $name
  288. * @param array $attributes
  289. * @return mixed
  290. */
  291. private static function id($name, $attributes)
  292. {
  293. // -------------------------------------------------------
  294. // If an ID attribute was already explicitly specified
  295. // for the element, just use that.
  296. // -------------------------------------------------------
  297. if (array_key_exists('id', $attributes))
  298. {
  299. return $attributes['id'];
  300. }
  301. // -------------------------------------------------------
  302. // If a label element was created with a value matching
  303. // the name of the form element, use the name as the ID.
  304. // -------------------------------------------------------
  305. if (in_array($name, static::$labels))
  306. {
  307. return $name;
  308. }
  309. }
  310. }