form.php 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  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 label element.
  64. *
  65. * @param string $name
  66. * @param string $value
  67. * @param array $attributes
  68. * @return string
  69. */
  70. public static function label($name, $value, $attributes = array())
  71. {
  72. return '<label for="'.$name.'"'.HTML::attributes($attributes).'>'.HTML::entities($value).'</label>'.PHP_EOL;
  73. }
  74. /**
  75. * Create a HTML text input element.
  76. *
  77. * @param string $name
  78. * @param string $value
  79. * @param array $attributes
  80. * @return string
  81. */
  82. public static function text($name, $value = null, $attributes = array())
  83. {
  84. return static::input('text', $name, $value, $attributes);
  85. }
  86. /**
  87. * Create a HTML password input element.
  88. *
  89. * @param string $name
  90. * @param array $attributes
  91. * @return string
  92. */
  93. public static function password($name, $attributes = array())
  94. {
  95. return static::input('password', $name, null, $attributes);
  96. }
  97. /**
  98. * Create a HTML hidden input element.
  99. *
  100. * @param string $name
  101. * @param array $attributes
  102. * @return string
  103. */
  104. public static function hidden($name, $value = null, $attributes = array())
  105. {
  106. return static::input('hidden', $name, $value, $attributes);
  107. }
  108. /**
  109. * Create a HTML file input element.
  110. *
  111. * @param string $name
  112. * @param array $attributes
  113. * @return string
  114. */
  115. public static function file($name, $attributes = array())
  116. {
  117. return static::input('file', $name, null, $attributes);
  118. }
  119. /**
  120. * Create a HTML submit input element.
  121. *
  122. * @param string $name
  123. * @param array $attributes
  124. * @return string
  125. */
  126. public static function submit($value, $attributes = array())
  127. {
  128. return static::input('submit', null, $value, $attributes);
  129. }
  130. /**
  131. * Create a HTML button element.
  132. *
  133. * @param string $name
  134. * @param string $value
  135. * @param array $attributes
  136. * @return string
  137. */
  138. public static function button($value, $attributes = array())
  139. {
  140. return '<button'.HTML::attributes($attributes).'>'.HTML::entities($value).'</button>'.PHP_EOL;
  141. }
  142. /**
  143. * Create a HTML checkbox input element.
  144. *
  145. * @param string $name
  146. * @param string $value
  147. * @param bool $checked
  148. * @param array $attributes
  149. * @return string
  150. */
  151. public static function checkbox($name, $value = null, $checked = false, $attributes = array())
  152. {
  153. return static::checkable('checkbox', $name, $value, $checked, $attributes);
  154. }
  155. /**
  156. * Create a HTML radio button input element.
  157. *
  158. * @param string $name
  159. * @param string $value
  160. * @param bool $checked
  161. * @param array $attributes
  162. * @return string
  163. */
  164. public static function radio($name, $value = null, $checked = false, $attributes = array())
  165. {
  166. return static::checkable('radio', $name, $value, $checked, $attributes);
  167. }
  168. /**
  169. * Create a checkable input element.
  170. *
  171. * @param string $type
  172. * @param string $name
  173. * @param string $value
  174. * @param bool $checked
  175. * @param array $attributes
  176. * @return string
  177. */
  178. private static function checkable($type, $name, $value, $checked, $attributes)
  179. {
  180. if ($checked === true)
  181. {
  182. $attributes['checked'] = 'checked';
  183. }
  184. return static::input($type, $name, $value, $attributes);
  185. }
  186. /**
  187. * Create a HTML textarea element.
  188. *
  189. * @param string $name
  190. * @param string $value
  191. * @param array $attributes
  192. * @return string
  193. */
  194. public static function textarea($name, $value = '', $attributes = array())
  195. {
  196. $attributes['name'] = $name;
  197. // -------------------------------------------------------
  198. // Set the default number of rows.
  199. // -------------------------------------------------------
  200. if ( ! isset($attributes['rows']))
  201. {
  202. $attributes['rows'] = 10;
  203. }
  204. // -------------------------------------------------------
  205. // Set the default number of columns.
  206. // -------------------------------------------------------
  207. if ( ! isset($attributes['cols']))
  208. {
  209. $attributes['cols'] = 50;
  210. }
  211. return '<textarea'.HTML::attributes($attributes).'>'.HTML::entities($value).'</textarea>'.PHP_EOL;
  212. }
  213. /**
  214. * Create a HTML select element.
  215. *
  216. * @param string $name
  217. * @param array $options
  218. * @param string $selected
  219. * @param array $attributes
  220. * @return string
  221. */
  222. public static function select($name, $options = array(), $selected = null, $attributes = array())
  223. {
  224. $attributes['name'] = $name;
  225. $html_options = array();
  226. foreach ($options as $value => $display)
  227. {
  228. $option_attributes = array();
  229. $option_attributes['value'] = HTML::entities($value);
  230. $option_attributes['selected'] = ($value == $selected) ? 'selected' : null;
  231. $html_options[] = '<option'.HTML::attributes($option_attributes).'>'.HTML::entities($display).'</option>';
  232. }
  233. return '<select'.HTML::attributes($attributes).'>'.implode('', $html_options).'</select>'.PHP_EOL;
  234. }
  235. /**
  236. * Create a HTML input element.
  237. *
  238. * @param string $name
  239. * @param mixed $value
  240. * @param array $attributes
  241. * @return string
  242. */
  243. private static function input($type, $name, $value = null, $attributes = array())
  244. {
  245. $attributes['type'] = $type;
  246. $attributes['name'] = $name;
  247. $attributes['value'] = $value;
  248. return '<input'.HTML::attributes($attributes).' />'.PHP_EOL;
  249. }
  250. }