form.php 9.1 KB

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