form.php 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  1. <?php namespace System;
  2. class Form {
  3. /**
  4. * Open a HTML form.
  5. *
  6. * @param string $action
  7. * @param string $method
  8. * @param array $attributes
  9. * @return string
  10. */
  11. public static function open($action = null, $method = 'POST', $attributes = array())
  12. {
  13. // -------------------------------------------------------
  14. // If no action was given, use the current URI.
  15. // -------------------------------------------------------
  16. if (is_null($action))
  17. {
  18. $action = Request::uri();
  19. }
  20. // -------------------------------------------------------
  21. // Prepare the action URL.
  22. // -------------------------------------------------------
  23. $action = URL::to($action);
  24. // -------------------------------------------------------
  25. // Set the action attribute.
  26. // -------------------------------------------------------
  27. $attributes['action'] = $action;
  28. // -------------------------------------------------------
  29. // Set the method attribute.
  30. // -------------------------------------------------------
  31. $attributes['method'] = ($method == 'GET' or $method == 'POST') ? $method : 'POST';
  32. // -------------------------------------------------------
  33. // Set the default character set.
  34. // -------------------------------------------------------
  35. if ( ! array_key_exists('accept-charset', $attributes))
  36. {
  37. $attributes['accept-charset'] = 'UTF-8';
  38. }
  39. // -------------------------------------------------------
  40. // Build the form tag.
  41. // -------------------------------------------------------
  42. $html = '<form'.HTML::attributes($attributes).'>';
  43. // -------------------------------------------------------
  44. // If the method is PUT or DELETE, we'll need to spoof it
  45. // using a hidden input field.
  46. //
  47. // For more information, see the Input library.
  48. // -------------------------------------------------------
  49. if ($method == 'PUT' or $method == 'DELETE')
  50. {
  51. $html .= PHP_EOL.static::hidden('request_method', $method);
  52. }
  53. return $html.PHP_EOL;
  54. }
  55. /**
  56. * Generate a hidden field containing the current CSRF token.
  57. *
  58. * @return string
  59. */
  60. public static function token()
  61. {
  62. return static::hidden('csrf_token', static::raw_token());
  63. }
  64. /**
  65. * Retrieve the current CSRF token.
  66. *
  67. * @return string
  68. */
  69. public static function raw_token()
  70. {
  71. // -------------------------------------------------------
  72. // Verify that sessions are enabled.
  73. // -------------------------------------------------------
  74. if (Config::get('session.driver') == '')
  75. {
  76. throw new \Exception('Sessions must be enabled to retrieve a CSRF token.');
  77. }
  78. return Session::get('csrf_token');
  79. }
  80. /**
  81. * Create a HTML text input element.
  82. *
  83. * @param string $name
  84. * @param string $value
  85. * @param array $attributes
  86. * @return string
  87. */
  88. public static function text($name, $value = null, $attributes = array())
  89. {
  90. return static::input('text', $name, $value, $attributes);
  91. }
  92. /**
  93. * Create a HTML password input element.
  94. *
  95. * @param string $name
  96. * @param array $attributes
  97. * @return string
  98. */
  99. public static function password($name, $attributes = array())
  100. {
  101. return static::input('password', $name, null, $attributes);
  102. }
  103. /**
  104. * Create a HTML hidden input element.
  105. *
  106. * @param string $name
  107. * @param array $attributes
  108. * @return string
  109. */
  110. public static function hidden($name, $value = null, $attributes = array())
  111. {
  112. return static::input('hidden', $name, $value, $attributes);
  113. }
  114. /**
  115. * Create a HTML file input element.
  116. *
  117. * @param string $name
  118. * @param array $attributes
  119. * @return string
  120. */
  121. public static function file($name, $attributes = array())
  122. {
  123. return static::input('file', $name, null, $attributes);
  124. }
  125. /**
  126. * Create a HTML submit input element.
  127. *
  128. * @param string $name
  129. * @param array $attributes
  130. * @return string
  131. */
  132. public static function submit($value, $attributes = array())
  133. {
  134. return static::input('submit', null, $value, $attributes);
  135. }
  136. /**
  137. * Create a HTML button element.
  138. *
  139. * @param string $name
  140. * @param string $value
  141. * @param array $attributes
  142. * @return string
  143. */
  144. public static function button($value, $attributes = array())
  145. {
  146. return '<button'.HTML::attributes($attributes).'>'.$value.'</button>'.PHP_EOL;
  147. }
  148. /**
  149. * Create a HTML checkbox input element.
  150. *
  151. * @param string $name
  152. * @param string $value
  153. * @param bool $checked
  154. * @param array $attributes
  155. * @return string
  156. */
  157. public static function checkbox($name, $value = null, $checked = false, $attributes = array())
  158. {
  159. return static::checkable('checkbox', $name, $value, $checked, $attributes);
  160. }
  161. /**
  162. * Create a HTML radio button input element.
  163. *
  164. * @param string $name
  165. * @param string $value
  166. * @param bool $checked
  167. * @param array $attributes
  168. * @return string
  169. */
  170. public static function radio($name, $value = null, $checked = false, $attributes = array())
  171. {
  172. return static::checkable('radio', $name, $value, $checked, $attributes);
  173. }
  174. /**
  175. * Create a checkable input element.
  176. *
  177. * @param string $type
  178. * @param string $name
  179. * @param string $value
  180. * @param bool $checked
  181. * @param array $attributes
  182. * @return string
  183. */
  184. private static function checkable($type, $name, $value, $checked, $attributes)
  185. {
  186. // -------------------------------------------------------
  187. // Set the checked attribute.
  188. // -------------------------------------------------------
  189. if ($checked === true)
  190. {
  191. $attributes['checked'] = 'checked';
  192. }
  193. return static::input($type, $name, $value, $attributes);
  194. }
  195. /**
  196. * Create a HTML textarea element.
  197. *
  198. * @param string $name
  199. * @param string $value
  200. * @param array $attributes
  201. * @return string
  202. */
  203. public static function textarea($name, $value = '', $attributes = array())
  204. {
  205. // -------------------------------------------------------
  206. // Add the name to the attributes.
  207. // -------------------------------------------------------
  208. $attributes['name'] = $name;
  209. // -------------------------------------------------------
  210. // Set the default number of rows.
  211. // -------------------------------------------------------
  212. if ( ! isset($attributes['rows']))
  213. {
  214. $attributes['rows'] = 10;
  215. }
  216. // -------------------------------------------------------
  217. // Set the default number of columns.
  218. // -------------------------------------------------------
  219. if ( ! isset($attributes['cols']))
  220. {
  221. $attributes['cols'] = 50;
  222. }
  223. return '<textarea'.HTML::attributes($attributes).'>'.Str::entities($value).'</textarea>'.PHP_EOL;
  224. }
  225. /**
  226. * Create a HTML select element.
  227. *
  228. * @param string $name
  229. * @param array $options
  230. * @param string $selected
  231. * @param array $attributes
  232. * @return string
  233. */
  234. public static function select($name, $options = array(), $selected = null, $attributes = array())
  235. {
  236. // -------------------------------------------------------
  237. // Set the name attribute.
  238. // -------------------------------------------------------
  239. $attributes['name'] = $name;
  240. // -------------------------------------------------------
  241. // Initialize the options array.
  242. // -------------------------------------------------------
  243. $html_options = array();
  244. // -------------------------------------------------------
  245. // Build the options in HTML.
  246. // -------------------------------------------------------
  247. foreach ($options as $value => $display)
  248. {
  249. $option_attributes = array();
  250. // -------------------------------------------------------
  251. // Set the value attribute.
  252. // -------------------------------------------------------
  253. $option_attributes['value'] = $value;
  254. // -------------------------------------------------------
  255. // Set the selected attribute.
  256. // -------------------------------------------------------
  257. $option_attributes['selected'] = ($value == $selected) ? 'selected' : null;
  258. // -------------------------------------------------------
  259. // Add the option HTML to the array of options.
  260. // -------------------------------------------------------
  261. $html_options[] = '<option'.HTML::attributes($option_attributes).'>'.$display.'</option>';
  262. }
  263. return '<select'.HTML::attributes($attributes).'>'.implode('', $html_options).'</select>'.PHP_EOL;
  264. }
  265. /**
  266. * Create a HTML input element.
  267. *
  268. * @param string $name
  269. * @param mixed $value
  270. * @param array $attributes
  271. * @return string
  272. */
  273. private static function input($type, $name, $value = null, $attributes = array())
  274. {
  275. // -------------------------------------------------------
  276. // Set the type attribute.
  277. // -------------------------------------------------------
  278. $attributes['type'] = $type;
  279. // -------------------------------------------------------
  280. // Set the name attribute.
  281. // -------------------------------------------------------
  282. $attributes['name'] = $name;
  283. // -------------------------------------------------------
  284. // Set the value attribute.
  285. // -------------------------------------------------------
  286. $attributes['value'] = $value;
  287. return '<input'.HTML::attributes($attributes).' />'.PHP_EOL;
  288. }
  289. }