form.php 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405
  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. $attributes['action'] = HTML::entities(URL::to((is_null($action)) ? Request::uri() : $action));
  20. // If the request method is PUT or DELETE, we'll default the request method to POST
  21. // since the request method is being spoofed by the form.
  22. $attributes['method'] = ($method == 'PUT' or $method == 'DELETE') ? 'POST' : $method;
  23. if ( ! array_key_exists('accept-charset', $attributes))
  24. {
  25. $attributes['accept-charset'] = Config::get('application.encoding');
  26. }
  27. $html = '<form'.HTML::attributes($attributes).'>';
  28. // If the request method is PUT or DELETE, create a hidden input element with the
  29. // request method in it since HTML forms do not support these two methods.
  30. if ($method == 'PUT' or $method == 'DELETE')
  31. {
  32. $html .= PHP_EOL.static::input('hidden', 'REQUEST_METHOD', $method);
  33. }
  34. return $html.PHP_EOL;
  35. }
  36. /**
  37. * Open a HTML form that accepts file uploads.
  38. *
  39. * @param string $action
  40. * @param string $method
  41. * @param array $attributes
  42. * @return string
  43. */
  44. public static function open_for_files($action = null, $method = 'POST', $attributes = array())
  45. {
  46. $attributes['enctype'] = 'multipart/form-data';
  47. return static::open($action, $method, $attributes);
  48. }
  49. /**
  50. * Close a HTML form.
  51. *
  52. * @return string
  53. */
  54. public static function close()
  55. {
  56. return '</form>';
  57. }
  58. /**
  59. * Generate a hidden field containing the current CSRF token.
  60. *
  61. * @return string
  62. */
  63. public static function token()
  64. {
  65. return static::input('hidden', 'csrf_token', static::raw_token());
  66. }
  67. /**
  68. * Retrieve the current CSRF token.
  69. *
  70. * @return string
  71. */
  72. public static function raw_token()
  73. {
  74. if (Config::get('session.driver') == '')
  75. {
  76. throw new \Exception('Sessions must be enabled to retrieve a CSRF token.');
  77. }
  78. return Session::get('csrf_token');
  79. }
  80. /**
  81. * Create a HTML label element.
  82. *
  83. * @param string $name
  84. * @param string $value
  85. * @param array $attributes
  86. * @return string
  87. */
  88. public static function label($name, $value, $attributes = array())
  89. {
  90. static::$labels[] = $name;
  91. return '<label for="'.$name.'"'.HTML::attributes($attributes).'>'.HTML::entities($value).'</label>'.PHP_EOL;
  92. }
  93. /**
  94. * Create a HTML input element.
  95. *
  96. * @param string $name
  97. * @param mixed $value
  98. * @param array $attributes
  99. * @return string
  100. */
  101. public static function input($type, $name, $value = null, $attributes = array())
  102. {
  103. return '<input'.HTML::attributes(array_merge($attributes, array('type' => $type, 'name' => $name, 'value' => $value, 'id' => static::id($name, $attributes)))).'>'.PHP_EOL;
  104. }
  105. /**
  106. * Create a HTML text input element.
  107. *
  108. * @param string $name
  109. * @param string $value
  110. * @param array $attributes
  111. * @return string
  112. */
  113. public static function text($name, $value = null, $attributes = array())
  114. {
  115. return static::input('text', $name, $value, $attributes);
  116. }
  117. /**
  118. * Create a HTML password input element.
  119. *
  120. * @param string $name
  121. * @param array $attributes
  122. * @return string
  123. */
  124. public static function password($name, $attributes = array())
  125. {
  126. return static::input('password', $name, null, $attributes);
  127. }
  128. /**
  129. * Create a HTML hidden input element.
  130. *
  131. * @param string $name
  132. * @param string $value
  133. * @param array $attributes
  134. * @return string
  135. */
  136. public static function hidden($name, $value = null, $attributes = array())
  137. {
  138. return static::input('hidden', $name, $value, $attributes);
  139. }
  140. /**
  141. * Create a HTML search input element.
  142. *
  143. * @param string $name
  144. * @param string $value
  145. * @param array $attributes
  146. * @return string
  147. */
  148. public static function search($name, $value = null, $attributes = array())
  149. {
  150. return static::input('search', $name, $value, $attributes);
  151. }
  152. /**
  153. * Create a HTML email input element.
  154. *
  155. * @param string $name
  156. * @param string $value
  157. * @param array $attributes
  158. * @return string
  159. */
  160. public static function email($name, $value = null, $attributes = array())
  161. {
  162. return static::input('email', $name, $value, $attributes);
  163. }
  164. /**
  165. * Create a HTML telephone input element.
  166. *
  167. * @param string $name
  168. * @param string $value
  169. * @param array $attributes
  170. * @return string
  171. */
  172. public static function telephone($name, $value = null, $attributes = array())
  173. {
  174. return static::input('tel', $name, $value, $attributes);
  175. }
  176. /**
  177. * Create a HTML URL input element.
  178. *
  179. * @param string $name
  180. * @param string $value
  181. * @param array $attributes
  182. * @return string
  183. */
  184. public static function url($name, $value = null, $attributes = array())
  185. {
  186. return static::input('url', $name, $value, $attributes);
  187. }
  188. /**
  189. * Create a HTML number input element.
  190. *
  191. * @param string $name
  192. * @param string $value
  193. * @param array $attributes
  194. * @return string
  195. */
  196. public static function number($name, $value = null, $attributes = array())
  197. {
  198. return static::input('number', $name, $value, $attributes);
  199. }
  200. /**
  201. * Create a HTML file input element.
  202. *
  203. * @param string $name
  204. * @param array $attributes
  205. * @return string
  206. */
  207. public static function file($name, $attributes = array())
  208. {
  209. return static::input('file', $name, null, $attributes);
  210. }
  211. /**
  212. * Create a HTML textarea element.
  213. *
  214. * @param string $name
  215. * @param string $value
  216. * @param array $attributes
  217. * @return string
  218. */
  219. public static function textarea($name, $value = '', $attributes = array())
  220. {
  221. $attributes = array_merge($attributes, array('id' => static::id($name, $attributes), 'name' => $name));
  222. if ( ! isset($attributes['rows']))
  223. {
  224. $attributes['rows'] = 10;
  225. }
  226. if ( ! isset($attributes['cols']))
  227. {
  228. $attributes['cols'] = 50;
  229. }
  230. return '<textarea'.HTML::attributes($attributes).'>'.HTML::entities($value).'</textarea>'.PHP_EOL;
  231. }
  232. /**
  233. * Create a HTML select element.
  234. *
  235. * @param string $name
  236. * @param array $options
  237. * @param string $selected
  238. * @param array $attributes
  239. * @return string
  240. */
  241. public static function select($name, $options = array(), $selected = null, $attributes = array())
  242. {
  243. $attributes = array_merge($attributes, array('id' => static::id($name, $attributes), 'name' => $name));
  244. $html = array();
  245. foreach ($options as $value => $display)
  246. {
  247. $html[] = '<option'.HTML::attributes(array('value' => HTML::entities($value), 'selected' => ($value == $selected) ? 'selected' : null)).'>'.HTML::entities($display).'</option>';
  248. }
  249. return '<select'.HTML::attributes($attributes).'>'.implode('', $html).'</select>'.PHP_EOL;
  250. }
  251. /**
  252. * Create a HTML checkbox input element.
  253. *
  254. * @param string $name
  255. * @param string $value
  256. * @param bool $checked
  257. * @param array $attributes
  258. * @return string
  259. */
  260. public static function checkbox($name, $value = null, $checked = false, $attributes = array())
  261. {
  262. return static::checkable('checkbox', $name, $value, $checked, $attributes);
  263. }
  264. /**
  265. * Create a HTML radio button input element.
  266. *
  267. * @param string $name
  268. * @param string $value
  269. * @param bool $checked
  270. * @param array $attributes
  271. * @return string
  272. */
  273. public static function radio($name, $value = null, $checked = false, $attributes = array())
  274. {
  275. return static::checkable('radio', $name, $value, $checked, $attributes);
  276. }
  277. /**
  278. * Create a checkable input element.
  279. *
  280. * @param string $type
  281. * @param string $name
  282. * @param string $value
  283. * @param bool $checked
  284. * @param array $attributes
  285. * @return string
  286. */
  287. private static function checkable($type, $name, $value, $checked, $attributes)
  288. {
  289. $attributes = array_merge($attributes, array('id' => static::id($name, $attributes), 'checked' => ($checked) ? 'checked' : null));
  290. return static::input($type, $name, $value, $attributes);
  291. }
  292. /**
  293. * Create a HTML submit input element.
  294. *
  295. * @param string $value
  296. * @param array $attributes
  297. * @return string
  298. */
  299. public static function submit($value, $attributes = array())
  300. {
  301. return static::input('submit', null, $value, $attributes);
  302. }
  303. /**
  304. * Create a HTML reset input element.
  305. *
  306. * @param string $value
  307. * @param array $attributes
  308. * @return string
  309. */
  310. public static function reset($value, $attributes = array())
  311. {
  312. return static::input('reset', null, $value, $attributes);
  313. }
  314. /**
  315. * Create a HTML image input element.
  316. *
  317. * @param string $url
  318. * @param array $attributes
  319. * @return string
  320. */
  321. public static function image($url, $name = null, $attributes = array())
  322. {
  323. $attributes['src'] = URL::to_asset($url);
  324. return static::input('image', $name, null, $attributes);
  325. }
  326. /**
  327. * Create a HTML button element.
  328. *
  329. * @param string $name
  330. * @param string $value
  331. * @param array $attributes
  332. * @return string
  333. */
  334. public static function button($value, $attributes = array())
  335. {
  336. return '<button'.HTML::attributes($attributes).'>'.HTML::entities($value).'</button>'.PHP_EOL;
  337. }
  338. /**
  339. * Determine the ID attribute for a form element.
  340. *
  341. * An explicitly specified ID in the attributes takes first precedence, then
  342. * the label names will be checked for a label matching the element name.
  343. *
  344. * @param string $name
  345. * @param array $attributes
  346. * @return mixed
  347. */
  348. private static function id($name, $attributes)
  349. {
  350. if (array_key_exists('id', $attributes))
  351. {
  352. return $attributes['id'];
  353. }
  354. if (in_array($name, static::$labels))
  355. {
  356. return $name;
  357. }
  358. }
  359. }