html.php 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. <?php namespace System;
  2. class HTML {
  3. /**
  4. * Generate a JavaScript reference.
  5. *
  6. * @param string $url
  7. * @return string
  8. */
  9. public static function script($url)
  10. {
  11. return '<script type="text/javascript" src="'.trim(URL::to($url), '.js').'.js"></script>'.PHP_EOL;
  12. }
  13. /**
  14. * Generate a CSS reference.
  15. *
  16. * @param string $url
  17. * @return string
  18. */
  19. public static function style($url, $media = 'all')
  20. {
  21. return '<link href="'.trim(URL::to($url), '.css').'.css" rel="stylesheet" type="text/css" media="'.$media.'" />'.PHP_EOL;
  22. }
  23. /**
  24. * Generate a HTML link.
  25. *
  26. * @param string $url
  27. * @param string $title
  28. * @param array $attributes
  29. * @param bool $https
  30. * @return string
  31. */
  32. public static function link($url, $title, $attributes = array(), $https = false)
  33. {
  34. return '<a href="'.URL::to($url, $https).'"'.static::attributes($attributes).'>'.Str::entities($title).'</a>';
  35. }
  36. /**
  37. * Generate a HTTPS HTML link.
  38. *
  39. * @param string $url
  40. * @param string $title
  41. * @param array $attributes
  42. * @return string
  43. */
  44. public static function secure_link($url, $title, $attributes)
  45. {
  46. return static::link($url, $title, $attributes, true);
  47. }
  48. /**
  49. * Generate an HTML mailto link.
  50. *
  51. * @param string $email
  52. * @param string $title
  53. * @param array $attributes
  54. * @return string
  55. */
  56. public static function mailto($email, $title = null, $attributes = array())
  57. {
  58. // -------------------------------------------------------
  59. // Obfuscate the e-mail address.
  60. // -------------------------------------------------------
  61. $email = static::email($email);
  62. // -------------------------------------------------------
  63. // If no title is specified, just use the e-mail address.
  64. // -------------------------------------------------------
  65. if (is_null($title))
  66. {
  67. $title = $email;
  68. }
  69. return '<a href="&#109;&#097;&#105;&#108;&#116;&#111;&#058;'.$email.'"'.static::attributes($attributes).'>'.$title.'</a>';
  70. }
  71. /**
  72. * Obfuscate an e-mail address to prevent spam-bots from sniffing it.
  73. *
  74. * @param string $email
  75. * @return string
  76. */
  77. public static function email($email)
  78. {
  79. return str_replace('@', '&#64;', static::obfuscate($email));
  80. }
  81. /**
  82. * Generate an HTML image.
  83. *
  84. * @param string $url
  85. * @param string $alt
  86. * @param array $attributes
  87. * @return string
  88. */
  89. public static function image($url, $alt = '', $attributes = array())
  90. {
  91. // -------------------------------------------------------
  92. // Add the "alt" tag to the attributes.
  93. // -------------------------------------------------------
  94. $attributes['alt'] = Str::entities($alt);
  95. return '<img src="'.URL::to($url).'"'.static::attributes($attributes).' />';
  96. }
  97. /**
  98. * Generate HTML breaks.
  99. *
  100. * @param int $count
  101. * @return string
  102. */
  103. public static function breaks($count = 1)
  104. {
  105. return str_repeat('<br />', $count);
  106. }
  107. /**
  108. * Generate non-breaking spaces.
  109. *
  110. * @param int $count
  111. * @return string
  112. */
  113. public static function spaces($count = 1)
  114. {
  115. return str_repeat('&nbsp;', $count);
  116. }
  117. /**
  118. * Generate an ordered list.
  119. *
  120. * @param array $list
  121. * @param array $attributes
  122. * @return string
  123. */
  124. public static function ol($list, $attributes = array())
  125. {
  126. return static::list_elements('ol', $list, $attributes);
  127. }
  128. /**
  129. * Generate an un-ordered list.
  130. *
  131. * @param array $list
  132. * @param array $attributes
  133. * @return string
  134. */
  135. public static function ul($list, $attributes = array())
  136. {
  137. return static::list_elements('ul', $list, $attributes);
  138. }
  139. /**
  140. * Generate an ordered or un-ordered list.
  141. *
  142. * @param string $type
  143. * @param array $list
  144. * @param array $attributes
  145. * @return string
  146. */
  147. private static function list_elements($type, $list, $attributes)
  148. {
  149. // -------------------------------------------------------
  150. // Verify the list is an array.
  151. // -------------------------------------------------------
  152. if ( ! is_array($list))
  153. {
  154. return '';
  155. }
  156. // -------------------------------------------------------
  157. // Initialize the output value.
  158. // -------------------------------------------------------
  159. $html = '';
  160. // -------------------------------------------------------
  161. // Add the list items.
  162. // -------------------------------------------------------
  163. foreach ($list as $key => $value)
  164. {
  165. $html .= '<li>'.Str::entities($value).'</li>';
  166. }
  167. // -------------------------------------------------------
  168. // Build the list opening tag.
  169. // -------------------------------------------------------
  170. $start = '<'.$type.static::attributes($attributes).'>';
  171. return $start.$html.'</'.$type.'>';
  172. }
  173. /**
  174. * Build a list of HTML attributes.
  175. *
  176. * @param array $attributes
  177. * @return string
  178. */
  179. public static function attributes($attributes)
  180. {
  181. $html = array();
  182. foreach ($attributes as $key => $value)
  183. {
  184. // -------------------------------------------------------
  185. // If the value is null, skip it.
  186. // -------------------------------------------------------
  187. if (is_null($value))
  188. {
  189. continue;
  190. }
  191. // -------------------------------------------------------
  192. // Add the HTML attribute to the array of attributes.
  193. // -------------------------------------------------------
  194. $html[] = $key.'="'.Str::entities($value).'"';
  195. }
  196. // -------------------------------------------------------
  197. // Concatenate all of the attributes together.
  198. // -------------------------------------------------------
  199. if (count($html) > 0)
  200. {
  201. return ' '.implode(' ', $html);
  202. }
  203. else
  204. {
  205. return '';
  206. }
  207. }
  208. /**
  209. * Obfuscate a string to prevent spam-bots from sniffing it.
  210. *
  211. * @param string $value
  212. * @return string
  213. */
  214. public static function obfuscate($value)
  215. {
  216. $safe = '';
  217. // -------------------------------------------------------
  218. // Spin through the string letter by letter.
  219. // -------------------------------------------------------
  220. foreach (str_split($value) as $letter)
  221. {
  222. switch (rand(1, 3))
  223. {
  224. // -------------------------------------------------------
  225. // Convert the letter to its entity representation.
  226. // -------------------------------------------------------
  227. case 1:
  228. $safe .= '&#'.ord($letter).';';
  229. break;
  230. // -------------------------------------------------------
  231. // Convert the letter to a Hex character code.
  232. // -------------------------------------------------------
  233. case 2:
  234. $safe .= '&#x'.dechex(ord($letter)).';';
  235. break;
  236. // -------------------------------------------------------
  237. // No encoding.
  238. // -------------------------------------------------------
  239. case 3:
  240. $safe .= $letter;
  241. }
  242. }
  243. return $safe;
  244. }
  245. }