form.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519
  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 string $value
  132. * @param array $attributes
  133. * @return string
  134. */
  135. public static function hidden($name, $value = null, $attributes = array())
  136. {
  137. return static::input('hidden', $name, $value, $attributes);
  138. }
  139. /**
  140. * Create a HTML email input element.
  141. *
  142. * @param string $name
  143. * @param string $value
  144. * @param array $attributes
  145. * @return string
  146. */
  147. public static function email($name, $value = null, $attributes = array())
  148. {
  149. return static::input('email', $name, $value, $attributes);
  150. }
  151. /**
  152. * Create a HTML URL input element.
  153. *
  154. * @param string $name
  155. * @param string $value
  156. * @param array $attributes
  157. * @return string
  158. */
  159. public static function url($name, $value = null, $attributes = array())
  160. {
  161. return static::input('url', $name, $value, $attributes);
  162. }
  163. /**
  164. * Create a HTML search input element.
  165. *
  166. * @param string $name
  167. * @param string $value
  168. * @param array $attributes
  169. * @return string
  170. */
  171. public static function search($name, $value = null, $attributes = array())
  172. {
  173. return static::input('search', $name, $value, $attributes);
  174. }
  175. /**
  176. * Create a HTML color input element.
  177. *
  178. * @param string $name
  179. * @param string $value
  180. * @param array $attributes
  181. * @return string
  182. */
  183. public static function color($name, $value = null, $attributes = array())
  184. {
  185. return static::input('color', $name, $value, $attributes);
  186. }
  187. /**
  188. * Create a HTML number input element.
  189. *
  190. * @param string $name
  191. * @param string $value
  192. * @param array $attributes
  193. * @return string
  194. */
  195. public static function number($name, $value = null, $attributes = array())
  196. {
  197. return static::input('number', $name, $value, $attributes);
  198. }
  199. /**
  200. * Create a HTML range input element.
  201. *
  202. * @param string $name
  203. * @param string $value
  204. * @param array $attributes
  205. * @return string
  206. */
  207. public static function range($name, $value = null, $attributes = array())
  208. {
  209. return static::input('range', $name, $value, $attributes);
  210. }
  211. /**
  212. * Create a HTML telephone input element.
  213. *
  214. * @param string $name
  215. * @param string $value
  216. * @param array $attributes
  217. * @return string
  218. */
  219. public static function tel($name, $value = null, $attributes = array())
  220. {
  221. return static::input('tel', $name, $value, $attributes);
  222. }
  223. /**
  224. * Create a HTML date input element.
  225. *
  226. * @param string $name
  227. * @param string $value
  228. * @param array $attributes
  229. * @return string
  230. */
  231. public static function date($name, $value = null, $attributes = array())
  232. {
  233. return static::input('date', $name, $value, $attributes);
  234. }
  235. /**
  236. * Create a HTML time input element.
  237. *
  238. * @param string $name
  239. * @param string $value
  240. * @param array $attributes
  241. * @return string
  242. */
  243. public static function time($name, $value = null, $attributes = array())
  244. {
  245. return static::input('time', $name, $value, $attributes);
  246. }
  247. /**
  248. * Create a HTML datetime input element.
  249. *
  250. * @param string $name
  251. * @param string $value
  252. * @param array $attributes
  253. * @return string
  254. */
  255. public static function datetime($name, $value = null, $attributes = array())
  256. {
  257. return static::input('datetime', $name, $value, $attributes);
  258. }
  259. /**
  260. * Create a HTML local datetime input element.
  261. *
  262. * @param string $name
  263. * @param string $value
  264. * @param array $attributes
  265. * @return string
  266. */
  267. public static function datetime_local($name, $value = null, $attributes = array())
  268. {
  269. return static::input('datetime-local', $name, $value, $attributes);
  270. }
  271. /**
  272. * Create a HTML file input element.
  273. *
  274. * @param string $name
  275. * @param array $attributes
  276. * @return string
  277. */
  278. public static function file($name, $attributes = array())
  279. {
  280. return static::input('file', $name, null, $attributes);
  281. }
  282. /**
  283. * Create a HTML submit input element.
  284. *
  285. * @param string $value
  286. * @param array $attributes
  287. * @return string
  288. */
  289. public static function submit($value, $attributes = array())
  290. {
  291. return static::input('submit', null, $value, $attributes);
  292. }
  293. /**
  294. * Create a HTML reset input element.
  295. *
  296. * @param string $value
  297. * @param array $attributes
  298. * @return string
  299. */
  300. public static function reset($value, $attributes = array())
  301. {
  302. return static::input('reset', null, $value, $attributes);
  303. }
  304. /**
  305. * Create a HTML image input element.
  306. *
  307. * @param string $value
  308. * @param array $attributes
  309. * @return string
  310. */
  311. public static function image($value, $attributes = array())
  312. {
  313. return static::input('image', null, $value, $attributes);
  314. }
  315. /**
  316. * Create a HTML button element.
  317. *
  318. * @param string $name
  319. * @param string $value
  320. * @param array $attributes
  321. * @return string
  322. */
  323. public static function button($value, $attributes = array())
  324. {
  325. return '<button'.HTML::attributes($attributes).'>'.HTML::entities($value).'</button>'.PHP_EOL;
  326. }
  327. /**
  328. * Create a HTML checkbox input element.
  329. *
  330. * @param string $name
  331. * @param string $value
  332. * @param bool $checked
  333. * @param array $attributes
  334. * @return string
  335. */
  336. public static function checkbox($name, $value = null, $checked = false, $attributes = array())
  337. {
  338. return static::checkable('checkbox', $name, $value, $checked, $attributes);
  339. }
  340. /**
  341. * Create a HTML radio button input element.
  342. *
  343. * @param string $name
  344. * @param string $value
  345. * @param bool $checked
  346. * @param array $attributes
  347. * @return string
  348. */
  349. public static function radio($name, $value = null, $checked = false, $attributes = array())
  350. {
  351. return static::checkable('radio', $name, $value, $checked, $attributes);
  352. }
  353. /**
  354. * Create a checkable input element.
  355. *
  356. * @param string $type
  357. * @param string $name
  358. * @param string $value
  359. * @param bool $checked
  360. * @param array $attributes
  361. * @return string
  362. */
  363. private static function checkable($type, $name, $value, $checked, $attributes)
  364. {
  365. if ($checked === true)
  366. {
  367. $attributes['checked'] = 'checked';
  368. }
  369. $attributes['id'] = static::id($name, $attributes);
  370. return static::input($type, $name, $value, $attributes);
  371. }
  372. /**
  373. * Create a HTML textarea element.
  374. *
  375. * @param string $name
  376. * @param string $value
  377. * @param array $attributes
  378. * @return string
  379. */
  380. public static function textarea($name, $value = '', $attributes = array())
  381. {
  382. $attributes['name'] = $name;
  383. $attributes['id'] = static::id($name, $attributes);
  384. // -------------------------------------------------------
  385. // Set the default number of rows.
  386. // -------------------------------------------------------
  387. if ( ! isset($attributes['rows']))
  388. {
  389. $attributes['rows'] = 10;
  390. }
  391. // -------------------------------------------------------
  392. // Set the default number of columns.
  393. // -------------------------------------------------------
  394. if ( ! isset($attributes['cols']))
  395. {
  396. $attributes['cols'] = 50;
  397. }
  398. return '<textarea'.HTML::attributes($attributes).'>'.HTML::entities($value).'</textarea>'.PHP_EOL;
  399. }
  400. /**
  401. * Create a HTML select element.
  402. *
  403. * @param string $name
  404. * @param array $options
  405. * @param string $selected
  406. * @param array $attributes
  407. * @return string
  408. */
  409. public static function select($name, $options = array(), $selected = null, $attributes = array())
  410. {
  411. $attributes['name'] = $name;
  412. $attributes['id'] = static::id($name, $attributes);
  413. $html_options = array();
  414. foreach ($options as $value => $display)
  415. {
  416. $option_attributes = array();
  417. $option_attributes['value'] = HTML::entities($value);
  418. $option_attributes['selected'] = ($value == $selected) ? 'selected' : null;
  419. $html_options[] = '<option'.HTML::attributes($option_attributes).'>'.HTML::entities($display).'</option>';
  420. }
  421. return '<select'.HTML::attributes($attributes).'>'.implode('', $html_options).'</select>'.PHP_EOL;
  422. }
  423. /**
  424. * Create a HTML input element.
  425. *
  426. * @param string $name
  427. * @param mixed $value
  428. * @param array $attributes
  429. * @return string
  430. */
  431. public static function input($type, $name, $value = null, $attributes = array())
  432. {
  433. $attributes['type'] = $type;
  434. $attributes['name'] = $name;
  435. $attributes['value'] = $value;
  436. $attributes['id'] = static::id($name, $attributes);
  437. return '<input'.HTML::attributes($attributes).'>'.PHP_EOL;
  438. }
  439. /**
  440. * Determine the ID attribute for a form element.
  441. *
  442. * @param string $name
  443. * @param array $attributes
  444. * @return mixed
  445. */
  446. private static function id($name, $attributes)
  447. {
  448. // -------------------------------------------------------
  449. // If an ID attribute was already explicitly specified
  450. // for the element, just use that.
  451. // -------------------------------------------------------
  452. if (array_key_exists('id', $attributes))
  453. {
  454. return $attributes['id'];
  455. }
  456. // -------------------------------------------------------
  457. // If a label element was created with a value matching
  458. // the name of the form element, use the name as the ID.
  459. // -------------------------------------------------------
  460. if (in_array($name, static::$labels))
  461. {
  462. return $name;
  463. }
  464. }
  465. }