form.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424
  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. $attributes['action'] = HTML::entities(URL::to((is_null($action)) ? Request::uri() : $action));
  20. // -------------------------------------------------------
  21. // If the request method is PUT or DELETE, we'll default
  22. // the request method to POST since the reqeust method
  23. // is being spoofed by the form.
  24. // -------------------------------------------------------
  25. $attributes['method'] = ($method == 'PUT' or $method == 'DELETE') ? 'POST' : $method;
  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::input('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_for_files($action = null, $method = 'POST', $attributes = array())
  52. {
  53. $attributes['enctype'] = 'multipart/form-data';
  54. return static::open($action, $method, $attributes);
  55. }
  56. /**
  57. * Generate a hidden field containing the current CSRF token.
  58. *
  59. * @return string
  60. */
  61. public static function token()
  62. {
  63. return static::input('hidden', 'csrf_token', static::raw_token());
  64. }
  65. /**
  66. * Retrieve the current CSRF token.
  67. *
  68. * @return string
  69. */
  70. public static function raw_token()
  71. {
  72. // -------------------------------------------------------
  73. // CSRF tokens are stored in the session, so we need to
  74. // make sure a driver has been specified.
  75. // -------------------------------------------------------
  76. if (Config::get('session.driver') == '')
  77. {
  78. throw new \Exception('Sessions must be enabled to retrieve a CSRF token.');
  79. }
  80. return Session::get('csrf_token');
  81. }
  82. /**
  83. * Create a HTML label element.
  84. *
  85. * @param string $name
  86. * @param string $value
  87. * @param array $attributes
  88. * @return string
  89. */
  90. public static function label($name, $value, $attributes = array())
  91. {
  92. static::$labels[] = $name;
  93. return '<label for="'.$name.'"'.HTML::attributes($attributes).'>'.HTML::entities($value).'</label>'.PHP_EOL;
  94. }
  95. /**
  96. * Create a HTML input element.
  97. *
  98. * @param string $name
  99. * @param mixed $value
  100. * @param array $attributes
  101. * @return string
  102. */
  103. public static function input($type, $name, $value = null, $attributes = array())
  104. {
  105. return '<input'.HTML::attributes(array_merge($attributes, array('type' => $type, 'name' => $name, 'value' => $value, 'id' => static::id($name, $attributes)))).'>'.PHP_EOL;
  106. }
  107. /**
  108. * Create a HTML password input element.
  109. *
  110. * @param string $name
  111. * @param array $attributes
  112. * @return string
  113. */
  114. public static function password($name, $attributes = array())
  115. {
  116. return static::input('password', $name, null, $attributes);
  117. }
  118. /**
  119. * Create a HTML email input element.
  120. *
  121. * @param string $name
  122. * @param string $value
  123. * @param array $attributes
  124. * @return string
  125. */
  126. public static function email($name, $value = null, $attributes = array())
  127. {
  128. return static::input('email', $name, $value, $attributes);
  129. }
  130. /**
  131. * Create a HTML telephone input element.
  132. *
  133. * @param string $name
  134. * @param string $value
  135. * @param array $attributes
  136. * @return string
  137. */
  138. public static function telephone($name, $value = null, $attributes = array())
  139. {
  140. return static::input('tel', $name, $value, $attributes);
  141. }
  142. /**
  143. * Create a HTML search input element.
  144. *
  145. * @param string $name
  146. * @param string $value
  147. * @param array $attributes
  148. * @return string
  149. */
  150. public static function search($name, $value = null, $attributes = array())
  151. {
  152. return static::input('search', $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 color input element.
  168. *
  169. * @param string $name
  170. * @param string $value
  171. * @param array $attributes
  172. * @return string
  173. */
  174. public static function color($name, $value = null, $attributes = array())
  175. {
  176. return static::input('color', $name, $value, $attributes);
  177. }
  178. /**
  179. * Create a HTML date input element.
  180. *
  181. * @param string $name
  182. * @param string $value
  183. * @param array $attributes
  184. * @return string
  185. */
  186. public static function date($name, $value = null, $attributes = array())
  187. {
  188. return static::input('date', $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 file input element.
  216. *
  217. * @param string $name
  218. * @param array $attributes
  219. * @return string
  220. */
  221. public static function file($name, $attributes = array())
  222. {
  223. return static::input('file', $name, null, $attributes);
  224. }
  225. /**
  226. * Create a HTML textarea element.
  227. *
  228. * @param string $name
  229. * @param string $value
  230. * @param array $attributes
  231. * @return string
  232. */
  233. public static function textarea($name, $value = '', $attributes = array())
  234. {
  235. $attributes = array_merge($attributes, array('id' => static::id($name, $attributes), 'name' => $name));
  236. if ( ! isset($attributes['rows']))
  237. {
  238. $attributes['rows'] = 10;
  239. }
  240. if ( ! isset($attributes['cols']))
  241. {
  242. $attributes['cols'] = 50;
  243. }
  244. return '<textarea'.HTML::attributes($attributes).'>'.HTML::entities($value).'</textarea>'.PHP_EOL;
  245. }
  246. /**
  247. * Create a HTML select element.
  248. *
  249. * @param string $name
  250. * @param array $options
  251. * @param string $selected
  252. * @param array $attributes
  253. * @return string
  254. */
  255. public static function select($name, $options = array(), $selected = null, $attributes = array())
  256. {
  257. $attributes = array_merge($attributes, array('id' => static::id($name, $attributes), 'name' => $name));
  258. $html = array();
  259. foreach ($options as $value => $display)
  260. {
  261. $html[] = '<option'.HTML::attributes(array('value' => HTML::entities($value), 'selected' => ($value == $selected) ? 'selected' : null)).'>'.HTML::entities($display).'</option>';
  262. }
  263. return '<select'.HTML::attributes($attributes).'>'.implode('', $html).'</select>'.PHP_EOL;
  264. }
  265. /**
  266. * Create a HTML checkbox input element.
  267. *
  268. * @param string $name
  269. * @param string $value
  270. * @param bool $checked
  271. * @param array $attributes
  272. * @return string
  273. */
  274. public static function checkbox($name, $value = null, $checked = false, $attributes = array())
  275. {
  276. return static::checkable('checkbox', $name, $value, $checked, $attributes);
  277. }
  278. /**
  279. * Create a HTML radio button input element.
  280. *
  281. * @param string $name
  282. * @param string $value
  283. * @param bool $checked
  284. * @param array $attributes
  285. * @return string
  286. */
  287. public static function radio($name, $value = null, $checked = false, $attributes = array())
  288. {
  289. return static::checkable('radio', $name, $value, $checked, $attributes);
  290. }
  291. /**
  292. * Create a checkable input element.
  293. *
  294. * @param string $type
  295. * @param string $name
  296. * @param string $value
  297. * @param bool $checked
  298. * @param array $attributes
  299. * @return string
  300. */
  301. private static function checkable($type, $name, $value, $checked, $attributes)
  302. {
  303. $attributes = array_merge($attributes, array('id' => static::id($name, $attributes), 'checked' => ($checked) ? 'checked' : null));
  304. return static::input($type, $name, $value, $attributes);
  305. }
  306. /**
  307. * Create a HTML submit input element.
  308. *
  309. * @param string $value
  310. * @param array $attributes
  311. * @return string
  312. */
  313. public static function submit($value, $attributes = array())
  314. {
  315. return static::input('submit', null, $value, $attributes);
  316. }
  317. /**
  318. * Create a HTML reset input element.
  319. *
  320. * @param string $value
  321. * @param array $attributes
  322. * @return string
  323. */
  324. public static function reset($value, $attributes = array())
  325. {
  326. return static::input('reset', null, $value, $attributes);
  327. }
  328. /**
  329. * Create a HTML image input element.
  330. *
  331. * @param string $url
  332. * @param array $attributes
  333. * @return string
  334. */
  335. public static function image($url, $name = null, $attributes = array())
  336. {
  337. $attributes['src'] = URL::to_asset($url);
  338. return static::input('image', $name, null, $attributes);
  339. }
  340. /**
  341. * Create a HTML button element.
  342. *
  343. * @param string $name
  344. * @param string $value
  345. * @param array $attributes
  346. * @return string
  347. */
  348. public static function button($value, $attributes = array())
  349. {
  350. return '<button'.HTML::attributes($attributes).'>'.HTML::entities($value).'</button>'.PHP_EOL;
  351. }
  352. /**
  353. * Determine the ID attribute for a form element.
  354. *
  355. * @param string $name
  356. * @param array $attributes
  357. * @return mixed
  358. */
  359. private static function id($name, $attributes)
  360. {
  361. // -------------------------------------------------------
  362. // If an ID attribute was already explicitly specified
  363. // for the element in its attributes, use that ID.
  364. // -------------------------------------------------------
  365. if (array_key_exists('id', $attributes))
  366. {
  367. return $attributes['id'];
  368. }
  369. // -------------------------------------------------------
  370. // If a label element was created with a value matching
  371. // the name of the form element, use the name as the ID.
  372. // -------------------------------------------------------
  373. if (in_array($name, static::$labels))
  374. {
  375. return $name;
  376. }
  377. }
  378. }