form.php 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417
  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 number input element.
  177. *
  178. * @param string $name
  179. * @param string $value
  180. * @param array $attributes
  181. * @return string
  182. */
  183. public static function number($name, $value = null, $attributes = array())
  184. {
  185. return static::input('number', $name, $value, $attributes);
  186. }
  187. /**
  188. * Create a HTML telephone input element.
  189. *
  190. * @param string $name
  191. * @param string $value
  192. * @param array $attributes
  193. * @return string
  194. */
  195. public static function tel($name, $value = null, $attributes = array())
  196. {
  197. return static::input('tel', $name, $value, $attributes);
  198. }
  199. /**
  200. * Create a HTML file input element.
  201. *
  202. * @param string $name
  203. * @param array $attributes
  204. * @return string
  205. */
  206. public static function file($name, $attributes = array())
  207. {
  208. return static::input('file', $name, null, $attributes);
  209. }
  210. /**
  211. * Create a HTML submit input element.
  212. *
  213. * @param string $name
  214. * @param array $attributes
  215. * @return string
  216. */
  217. public static function submit($value, $attributes = array())
  218. {
  219. return static::input('submit', null, $value, $attributes);
  220. }
  221. /**
  222. * Create a HTML button element.
  223. *
  224. * @param string $name
  225. * @param string $value
  226. * @param array $attributes
  227. * @return string
  228. */
  229. public static function button($value, $attributes = array())
  230. {
  231. return '<button'.HTML::attributes($attributes).'>'.HTML::entities($value).'</button>'.PHP_EOL;
  232. }
  233. /**
  234. * Create a HTML checkbox input element.
  235. *
  236. * @param string $name
  237. * @param string $value
  238. * @param bool $checked
  239. * @param array $attributes
  240. * @return string
  241. */
  242. public static function checkbox($name, $value = null, $checked = false, $attributes = array())
  243. {
  244. return static::checkable('checkbox', $name, $value, $checked, $attributes);
  245. }
  246. /**
  247. * Create a HTML radio button input element.
  248. *
  249. * @param string $name
  250. * @param string $value
  251. * @param bool $checked
  252. * @param array $attributes
  253. * @return string
  254. */
  255. public static function radio($name, $value = null, $checked = false, $attributes = array())
  256. {
  257. return static::checkable('radio', $name, $value, $checked, $attributes);
  258. }
  259. /**
  260. * Create a checkable input element.
  261. *
  262. * @param string $type
  263. * @param string $name
  264. * @param string $value
  265. * @param bool $checked
  266. * @param array $attributes
  267. * @return string
  268. */
  269. private static function checkable($type, $name, $value, $checked, $attributes)
  270. {
  271. if ($checked === true)
  272. {
  273. $attributes['checked'] = 'checked';
  274. }
  275. $attributes['id'] = static::id($name, $attributes);
  276. return static::input($type, $name, $value, $attributes);
  277. }
  278. /**
  279. * Create a HTML textarea element.
  280. *
  281. * @param string $name
  282. * @param string $value
  283. * @param array $attributes
  284. * @return string
  285. */
  286. public static function textarea($name, $value = '', $attributes = array())
  287. {
  288. $attributes['name'] = $name;
  289. $attributes['id'] = static::id($name, $attributes);
  290. // -------------------------------------------------------
  291. // Set the default number of rows.
  292. // -------------------------------------------------------
  293. if ( ! isset($attributes['rows']))
  294. {
  295. $attributes['rows'] = 10;
  296. }
  297. // -------------------------------------------------------
  298. // Set the default number of columns.
  299. // -------------------------------------------------------
  300. if ( ! isset($attributes['cols']))
  301. {
  302. $attributes['cols'] = 50;
  303. }
  304. return '<textarea'.HTML::attributes($attributes).'>'.HTML::entities($value).'</textarea>'.PHP_EOL;
  305. }
  306. /**
  307. * Create a HTML select element.
  308. *
  309. * @param string $name
  310. * @param array $options
  311. * @param string $selected
  312. * @param array $attributes
  313. * @return string
  314. */
  315. public static function select($name, $options = array(), $selected = null, $attributes = array())
  316. {
  317. $attributes['name'] = $name;
  318. $attributes['id'] = static::id($name, $attributes);
  319. $html_options = array();
  320. foreach ($options as $value => $display)
  321. {
  322. $option_attributes = array();
  323. $option_attributes['value'] = HTML::entities($value);
  324. $option_attributes['selected'] = ($value == $selected) ? 'selected' : null;
  325. $html_options[] = '<option'.HTML::attributes($option_attributes).'>'.HTML::entities($display).'</option>';
  326. }
  327. return '<select'.HTML::attributes($attributes).'>'.implode('', $html_options).'</select>'.PHP_EOL;
  328. }
  329. /**
  330. * Create a HTML input element.
  331. *
  332. * @param string $name
  333. * @param mixed $value
  334. * @param array $attributes
  335. * @return string
  336. */
  337. public static function input($type, $name, $value = null, $attributes = array())
  338. {
  339. $attributes['type'] = $type;
  340. $attributes['name'] = $name;
  341. $attributes['value'] = $value;
  342. $attributes['id'] = static::id($name, $attributes);
  343. return '<input'.HTML::attributes($attributes).'>'.PHP_EOL;
  344. }
  345. /**
  346. * Determine the ID attribute for a form element.
  347. *
  348. * @param string $name
  349. * @param array $attributes
  350. * @return mixed
  351. */
  352. private static function id($name, $attributes)
  353. {
  354. // -------------------------------------------------------
  355. // If an ID attribute was already explicitly specified
  356. // for the element, just use that.
  357. // -------------------------------------------------------
  358. if (array_key_exists('id', $attributes))
  359. {
  360. return $attributes['id'];
  361. }
  362. // -------------------------------------------------------
  363. // If a label element was created with a value matching
  364. // the name of the form element, use the name as the ID.
  365. // -------------------------------------------------------
  366. if (in_array($name, static::$labels))
  367. {
  368. return $name;
  369. }
  370. }
  371. }