html.php 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358
  1. <?php namespace Laravel;
  2. class HTML {
  3. /**
  4. * Convert HTML characters to entities.
  5. *
  6. * The encoding specified in the application configuration file will be used.
  7. *
  8. * @param string $value
  9. * @return string
  10. */
  11. public static function entities($value)
  12. {
  13. return htmlentities($value, ENT_QUOTES, Config::get('application.encoding'), false);
  14. }
  15. /**
  16. * Convert entities to HTML characters.
  17. *
  18. * @param string $value
  19. * @return string
  20. */
  21. public static function decode($value)
  22. {
  23. return html_entity_decode($value, ENT_QUOTES, Config::get('application.encoding'));
  24. }
  25. /**
  26. * Generate a link to a JavaScript file.
  27. *
  28. * <code>
  29. * // Generate a link to a JavaScript file
  30. * echo HTML::script('js/jquery.js');
  31. *
  32. * // Generate a link to a JavaScript file and add some attributes
  33. * echo HTML::script('js/jquery.js', array('defer'));
  34. * </code>
  35. *
  36. * @param string $url
  37. * @param array $attributes
  38. * @return string
  39. */
  40. public static function script($url, $attributes = array())
  41. {
  42. $url = static::entities(URL::to_asset($url));
  43. return '<script src="'.$url.'"'.static::attributes($attributes).'></script>'.PHP_EOL;
  44. }
  45. /**
  46. * Generate a link to a CSS file.
  47. *
  48. * If no media type is selected, "all" will be used.
  49. *
  50. * <code>
  51. * // Generate a link to a CSS file
  52. * echo HTML::style('css/common.css');
  53. *
  54. * // Generate a link to a CSS file and add some attributes
  55. * echo HTML::style('css/common.css', array('media' => 'print'));
  56. * </code>
  57. *
  58. * @param string $url
  59. * @param array $attributes
  60. * @return string
  61. */
  62. public static function style($url, $attributes = array())
  63. {
  64. $defaults = array('media' => 'all', 'type' => 'text/css', 'rel' => 'stylesheet');
  65. $attributes = $attributes + $defaults;
  66. $url = static::entities(URL::to_asset($url));
  67. return '<link href="'.$url.'"'.static::attributes($attributes).'>'.PHP_EOL;
  68. }
  69. /**
  70. * Generate a HTML span.
  71. *
  72. * @param string $value
  73. * @param array $attributes
  74. * @return string
  75. */
  76. public static function span($value, $attributes = array())
  77. {
  78. return '<span'.static::attributes($attributes).'>'.static::entities($value).'</span>';
  79. }
  80. /**
  81. * Generate a HTML link.
  82. *
  83. * <code>
  84. * // Generate a link to a location within the application
  85. * echo HTML::link('user/profile', 'User Profile');
  86. *
  87. * // Generate a link to a location outside of the application
  88. * echo HTML::link('http://google.com', 'Google');
  89. * </code>
  90. *
  91. * @param string $url
  92. * @param string $title
  93. * @param array $attributes
  94. * @param bool $https
  95. * @return string
  96. */
  97. public static function link($url, $title, $attributes = array(), $https = false)
  98. {
  99. $url = static::entities(URL::to($url, $https));
  100. return '<a href="'.$url.'"'.static::attributes($attributes).'>'.static::entities($title).'</a>';
  101. }
  102. /**
  103. * Generate a HTTPS HTML link.
  104. *
  105. * @param string $url
  106. * @param string $title
  107. * @param array $attributes
  108. * @return string
  109. */
  110. public static function link_to_secure($url, $title, $attributes = array())
  111. {
  112. return static::link($url, $title, $attributes, true);
  113. }
  114. /**
  115. * Generate an HTML link to an asset.
  116. *
  117. * The application index page will not be added to asset links.
  118. *
  119. * @param string $url
  120. * @param string $title
  121. * @param array $attributes
  122. * @param bool $https
  123. * @return string
  124. */
  125. public static function link_to_asset($url, $title, $attributes = array(), $https = null)
  126. {
  127. $url = static::entities(URL::to_asset($url, $https));
  128. return '<a href="'.$url.'"'.static::attributes($attributes).'>'.static::entities($title).'</a>';
  129. }
  130. /**
  131. * Generate an HTTPS HTML link to an asset.
  132. *
  133. * @param string $url
  134. * @param string $title
  135. * @param array $attributes
  136. * @return string
  137. */
  138. public static function link_to_secure_asset($url, $title, $attributes = array())
  139. {
  140. return static::link_to_asset($url, $title, $attributes, true);
  141. }
  142. /**
  143. * Generate an HTML link to a route.
  144. *
  145. * An array of parameters may be specified to fill in URI segment wildcards.
  146. *
  147. * <code>
  148. * // Generate a link to the "profile" named route
  149. * echo HTML::link_to_route('profile', 'Profile');
  150. *
  151. * // Generate a link to the "profile" route and add some parameters
  152. * echo HTML::link_to_route('profile', 'Profile', array('taylor'));
  153. * </code>
  154. *
  155. * @param string $name
  156. * @param string $title
  157. * @param array $parameters
  158. * @param array $attributes
  159. * @return string
  160. */
  161. public static function link_to_route($name, $title, $parameters = array(), $attributes = array(), $https = false)
  162. {
  163. return static::link(URL::to_route($name, $parameters, $https), $title, $attributes);
  164. }
  165. /**
  166. * Generate an HTTPS HTML link to a route.
  167. *
  168. * @param string $name
  169. * @param string $title
  170. * @param array $parameters
  171. * @param array $attributes
  172. * @return string
  173. */
  174. public static function link_to_secure_route($name, $title, $parameters = array(), $attributes = array())
  175. {
  176. return static::link_to_route($name, $title, $parameters, $attributes, true);
  177. }
  178. /**
  179. * Generate an HTML mailto link.
  180. *
  181. * The E-Mail address will be obfuscated to protect it from spam bots.
  182. *
  183. * @param string $email
  184. * @param string $title
  185. * @param array $attributes
  186. * @return string
  187. */
  188. public static function mailto($email, $title = null, $attributes = array())
  189. {
  190. $email = static::email($email);
  191. if (is_null($title)) $title = $email;
  192. $email = '&#109;&#097;&#105;&#108;&#116;&#111;&#058;'.$email;
  193. return '<a href="'.$email.'"'.static::attributes($attributes).'>'.static::entities($title).'</a>';
  194. }
  195. /**
  196. * Obfuscate an e-mail address to prevent spam-bots from sniffing it.
  197. *
  198. * @param string $email
  199. * @return string
  200. */
  201. public static function email($email)
  202. {
  203. return str_replace('@', '&#64;', static::obfuscate($email));
  204. }
  205. /**
  206. * Generate an HTML image element.
  207. *
  208. * @param string $url
  209. * @param string $alt
  210. * @param array $attributes
  211. * @return string
  212. */
  213. public static function image($url, $alt = '', $attributes = array())
  214. {
  215. $attributes['alt'] = $alt;
  216. return '<img src="'.static::entities(URL::to_asset($url)).'"'.static::attributes($attributes).'>';
  217. }
  218. /**
  219. * Generate an ordered list of items.
  220. *
  221. * @param array $list
  222. * @param array $attributes
  223. * @return string
  224. */
  225. public static function ol($list, $attributes = array())
  226. {
  227. return static::listing('ol', $list, $attributes);
  228. }
  229. /**
  230. * Generate an un-ordered list of items.
  231. *
  232. * @param array $list
  233. * @param array $attributes
  234. * @return string
  235. */
  236. public static function ul($list, $attributes = array())
  237. {
  238. return static::listing('ul', $list, $attributes);
  239. }
  240. /**
  241. * Generate an ordered or un-ordered list.
  242. *
  243. * @param string $type
  244. * @param array $list
  245. * @param array $attributes
  246. * @return string
  247. */
  248. private static function listing($type, $list, $attributes = array())
  249. {
  250. $html = '';
  251. foreach ($list as $key => $value)
  252. {
  253. // If the value is an array, we will recurse the function so that we can
  254. // produce a nested list within the list being built. Of course, nested
  255. // lists may exist within nested lists, etc.
  256. if (is_array($value))
  257. {
  258. $html .= static::listing($type, $value);
  259. }
  260. else
  261. {
  262. $html .= '<li>'.static::entities($value).'</li>';
  263. }
  264. }
  265. return '<'.$type.static::attributes($attributes).'>'.$html.'</'.$type.'>';
  266. }
  267. /**
  268. * Build a list of HTML attributes from an array.
  269. *
  270. * @param array $attributes
  271. * @return string
  272. */
  273. public static function attributes($attributes)
  274. {
  275. $html = array();
  276. foreach ((array) $attributes as $key => $value)
  277. {
  278. // For numeric keys, we will assume that the key and the value are the
  279. // same, as this will conver HTML attributes such as "required" that
  280. // may be specified as required="required".
  281. if (is_numeric($key)) $key = $value;
  282. if ( ! is_null($value))
  283. {
  284. $html[] = $key.'="'.static::entities($value).'"';
  285. }
  286. }
  287. return (count($html) > 0) ? ' '.implode(' ', $html) : '';
  288. }
  289. /**
  290. * Obfuscate a string to prevent spam-bots from sniffing it.
  291. *
  292. * @param string $value
  293. * @return string
  294. */
  295. protected static function obfuscate($value)
  296. {
  297. $safe = '';
  298. foreach (str_split($value) as $letter)
  299. {
  300. // To properly obfuscate the value, we will randomly convert each
  301. // letter to its entity or hexadecimal representation, keeping a
  302. // bot from sniffing the randomly obfuscated letters from the
  303. // page and guarding against e-mail harvesting.
  304. switch (rand(1, 3))
  305. {
  306. case 1:
  307. $safe .= '&#'.ord($letter).';';
  308. break;
  309. case 2:
  310. $safe .= '&#x'.dechex(ord($letter)).';';
  311. break;
  312. case 3:
  313. $safe .= $letter;
  314. }
  315. }
  316. return $safe;
  317. }
  318. }