form.php 12 KB

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