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