form.php 8.1 KB

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