form.php 10 KB

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