form.php 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369
  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 password input element.
  98. *
  99. * @param string $name
  100. * @param array $attributes
  101. * @return string
  102. */
  103. public static function password($name, $attributes = array())
  104. {
  105. return static::input('password', $name, null, $attributes);
  106. }
  107. /**
  108. * Create a HTML search input element.
  109. *
  110. * @param string $name
  111. * @param string $value
  112. * @param array $attributes
  113. * @return string
  114. */
  115. public static function search($name, $value = null, $attributes = array())
  116. {
  117. return static::input('search', $name, $value, $attributes);
  118. }
  119. /**
  120. * Create a HTML email input element.
  121. *
  122. * @param string $name
  123. * @param string $value
  124. * @param array $attributes
  125. * @return string
  126. */
  127. public static function email($name, $value = null, $attributes = array())
  128. {
  129. return static::input('email', $name, $value, $attributes);
  130. }
  131. /**
  132. * Create a HTML telephone input element.
  133. *
  134. * @param string $name
  135. * @param string $value
  136. * @param array $attributes
  137. * @return string
  138. */
  139. public static function telephone($name, $value = null, $attributes = array())
  140. {
  141. return static::input('tel', $name, $value, $attributes);
  142. }
  143. /**
  144. * Create a HTML URL input element.
  145. *
  146. * @param string $name
  147. * @param string $value
  148. * @param array $attributes
  149. * @return string
  150. */
  151. public static function url($name, $value = null, $attributes = array())
  152. {
  153. return static::input('url', $name, $value, $attributes);
  154. }
  155. /**
  156. * Create a HTML number input element.
  157. *
  158. * @param string $name
  159. * @param string $value
  160. * @param array $attributes
  161. * @return string
  162. */
  163. public static function number($name, $value = null, $attributes = array())
  164. {
  165. return static::input('number', $name, $value, $attributes);
  166. }
  167. /**
  168. * Create a HTML file input element.
  169. *
  170. * @param string $name
  171. * @param array $attributes
  172. * @return string
  173. */
  174. public static function file($name, $attributes = array())
  175. {
  176. return static::input('file', $name, null, $attributes);
  177. }
  178. /**
  179. * Create a HTML textarea element.
  180. *
  181. * @param string $name
  182. * @param string $value
  183. * @param array $attributes
  184. * @return string
  185. */
  186. public static function textarea($name, $value = '', $attributes = array())
  187. {
  188. $attributes = array_merge($attributes, array('id' => static::id($name, $attributes), 'name' => $name));
  189. if ( ! isset($attributes['rows']))
  190. {
  191. $attributes['rows'] = 10;
  192. }
  193. if ( ! isset($attributes['cols']))
  194. {
  195. $attributes['cols'] = 50;
  196. }
  197. return '<textarea'.HTML::attributes($attributes).'>'.HTML::entities($value).'</textarea>'.PHP_EOL;
  198. }
  199. /**
  200. * Create a HTML select element.
  201. *
  202. * @param string $name
  203. * @param array $options
  204. * @param string $selected
  205. * @param array $attributes
  206. * @return string
  207. */
  208. public static function select($name, $options = array(), $selected = null, $attributes = array())
  209. {
  210. $attributes = array_merge($attributes, array('id' => static::id($name, $attributes), 'name' => $name));
  211. $html = array();
  212. foreach ($options as $value => $display)
  213. {
  214. $html[] = '<option'.HTML::attributes(array('value' => HTML::entities($value), 'selected' => ($value == $selected) ? 'selected' : null)).'>'.HTML::entities($display).'</option>';
  215. }
  216. return '<select'.HTML::attributes($attributes).'>'.implode('', $html).'</select>'.PHP_EOL;
  217. }
  218. /**
  219. * Create a HTML checkbox input element.
  220. *
  221. * @param string $name
  222. * @param string $value
  223. * @param bool $checked
  224. * @param array $attributes
  225. * @return string
  226. */
  227. public static function checkbox($name, $value = null, $checked = false, $attributes = array())
  228. {
  229. return static::checkable('checkbox', $name, $value, $checked, $attributes);
  230. }
  231. /**
  232. * Create a HTML radio button input element.
  233. *
  234. * @param string $name
  235. * @param string $value
  236. * @param bool $checked
  237. * @param array $attributes
  238. * @return string
  239. */
  240. public static function radio($name, $value = null, $checked = false, $attributes = array())
  241. {
  242. return static::checkable('radio', $name, $value, $checked, $attributes);
  243. }
  244. /**
  245. * Create a checkable input element.
  246. *
  247. * @param string $type
  248. * @param string $name
  249. * @param string $value
  250. * @param bool $checked
  251. * @param array $attributes
  252. * @return string
  253. */
  254. private static function checkable($type, $name, $value, $checked, $attributes)
  255. {
  256. $attributes = array_merge($attributes, array('id' => static::id($name, $attributes), 'checked' => ($checked) ? 'checked' : null));
  257. return static::input($type, $name, $value, $attributes);
  258. }
  259. /**
  260. * Create a HTML submit input element.
  261. *
  262. * @param string $value
  263. * @param array $attributes
  264. * @return string
  265. */
  266. public static function submit($value, $attributes = array())
  267. {
  268. return static::input('submit', null, $value, $attributes);
  269. }
  270. /**
  271. * Create a HTML reset input element.
  272. *
  273. * @param string $value
  274. * @param array $attributes
  275. * @return string
  276. */
  277. public static function reset($value, $attributes = array())
  278. {
  279. return static::input('reset', null, $value, $attributes);
  280. }
  281. /**
  282. * Create a HTML image input element.
  283. *
  284. * @param string $url
  285. * @param array $attributes
  286. * @return string
  287. */
  288. public static function image($url, $name = null, $attributes = array())
  289. {
  290. $attributes['src'] = URL::to_asset($url);
  291. return static::input('image', $name, null, $attributes);
  292. }
  293. /**
  294. * Create a HTML button element.
  295. *
  296. * @param string $name
  297. * @param string $value
  298. * @param array $attributes
  299. * @return string
  300. */
  301. public static function button($value, $attributes = array())
  302. {
  303. return '<button'.HTML::attributes($attributes).'>'.HTML::entities($value).'</button>'.PHP_EOL;
  304. }
  305. /**
  306. * Determine the ID attribute for a form element.
  307. *
  308. * An explicitly specified ID in the attributes takes first precedence, then
  309. * the label names will be checked for a label matching the element name.
  310. *
  311. * @param string $name
  312. * @param array $attributes
  313. * @return mixed
  314. */
  315. private static function id($name, $attributes)
  316. {
  317. if (array_key_exists('id', $attributes))
  318. {
  319. return $attributes['id'];
  320. }
  321. if (in_array($name, static::$labels))
  322. {
  323. return $name;
  324. }
  325. }
  326. }