form.php 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  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. $action = URL::to($action);
  21. $attributes['action'] = HTML::entities($action);
  22. $attributes['method'] = ($method == 'GET' or $method == 'POST') ? $method : 'POST';
  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. // -------------------------------------------------------
  29. // If the method is PUT or DELETE, we'll need to spoof it
  30. // using a hidden input field.
  31. //
  32. // For more information, see the Input library.
  33. // -------------------------------------------------------
  34. if ($method == 'PUT' or $method == 'DELETE')
  35. {
  36. $html .= PHP_EOL.static::hidden('request_method', $method);
  37. }
  38. return $html.PHP_EOL;
  39. }
  40. /**
  41. * Generate a hidden field containing the current CSRF token.
  42. *
  43. * @return string
  44. */
  45. public static function token()
  46. {
  47. return static::hidden('csrf_token', static::raw_token());
  48. }
  49. /**
  50. * Retrieve the current CSRF token.
  51. *
  52. * @return string
  53. */
  54. public static function raw_token()
  55. {
  56. if (Config::get('session.driver') == '')
  57. {
  58. throw new \Exception('Sessions must be enabled to retrieve a CSRF token.');
  59. }
  60. return Session::get('csrf_token');
  61. }
  62. /**
  63. * Create a HTML text input element.
  64. *
  65. * @param string $name
  66. * @param string $value
  67. * @param array $attributes
  68. * @return string
  69. */
  70. public static function text($name, $value = null, $attributes = array())
  71. {
  72. return static::input('text', $name, $value, $attributes);
  73. }
  74. /**
  75. * Create a HTML password input element.
  76. *
  77. * @param string $name
  78. * @param array $attributes
  79. * @return string
  80. */
  81. public static function password($name, $attributes = array())
  82. {
  83. return static::input('password', $name, null, $attributes);
  84. }
  85. /**
  86. * Create a HTML hidden input element.
  87. *
  88. * @param string $name
  89. * @param array $attributes
  90. * @return string
  91. */
  92. public static function hidden($name, $value = null, $attributes = array())
  93. {
  94. return static::input('hidden', $name, $value, $attributes);
  95. }
  96. /**
  97. * Create a HTML file input element.
  98. *
  99. * @param string $name
  100. * @param array $attributes
  101. * @return string
  102. */
  103. public static function file($name, $attributes = array())
  104. {
  105. return static::input('file', $name, null, $attributes);
  106. }
  107. /**
  108. * Create a HTML submit input element.
  109. *
  110. * @param string $name
  111. * @param array $attributes
  112. * @return string
  113. */
  114. public static function submit($value, $attributes = array())
  115. {
  116. return static::input('submit', null, $value, $attributes);
  117. }
  118. /**
  119. * Create a HTML button element.
  120. *
  121. * @param string $name
  122. * @param string $value
  123. * @param array $attributes
  124. * @return string
  125. */
  126. public static function button($value, $attributes = array())
  127. {
  128. return '<button'.HTML::attributes($attributes).'>'.HTML::entities($value).'</button>'.PHP_EOL;
  129. }
  130. /**
  131. * Create a HTML checkbox input element.
  132. *
  133. * @param string $name
  134. * @param string $value
  135. * @param bool $checked
  136. * @param array $attributes
  137. * @return string
  138. */
  139. public static function checkbox($name, $value = null, $checked = false, $attributes = array())
  140. {
  141. return static::checkable('checkbox', $name, $value, $checked, $attributes);
  142. }
  143. /**
  144. * Create a HTML radio button input element.
  145. *
  146. * @param string $name
  147. * @param string $value
  148. * @param bool $checked
  149. * @param array $attributes
  150. * @return string
  151. */
  152. public static function radio($name, $value = null, $checked = false, $attributes = array())
  153. {
  154. return static::checkable('radio', $name, $value, $checked, $attributes);
  155. }
  156. /**
  157. * Create a checkable input element.
  158. *
  159. * @param string $type
  160. * @param string $name
  161. * @param string $value
  162. * @param bool $checked
  163. * @param array $attributes
  164. * @return string
  165. */
  166. private static function checkable($type, $name, $value, $checked, $attributes)
  167. {
  168. if ($checked === true)
  169. {
  170. $attributes['checked'] = 'checked';
  171. }
  172. return static::input($type, $name, $value, $attributes);
  173. }
  174. /**
  175. * Create a HTML textarea element.
  176. *
  177. * @param string $name
  178. * @param string $value
  179. * @param array $attributes
  180. * @return string
  181. */
  182. public static function textarea($name, $value = '', $attributes = array())
  183. {
  184. $attributes['name'] = $name;
  185. // -------------------------------------------------------
  186. // Set the default number of rows.
  187. // -------------------------------------------------------
  188. if ( ! isset($attributes['rows']))
  189. {
  190. $attributes['rows'] = 10;
  191. }
  192. // -------------------------------------------------------
  193. // Set the default number of columns.
  194. // -------------------------------------------------------
  195. if ( ! isset($attributes['cols']))
  196. {
  197. $attributes['cols'] = 50;
  198. }
  199. return '<textarea'.HTML::attributes($attributes).'>'.HTML::entities($value).'</textarea>'.PHP_EOL;
  200. }
  201. /**
  202. * Create a HTML select element.
  203. *
  204. * @param string $name
  205. * @param array $options
  206. * @param string $selected
  207. * @param array $attributes
  208. * @return string
  209. */
  210. public static function select($name, $options = array(), $selected = null, $attributes = array())
  211. {
  212. $attributes['name'] = $name;
  213. $html_options = array();
  214. foreach ($options as $value => $display)
  215. {
  216. $option_attributes = array();
  217. $option_attributes['value'] = HTML::entities($value);
  218. $option_attributes['selected'] = ($value == $selected) ? 'selected' : null;
  219. $html_options[] = '<option'.HTML::attributes($option_attributes).'>'.HTML::entities($display).'</option>';
  220. }
  221. return '<select'.HTML::attributes($attributes).'>'.implode('', $html_options).'</select>'.PHP_EOL;
  222. }
  223. /**
  224. * Close a HTML form
  225. *
  226. * @return string
  227. */
  228. public static function close()
  229. {
  230. return '</form>';
  231. }
  232. /**
  233. * Create a HTML input element.
  234. *
  235. * @param string $name
  236. * @param mixed $value
  237. * @param array $attributes
  238. * @return string
  239. */
  240. private static function input($type, $name, $value = null, $attributes = array())
  241. {
  242. $attributes['type'] = $type;
  243. $attributes['name'] = $name;
  244. $attributes['value'] = $value;
  245. return '<input'.HTML::attributes($attributes).' />'.PHP_EOL;
  246. }
  247. }