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