html.php 7.0 KB

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