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