html.php 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  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. * @param bool $https
  160. * @return string
  161. */
  162. public static function link_to_route($name, $title, $parameters = array(), $attributes = array(), $https = false)
  163. {
  164. return static::link(URL::to_route($name, $parameters, $https), $title, $attributes);
  165. }
  166. /**
  167. * Generate an HTTPS HTML link to a route.
  168. *
  169. * @param string $name
  170. * @param string $title
  171. * @param array $parameters
  172. * @param array $attributes
  173. * @return string
  174. */
  175. public static function link_to_secure_route($name, $title, $parameters = array(), $attributes = array())
  176. {
  177. return static::link_to_route($name, $title, $parameters, $attributes, true);
  178. }
  179. /**
  180. * Generate an HTML mailto link.
  181. *
  182. * The E-Mail address will be obfuscated to protect it from spam bots.
  183. *
  184. * @param string $email
  185. * @param string $title
  186. * @param array $attributes
  187. * @return string
  188. */
  189. public static function mailto($email, $title = null, $attributes = array())
  190. {
  191. $email = static::email($email);
  192. if (is_null($title)) $title = $email;
  193. $email = '&#109;&#097;&#105;&#108;&#116;&#111;&#058;'.$email;
  194. return '<a href="'.$email.'"'.static::attributes($attributes).'>'.static::entities($title).'</a>';
  195. }
  196. /**
  197. * Obfuscate an e-mail address to prevent spam-bots from sniffing it.
  198. *
  199. * @param string $email
  200. * @return string
  201. */
  202. public static function email($email)
  203. {
  204. return str_replace('@', '&#64;', static::obfuscate($email));
  205. }
  206. /**
  207. * Generate an HTML image element.
  208. *
  209. * @param string $url
  210. * @param string $alt
  211. * @param array $attributes
  212. * @return string
  213. */
  214. public static function image($url, $alt = '', $attributes = array())
  215. {
  216. $attributes['alt'] = $alt;
  217. return '<img src="'.static::entities(URL::to_asset($url)).'"'.static::attributes($attributes).'>';
  218. }
  219. /**
  220. * Generate an ordered list of items.
  221. *
  222. * @param array $list
  223. * @param array $attributes
  224. * @return string
  225. */
  226. public static function ol($list, $attributes = array())
  227. {
  228. return static::listing('ol', $list, $attributes);
  229. }
  230. /**
  231. * Generate an un-ordered list of items.
  232. *
  233. * @param array $list
  234. * @param array $attributes
  235. * @return string
  236. */
  237. public static function ul($list, $attributes = array())
  238. {
  239. return static::listing('ul', $list, $attributes);
  240. }
  241. /**
  242. * Generate an ordered or un-ordered list.
  243. *
  244. * @param string $type
  245. * @param array $list
  246. * @param array $attributes
  247. * @return string
  248. */
  249. private static function listing($type, $list, $attributes = array())
  250. {
  251. $html = '';
  252. foreach ($list as $key => $value)
  253. {
  254. // If the value is an array, we will recurse the function so that we can
  255. // produce a nested list within the list being built. Of course, nested
  256. // lists may exist within nested lists, etc.
  257. if (is_array($value))
  258. {
  259. $html .= static::listing($type, $value);
  260. }
  261. else
  262. {
  263. $html .= '<li>'.static::entities($value).'</li>';
  264. }
  265. }
  266. return '<'.$type.static::attributes($attributes).'>'.$html.'</'.$type.'>';
  267. }
  268. /**
  269. * Build a list of HTML attributes from an array.
  270. *
  271. * @param array $attributes
  272. * @return string
  273. */
  274. public static function attributes($attributes)
  275. {
  276. $html = array();
  277. foreach ((array) $attributes as $key => $value)
  278. {
  279. // For numeric keys, we will assume that the key and the value are the
  280. // same, as this will conver HTML attributes such as "required" that
  281. // may be specified as required="required".
  282. if (is_numeric($key)) $key = $value;
  283. if ( ! is_null($value))
  284. {
  285. $html[] = $key.'="'.static::entities($value).'"';
  286. }
  287. }
  288. return (count($html) > 0) ? ' '.implode(' ', $html) : '';
  289. }
  290. /**
  291. * Obfuscate a string to prevent spam-bots from sniffing it.
  292. *
  293. * @param string $value
  294. * @return string
  295. */
  296. protected static function obfuscate($value)
  297. {
  298. $safe = '';
  299. foreach (str_split($value) as $letter)
  300. {
  301. // To properly obfuscate the value, we will randomly convert each
  302. // letter to its entity or hexadecimal representation, keeping a
  303. // bot from sniffing the randomly obfuscated letters from the
  304. // page and guarding against e-mail harvesting.
  305. switch (rand(1, 3))
  306. {
  307. case 1:
  308. $safe .= '&#'.ord($letter).';';
  309. break;
  310. case 2:
  311. $safe .= '&#x'.dechex(ord($letter)).';';
  312. break;
  313. case 3:
  314. $safe .= $letter;
  315. }
  316. }
  317. return $safe;
  318. }
  319. }