form.php 7.3 KB

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