form.php 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395
  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. // If the request method is PUT or DELETE, we'll default the request method to POST
  21. // since the request method is being spoofed by the form.
  22. $attributes['method'] = ($method == 'PUT' or $method == 'DELETE') ? 'POST' : $method;
  23. if ( ! array_key_exists('accept-charset', $attributes))
  24. {
  25. $attributes['accept-charset'] = Config::get('application.encoding');
  26. }
  27. $html = '<form'.HTML::attributes($attributes).'>';
  28. // If the request method is PUT or DELETE, create a hidden input element with the
  29. // request method in it since HTML forms do not support these two methods.
  30. if ($method == 'PUT' or $method == 'DELETE')
  31. {
  32. $html .= PHP_EOL.static::input('hidden', 'REQUEST_METHOD', $method);
  33. }
  34. return $html.PHP_EOL;
  35. }
  36. /**
  37. * Open a HTML form that accepts file uploads.
  38. *
  39. * @param string $action
  40. * @param string $method
  41. * @param array $attributes
  42. * @return string
  43. */
  44. public static function open_for_files($action = null, $method = 'POST', $attributes = array())
  45. {
  46. $attributes['enctype'] = 'multipart/form-data';
  47. return static::open($action, $method, $attributes);
  48. }
  49. /**
  50. * Generate a hidden field containing the current CSRF token.
  51. *
  52. * @return string
  53. */
  54. public static function token()
  55. {
  56. return static::input('hidden', 'csrf_token', static::raw_token());
  57. }
  58. /**
  59. * Retrieve the current CSRF token.
  60. *
  61. * @return string
  62. */
  63. public static function raw_token()
  64. {
  65. if (Config::get('session.driver') == '')
  66. {
  67. throw new \Exception('Sessions must be enabled to retrieve a CSRF token.');
  68. }
  69. return Session::get('csrf_token');
  70. }
  71. /**
  72. * Create a HTML label element.
  73. *
  74. * @param string $name
  75. * @param string $value
  76. * @param array $attributes
  77. * @return string
  78. */
  79. public static function label($name, $value, $attributes = array())
  80. {
  81. static::$labels[] = $name;
  82. return '<label for="'.$name.'"'.HTML::attributes($attributes).'>'.HTML::entities($value).'</label>'.PHP_EOL;
  83. }
  84. /**
  85. * Create a HTML input element.
  86. *
  87. * @param string $name
  88. * @param mixed $value
  89. * @param array $attributes
  90. * @return string
  91. */
  92. public static function input($type, $name, $value = null, $attributes = array())
  93. {
  94. return '<input'.HTML::attributes(array_merge($attributes, array('type' => $type, 'name' => $name, 'value' => $value, 'id' => static::id($name, $attributes)))).'>'.PHP_EOL;
  95. }
  96. /**
  97. * Create a HTML text input element.
  98. *
  99. * @param string $name
  100. * @param string $value
  101. * @param array $attributes
  102. * @return string
  103. */
  104. public static function text($name, $value = null, $attributes = array())
  105. {
  106. return static::input('text', $name, $value, $attributes);
  107. }
  108. /**
  109. * Create a HTML password input element.
  110. *
  111. * @param string $name
  112. * @param array $attributes
  113. * @return string
  114. */
  115. public static function password($name, $attributes = array())
  116. {
  117. return static::input('password', $name, null, $attributes);
  118. }
  119. /**
  120. * Create a HTML hidden input element.
  121. *
  122. * @param string $name
  123. * @param string $value
  124. * @param array $attributes
  125. * @return string
  126. */
  127. public static function hidden($name, $value = null, $attributes = array())
  128. {
  129. return static::input('hidden', $name, $value, $attributes);
  130. }
  131. /**
  132. * Create a HTML search input element.
  133. *
  134. * @param string $name
  135. * @param string $value
  136. * @param array $attributes
  137. * @return string
  138. */
  139. public static function search($name, $value = null, $attributes = array())
  140. {
  141. return static::input('search', $name, $value, $attributes);
  142. }
  143. /**
  144. * Create a HTML email input element.
  145. *
  146. * @param string $name
  147. * @param string $value
  148. * @param array $attributes
  149. * @return string
  150. */
  151. public static function email($name, $value = null, $attributes = array())
  152. {
  153. return static::input('email', $name, $value, $attributes);
  154. }
  155. /**
  156. * Create a HTML telephone input element.
  157. *
  158. * @param string $name
  159. * @param string $value
  160. * @param array $attributes
  161. * @return string
  162. */
  163. public static function telephone($name, $value = null, $attributes = array())
  164. {
  165. return static::input('tel', $name, $value, $attributes);
  166. }
  167. /**
  168. * Create a HTML URL input element.
  169. *
  170. * @param string $name
  171. * @param string $value
  172. * @param array $attributes
  173. * @return string
  174. */
  175. public static function url($name, $value = null, $attributes = array())
  176. {
  177. return static::input('url', $name, $value, $attributes);
  178. }
  179. /**
  180. * Create a HTML number input element.
  181. *
  182. * @param string $name
  183. * @param string $value
  184. * @param array $attributes
  185. * @return string
  186. */
  187. public static function number($name, $value = null, $attributes = array())
  188. {
  189. return static::input('number', $name, $value, $attributes);
  190. }
  191. /**
  192. * Create a HTML file input element.
  193. *
  194. * @param string $name
  195. * @param array $attributes
  196. * @return string
  197. */
  198. public static function file($name, $attributes = array())
  199. {
  200. return static::input('file', $name, null, $attributes);
  201. }
  202. /**
  203. * Create a HTML textarea element.
  204. *
  205. * @param string $name
  206. * @param string $value
  207. * @param array $attributes
  208. * @return string
  209. */
  210. public static function textarea($name, $value = '', $attributes = array())
  211. {
  212. $attributes = array_merge($attributes, array('id' => static::id($name, $attributes), 'name' => $name));
  213. if ( ! isset($attributes['rows']))
  214. {
  215. $attributes['rows'] = 10;
  216. }
  217. if ( ! isset($attributes['cols']))
  218. {
  219. $attributes['cols'] = 50;
  220. }
  221. return '<textarea'.HTML::attributes($attributes).'>'.HTML::entities($value).'</textarea>'.PHP_EOL;
  222. }
  223. /**
  224. * Create a HTML select element.
  225. *
  226. * @param string $name
  227. * @param array $options
  228. * @param string $selected
  229. * @param array $attributes
  230. * @return string
  231. */
  232. public static function select($name, $options = array(), $selected = null, $attributes = array())
  233. {
  234. $attributes = array_merge($attributes, array('id' => static::id($name, $attributes), 'name' => $name));
  235. $html = array();
  236. foreach ($options as $value => $display)
  237. {
  238. $html[] = '<option'.HTML::attributes(array('value' => HTML::entities($value), 'selected' => ($value == $selected) ? 'selected' : null)).'>'.HTML::entities($display).'</option>';
  239. }
  240. return '<select'.HTML::attributes($attributes).'>'.implode('', $html).'</select>'.PHP_EOL;
  241. }
  242. /**
  243. * Create a HTML checkbox input element.
  244. *
  245. * @param string $name
  246. * @param string $value
  247. * @param bool $checked
  248. * @param array $attributes
  249. * @return string
  250. */
  251. public static function checkbox($name, $value = null, $checked = false, $attributes = array())
  252. {
  253. return static::checkable('checkbox', $name, $value, $checked, $attributes);
  254. }
  255. /**
  256. * Create a HTML radio button input element.
  257. *
  258. * @param string $name
  259. * @param string $value
  260. * @param bool $checked
  261. * @param array $attributes
  262. * @return string
  263. */
  264. public static function radio($name, $value = null, $checked = false, $attributes = array())
  265. {
  266. return static::checkable('radio', $name, $value, $checked, $attributes);
  267. }
  268. /**
  269. * Create a checkable input element.
  270. *
  271. * @param string $type
  272. * @param string $name
  273. * @param string $value
  274. * @param bool $checked
  275. * @param array $attributes
  276. * @return string
  277. */
  278. private static function checkable($type, $name, $value, $checked, $attributes)
  279. {
  280. $attributes = array_merge($attributes, array('id' => static::id($name, $attributes), 'checked' => ($checked) ? 'checked' : null));
  281. return static::input($type, $name, $value, $attributes);
  282. }
  283. /**
  284. * Create a HTML submit input element.
  285. *
  286. * @param string $value
  287. * @param array $attributes
  288. * @return string
  289. */
  290. public static function submit($value, $attributes = array())
  291. {
  292. return static::input('submit', null, $value, $attributes);
  293. }
  294. /**
  295. * Create a HTML reset input element.
  296. *
  297. * @param string $value
  298. * @param array $attributes
  299. * @return string
  300. */
  301. public static function reset($value, $attributes = array())
  302. {
  303. return static::input('reset', null, $value, $attributes);
  304. }
  305. /**
  306. * Create a HTML image input element.
  307. *
  308. * @param string $url
  309. * @param array $attributes
  310. * @return string
  311. */
  312. public static function image($url, $name = null, $attributes = array())
  313. {
  314. $attributes['src'] = URL::to_asset($url);
  315. return static::input('image', $name, null, $attributes);
  316. }
  317. /**
  318. * Create a HTML button element.
  319. *
  320. * @param string $name
  321. * @param string $value
  322. * @param array $attributes
  323. * @return string
  324. */
  325. public static function button($value, $attributes = array())
  326. {
  327. return '<button'.HTML::attributes($attributes).'>'.HTML::entities($value).'</button>'.PHP_EOL;
  328. }
  329. /**
  330. * Determine the ID attribute for a form element.
  331. *
  332. * An explicitly specified ID in the attributes takes first precedence, then
  333. * the label names will be checked for a label matching the element name.
  334. *
  335. * @param string $name
  336. * @param array $attributes
  337. * @return mixed
  338. */
  339. private static function id($name, $attributes)
  340. {
  341. if (array_key_exists('id', $attributes))
  342. {
  343. return $attributes['id'];
  344. }
  345. if (in_array($name, static::$labels))
  346. {
  347. return $name;
  348. }
  349. }
  350. }