html.php 5.5 KB

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