form.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526
  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. $attributes['action'] = HTML::entities(URL::to($action));
  24. // -------------------------------------------------------
  25. // If the request method is PUT or DELETE, we'll default
  26. // the request method to POST.
  27. // -------------------------------------------------------
  28. $attributes['method'] = ($method == 'GET' or $method == 'POST') ? $method : 'POST';
  29. // -------------------------------------------------------
  30. // Set the default character set if it hasn't already been
  31. // set in the attributes.
  32. // -------------------------------------------------------
  33. if ( ! array_key_exists('accept-charset', $attributes))
  34. {
  35. $attributes['accept-charset'] = Config::get('application.encoding');
  36. }
  37. $html = '<form'.HTML::attributes($attributes).'>';
  38. // -------------------------------------------------------
  39. // If the method is PUT or DELETE, we'll need to spoof it
  40. // using a hidden input field.
  41. //
  42. // For more information, see the Input library.
  43. // -------------------------------------------------------
  44. if ($method == 'PUT' or $method == 'DELETE')
  45. {
  46. $html .= PHP_EOL.static::hidden('REQUEST_METHOD', $method);
  47. }
  48. return $html.PHP_EOL;
  49. }
  50. /**
  51. * Open a HTML form that accepts file uploads.
  52. *
  53. * @param string $action
  54. * @param string $method
  55. * @param array $attributes
  56. * @return string
  57. */
  58. public static function open_multipart($action = null, $method = 'POST', $attributes = array())
  59. {
  60. $attributes['enctype'] = 'multipart/form-data';
  61. return static::open($action, $method, $attributes);
  62. }
  63. /**
  64. * Close a HTML form.
  65. *
  66. * @return string
  67. */
  68. public static function close()
  69. {
  70. return '</form>'.PHP_EOL;
  71. }
  72. /**
  73. * Generate a hidden field containing the current CSRF token.
  74. *
  75. * @return string
  76. */
  77. public static function token()
  78. {
  79. return static::hidden('csrf_token', static::raw_token());
  80. }
  81. /**
  82. * Retrieve the current CSRF token.
  83. *
  84. * @return string
  85. */
  86. public static function raw_token()
  87. {
  88. // -------------------------------------------------------
  89. // CSRF tokens are stored in the session, so we need to
  90. // make sure a driver has been specified.
  91. // -------------------------------------------------------
  92. if (Config::get('session.driver') == '')
  93. {
  94. throw new \Exception('Sessions must be enabled to retrieve a CSRF token.');
  95. }
  96. return Session::get('csrf_token');
  97. }
  98. /**
  99. * Create a HTML label element.
  100. *
  101. * @param string $name
  102. * @param string $value
  103. * @param array $attributes
  104. * @return string
  105. */
  106. public static function label($name, $value, $attributes = array())
  107. {
  108. static::$labels[] = $name;
  109. return '<label for="'.$name.'"'.HTML::attributes($attributes).'>'.HTML::entities($value).'</label>'.PHP_EOL;
  110. }
  111. /**
  112. * Create a HTML text input element.
  113. *
  114. * @param string $name
  115. * @param string $value
  116. * @param array $attributes
  117. * @return string
  118. */
  119. public static function text($name, $value = null, $attributes = array())
  120. {
  121. return static::input('text', $name, $value, $attributes);
  122. }
  123. /**
  124. * Create a HTML password input element.
  125. *
  126. * @param string $name
  127. * @param array $attributes
  128. * @return string
  129. */
  130. public static function password($name, $attributes = array())
  131. {
  132. return static::input('password', $name, null, $attributes);
  133. }
  134. /**
  135. * Create a HTML hidden input element.
  136. *
  137. * @param string $name
  138. * @param string $value
  139. * @param array $attributes
  140. * @return string
  141. */
  142. public static function hidden($name, $value = null, $attributes = array())
  143. {
  144. return static::input('hidden', $name, $value, $attributes);
  145. }
  146. /**
  147. * Create a HTML email input element.
  148. *
  149. * @param string $name
  150. * @param string $value
  151. * @param array $attributes
  152. * @return string
  153. */
  154. public static function email($name, $value = null, $attributes = array())
  155. {
  156. return static::input('email', $name, $value, $attributes);
  157. }
  158. /**
  159. * Create a HTML URL input element.
  160. *
  161. * @param string $name
  162. * @param string $value
  163. * @param array $attributes
  164. * @return string
  165. */
  166. public static function url($name, $value = null, $attributes = array())
  167. {
  168. return static::input('url', $name, $value, $attributes);
  169. }
  170. /**
  171. * Create a HTML search input element.
  172. *
  173. * @param string $name
  174. * @param string $value
  175. * @param array $attributes
  176. * @return string
  177. */
  178. public static function search($name, $value = null, $attributes = array())
  179. {
  180. return static::input('search', $name, $value, $attributes);
  181. }
  182. /**
  183. * Create a HTML color input element.
  184. *
  185. * @param string $name
  186. * @param string $value
  187. * @param array $attributes
  188. * @return string
  189. */
  190. public static function color($name, $value = null, $attributes = array())
  191. {
  192. return static::input('color', $name, $value, $attributes);
  193. }
  194. /**
  195. * Create a HTML number input element.
  196. *
  197. * @param string $name
  198. * @param string $value
  199. * @param array $attributes
  200. * @return string
  201. */
  202. public static function number($name, $value = null, $attributes = array())
  203. {
  204. return static::input('number', $name, $value, $attributes);
  205. }
  206. /**
  207. * Create a HTML range input element.
  208. *
  209. * @param string $name
  210. * @param string $value
  211. * @param array $attributes
  212. * @return string
  213. */
  214. public static function range($name, $value = null, $attributes = array())
  215. {
  216. return static::input('range', $name, $value, $attributes);
  217. }
  218. /**
  219. * Create a HTML telephone input element.
  220. *
  221. * @param string $name
  222. * @param string $value
  223. * @param array $attributes
  224. * @return string
  225. */
  226. public static function tel($name, $value = null, $attributes = array())
  227. {
  228. return static::input('tel', $name, $value, $attributes);
  229. }
  230. /**
  231. * Create a HTML date input element.
  232. *
  233. * @param string $name
  234. * @param string $value
  235. * @param array $attributes
  236. * @return string
  237. */
  238. public static function date($name, $value = null, $attributes = array())
  239. {
  240. return static::input('date', $name, $value, $attributes);
  241. }
  242. /**
  243. * Create a HTML time input element.
  244. *
  245. * @param string $name
  246. * @param string $value
  247. * @param array $attributes
  248. * @return string
  249. */
  250. public static function time($name, $value = null, $attributes = array())
  251. {
  252. return static::input('time', $name, $value, $attributes);
  253. }
  254. /**
  255. * Create a HTML datetime input element.
  256. *
  257. * @param string $name
  258. * @param string $value
  259. * @param array $attributes
  260. * @return string
  261. */
  262. public static function datetime($name, $value = null, $attributes = array())
  263. {
  264. return static::input('datetime', $name, $value, $attributes);
  265. }
  266. /**
  267. * Create a HTML local datetime input element.
  268. *
  269. * @param string $name
  270. * @param string $value
  271. * @param array $attributes
  272. * @return string
  273. */
  274. public static function datetime_local($name, $value = null, $attributes = array())
  275. {
  276. return static::input('datetime-local', $name, $value, $attributes);
  277. }
  278. /**
  279. * Create a HTML file input element.
  280. *
  281. * @param string $name
  282. * @param array $attributes
  283. * @return string
  284. */
  285. public static function file($name, $attributes = array())
  286. {
  287. return static::input('file', $name, null, $attributes);
  288. }
  289. /**
  290. * Create a HTML submit input element.
  291. *
  292. * @param string $value
  293. * @param array $attributes
  294. * @return string
  295. */
  296. public static function submit($value, $attributes = array())
  297. {
  298. return static::input('submit', null, $value, $attributes);
  299. }
  300. /**
  301. * Create a HTML reset input element.
  302. *
  303. * @param string $value
  304. * @param array $attributes
  305. * @return string
  306. */
  307. public static function reset($value, $attributes = array())
  308. {
  309. return static::input('reset', null, $value, $attributes);
  310. }
  311. /**
  312. * Create a HTML image input element.
  313. *
  314. * @param string $value
  315. * @param array $attributes
  316. * @return string
  317. */
  318. public static function image($value, $attributes = array())
  319. {
  320. return static::input('image', null, $value, $attributes);
  321. }
  322. /**
  323. * Create a HTML button element.
  324. *
  325. * @param string $name
  326. * @param string $value
  327. * @param array $attributes
  328. * @return string
  329. */
  330. public static function button($value, $attributes = array())
  331. {
  332. return '<button'.HTML::attributes($attributes).'>'.HTML::entities($value).'</button>'.PHP_EOL;
  333. }
  334. /**
  335. * Create a HTML checkbox input element.
  336. *
  337. * @param string $name
  338. * @param string $value
  339. * @param bool $checked
  340. * @param array $attributes
  341. * @return string
  342. */
  343. public static function checkbox($name, $value = null, $checked = false, $attributes = array())
  344. {
  345. return static::checkable('checkbox', $name, $value, $checked, $attributes);
  346. }
  347. /**
  348. * Create a HTML radio button input element.
  349. *
  350. * @param string $name
  351. * @param string $value
  352. * @param bool $checked
  353. * @param array $attributes
  354. * @return string
  355. */
  356. public static function radio($name, $value = null, $checked = false, $attributes = array())
  357. {
  358. return static::checkable('radio', $name, $value, $checked, $attributes);
  359. }
  360. /**
  361. * Create a checkable input element.
  362. *
  363. * @param string $type
  364. * @param string $name
  365. * @param string $value
  366. * @param bool $checked
  367. * @param array $attributes
  368. * @return string
  369. */
  370. private static function checkable($type, $name, $value, $checked, $attributes)
  371. {
  372. if ($checked === true)
  373. {
  374. $attributes['checked'] = 'checked';
  375. }
  376. $attributes['id'] = static::id($name, $attributes);
  377. return static::input($type, $name, $value, $attributes);
  378. }
  379. /**
  380. * Create a HTML textarea element.
  381. *
  382. * @param string $name
  383. * @param string $value
  384. * @param array $attributes
  385. * @return string
  386. */
  387. public static function textarea($name, $value = '', $attributes = array())
  388. {
  389. $attributes['name'] = $name;
  390. $attributes['id'] = static::id($name, $attributes);
  391. // -------------------------------------------------------
  392. // Set the default number of rows.
  393. // -------------------------------------------------------
  394. if ( ! isset($attributes['rows']))
  395. {
  396. $attributes['rows'] = 10;
  397. }
  398. // -------------------------------------------------------
  399. // Set the default number of columns.
  400. // -------------------------------------------------------
  401. if ( ! isset($attributes['cols']))
  402. {
  403. $attributes['cols'] = 50;
  404. }
  405. return '<textarea'.HTML::attributes($attributes).'>'.HTML::entities($value).'</textarea>'.PHP_EOL;
  406. }
  407. /**
  408. * Create a HTML select element.
  409. *
  410. * @param string $name
  411. * @param array $options
  412. * @param string $selected
  413. * @param array $attributes
  414. * @return string
  415. */
  416. public static function select($name, $options = array(), $selected = null, $attributes = array())
  417. {
  418. $attributes['name'] = $name;
  419. $attributes['id'] = static::id($name, $attributes);
  420. $html_options = array();
  421. foreach ($options as $value => $display)
  422. {
  423. $option_attributes = array();
  424. $option_attributes['value'] = HTML::entities($value);
  425. $option_attributes['selected'] = ($value == $selected) ? 'selected' : null;
  426. $html_options[] = '<option'.HTML::attributes($option_attributes).'>'.HTML::entities($display).'</option>';
  427. }
  428. return '<select'.HTML::attributes($attributes).'>'.implode('', $html_options).'</select>'.PHP_EOL;
  429. }
  430. /**
  431. * Create a HTML input element.
  432. *
  433. * @param string $name
  434. * @param mixed $value
  435. * @param array $attributes
  436. * @return string
  437. */
  438. public static function input($type, $name, $value = null, $attributes = array())
  439. {
  440. $attributes['type'] = $type;
  441. $attributes['name'] = $name;
  442. $attributes['value'] = $value;
  443. $attributes['id'] = static::id($name, $attributes);
  444. return '<input'.HTML::attributes($attributes).'>'.PHP_EOL;
  445. }
  446. /**
  447. * Determine the ID attribute for a form element.
  448. *
  449. * @param string $name
  450. * @param array $attributes
  451. * @return mixed
  452. */
  453. private static function id($name, $attributes)
  454. {
  455. // -------------------------------------------------------
  456. // If an ID attribute was already explicitly specified
  457. // for the element, just use that.
  458. // -------------------------------------------------------
  459. if (array_key_exists('id', $attributes))
  460. {
  461. return $attributes['id'];
  462. }
  463. // -------------------------------------------------------
  464. // If a label element was created with a value matching
  465. // the name of the form element, use the name as the ID.
  466. // -------------------------------------------------------
  467. if (in_array($name, static::$labels))
  468. {
  469. return $name;
  470. }
  471. }
  472. }