html.php 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. <?php namespace System;
  2. class HTML {
  3. /**
  4. * Convert HTML characters to entities.
  5. *
  6. * @param string $value
  7. * @return string
  8. */
  9. public static function entities($value)
  10. {
  11. return htmlentities($value, ENT_QUOTES, Config::get('application.encoding'), false);
  12. }
  13. /**
  14. * Generate a JavaScript reference.
  15. *
  16. * @param string $url
  17. * @param array $attributes
  18. * @return string
  19. */
  20. public static function script($url, $attributes = array())
  21. {
  22. return '<script type="text/javascript" src="'.static::entities(URL::to_asset($url)).'"'.static::attributes($attributes).'></script>'.PHP_EOL;
  23. }
  24. /**
  25. * Generate a CSS reference.
  26. *
  27. * @param string $url
  28. * @param array $attributes
  29. * @return string
  30. */
  31. public static function style($url, $attributes = array())
  32. {
  33. if ( ! array_key_exists('media', $attributes))
  34. {
  35. $attributes['media'] = 'all';
  36. }
  37. return '<link href="'.static::entities(URL::to_asset($url)).'" rel="stylesheet" type="text/css"'.static::attributes($attributes).'>'.PHP_EOL;
  38. }
  39. /**
  40. * Generate a HTML span.
  41. *
  42. * @param string $value
  43. * @param array $attributes
  44. * @return string
  45. */
  46. public static function span($value, $attributes = array())
  47. {
  48. return '<span'.static::attributes($attributes).'>'.static::entities($value).'</span>';
  49. }
  50. /**
  51. * Generate a HTML link.
  52. *
  53. * @param string $url
  54. * @param string $title
  55. * @param array $attributes
  56. * @param bool $https
  57. * @param bool $asset
  58. * @return string
  59. */
  60. public static function link($url, $title, $attributes = array(), $https = false, $asset = false)
  61. {
  62. return '<a href="'.static::entities(URL::to($url, $https, $asset)).'"'.static::attributes($attributes).'>'.static::entities($title).'</a>';
  63. }
  64. /**
  65. * Generate a HTTPS HTML link.
  66. *
  67. * @param string $url
  68. * @param string $title
  69. * @param array $attributes
  70. * @return string
  71. */
  72. public static function link_to_secure($url, $title, $attributes = array())
  73. {
  74. return static::link($url, $title, $attributes, true);
  75. }
  76. /**
  77. * Generate an HTML link to an asset.
  78. *
  79. * @param string $url
  80. * @param string $title
  81. * @param array $attributes
  82. * @return string
  83. */
  84. public static function link_to_asset($url, $title, $attributes = array(), $https = false)
  85. {
  86. return static::link($url, $title, $attributes, $https, true);
  87. }
  88. /**
  89. * Generate an HTTPS HTML link to an asset.
  90. *
  91. * @param string $url
  92. * @param string $title
  93. * @param array $attributes
  94. * @return string
  95. */
  96. public static function link_to_secure_asset($url, $title, $attributes = array())
  97. {
  98. return static::link_to_asset($url, $title, $attributes, true);
  99. }
  100. /**
  101. * Generate an HTML link to a route.
  102. *
  103. * @param string $name
  104. * @param string $title
  105. * @param array $parameters
  106. * @param array $attributes
  107. * @return string
  108. */
  109. public static function link_to_route($name, $title, $parameters = array(), $attributes = array(), $https = false)
  110. {
  111. return static::link(URL::to_route($name, $parameters, $https), $title, $attributes);
  112. }
  113. /**
  114. * Generate an HTTPS HTML link to a route.
  115. *
  116. * @param string $name
  117. * @param string $title
  118. * @param array $parameters
  119. * @param array $attributes
  120. * @return string
  121. */
  122. public static function link_to_secure_route($name, $title, $parameters = array(), $attributes = array())
  123. {
  124. return static::link_to_route($name, $title, $parameters, $attributes, true);
  125. }
  126. /**
  127. * Generate an HTML mailto link.
  128. *
  129. * @param string $email
  130. * @param string $title
  131. * @param array $attributes
  132. * @return string
  133. */
  134. public static function mailto($email, $title = null, $attributes = array())
  135. {
  136. $email = static::email($email);
  137. if (is_null($title))
  138. {
  139. $title = $email;
  140. }
  141. return '<a href="&#109;&#097;&#105;&#108;&#116;&#111;&#058;'.$email.'"'.static::attributes($attributes).'>'.static::entities($title).'</a>';
  142. }
  143. /**
  144. * Obfuscate an e-mail address to prevent spam-bots from sniffing it.
  145. *
  146. * @param string $email
  147. * @return string
  148. */
  149. public static function email($email)
  150. {
  151. return str_replace('@', '&#64;', static::obfuscate($email));
  152. }
  153. /**
  154. * Generate an HTML image.
  155. *
  156. * @param string $url
  157. * @param string $alt
  158. * @param array $attributes
  159. * @return string
  160. */
  161. public static function image($url, $alt = '', $attributes = array())
  162. {
  163. $attributes['alt'] = static::entities($alt);
  164. return '<img src="'.static::entities(URL::to_asset($url)).'"'.static::attributes($attributes).'>';
  165. }
  166. /**
  167. * Generate an ordered list.
  168. *
  169. * @param array $list
  170. * @param array $attributes
  171. * @return string
  172. */
  173. public static function ol($list, $attributes = array())
  174. {
  175. return static::list_elements('ol', $list, $attributes);
  176. }
  177. /**
  178. * Generate an un-ordered list.
  179. *
  180. * @param array $list
  181. * @param array $attributes
  182. * @return string
  183. */
  184. public static function ul($list, $attributes = array())
  185. {
  186. return static::list_elements('ul', $list, $attributes);
  187. }
  188. /**
  189. * Generate an ordered or un-ordered list.
  190. *
  191. * @param string $type
  192. * @param array $list
  193. * @param array $attributes
  194. * @return string
  195. */
  196. private static function list_elements($type, $list, $attributes = array())
  197. {
  198. $html = '';
  199. foreach ($list as $key => $value)
  200. {
  201. $html .= (is_array($value)) ? static::list_elements($type, $value) : '<li>'.static::entities($value).'</li>';
  202. }
  203. return '<'.$type.static::attributes($attributes).'>'.$html.'</'.$type.'>';
  204. }
  205. /**
  206. * Build a list of HTML attributes.
  207. *
  208. * @param array $attributes
  209. * @return string
  210. */
  211. public static function attributes($attributes)
  212. {
  213. $html = array();
  214. foreach ($attributes as $key => $value)
  215. {
  216. // Assume numeric-keyed attributes to have the same key and value.
  217. // Example: required="required", autofocus="autofocus", etc.
  218. if (is_numeric($key))
  219. {
  220. $key = $value;
  221. }
  222. if ( ! is_null($value))
  223. {
  224. $html[] = $key.'="'.static::entities($value).'"';
  225. }
  226. }
  227. return (count($html) > 0) ? ' '.implode(' ', $html) : '';
  228. }
  229. /**
  230. * Obfuscate a string to prevent spam-bots from sniffing it.
  231. *
  232. * @param string $value
  233. * @return string
  234. */
  235. public static function obfuscate($value)
  236. {
  237. $safe = '';
  238. foreach (str_split($value) as $letter)
  239. {
  240. switch (rand(1, 3))
  241. {
  242. // Convert the letter to its entity representation.
  243. case 1:
  244. $safe .= '&#'.ord($letter).';';
  245. break;
  246. // Convert the letter to a Hex character code.
  247. case 2:
  248. $safe .= '&#x'.dechex(ord($letter)).';';
  249. break;
  250. // No encoding.
  251. case 3:
  252. $safe .= $letter;
  253. }
  254. }
  255. return $safe;
  256. }
  257. /**
  258. * Magic Method for handling dynamic static methods.
  259. */
  260. public static function __callStatic($method, $parameters)
  261. {
  262. // Handle the dynamic creation of links to secure routes.
  263. if (strpos($method, 'link_to_secure_') === 0)
  264. {
  265. array_unshift($parameters, substr($method, 15));
  266. return forward_static_call_array('HTML::link_to_secure_route', $parameters);
  267. }
  268. // Handle the dynamic creation of links to routes.
  269. if (strpos($method, 'link_to_') === 0)
  270. {
  271. array_unshift($parameters, substr($method, 8));
  272. return forward_static_call_array('HTML::link_to_route', $parameters);
  273. }
  274. throw new \Exception("Static method [$method] is not defined on the HTML class.");
  275. }
  276. }