html.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416
  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. * Generate a JavaScript reference.
  17. *
  18. * <code>
  19. * // Generate a link to a JavaScript file
  20. * echo HTML::script('js/jquery.js');
  21. *
  22. * // Generate a link to a JavaScript file with attributes
  23. * echo HTML::script('js/jquery.js', array('defer'));
  24. * </code>
  25. *
  26. * @param string $url
  27. * @param array $attributes
  28. * @return string
  29. */
  30. public static function script($url, $attributes = array())
  31. {
  32. $url = static::entities(URL::to_asset($url));
  33. return '<script type="text/javascript" src="'.$url.'"'.static::attributes($attributes).'></script>'.PHP_EOL;
  34. }
  35. /**
  36. * Generate a CSS reference.
  37. *
  38. * If no media type is selected, "all" will be used.
  39. *
  40. * <code>
  41. * // Generate a link to a CSS file
  42. * echo HTML::style('css/common.css');
  43. *
  44. * // Generate a link to a CSS file with attributes
  45. * echo HTML::style('css/common.css', array('media' => 'print'));
  46. * </code>
  47. *
  48. * @param string $url
  49. * @param array $attributes
  50. * @return string
  51. */
  52. public static function style($url, $attributes = array())
  53. {
  54. if ( ! array_key_exists('media', $attributes)) $attributes['media'] = 'all';
  55. $attributes = array_merge($attributes, array('rel' => 'stylesheet', 'type' => 'text/css'));
  56. return '<link href="'.static::entities(URL::to_asset($url)).'"'.static::attributes($attributes).'>'.PHP_EOL;
  57. }
  58. /**
  59. * Generate a HTML span.
  60. *
  61. * <code>
  62. * // Generate a HTML span element
  63. * echo HTML::span('This is inside a span element.');
  64. *
  65. * // Generate a HTML span element with attributes
  66. * echo HTML::span('This is inside a span.', array('class' => 'text'));
  67. * </code>
  68. *
  69. * @param string $value
  70. * @param array $attributes
  71. * @return string
  72. */
  73. public static function span($value, $attributes = array())
  74. {
  75. return '<span'.static::attributes($attributes).'>'.static::entities($value).'</span>';
  76. }
  77. /**
  78. * Generate a HTML link.
  79. *
  80. * <code>
  81. * // Generate a HTML link element
  82. * echo HTML::link('user/profile', 'User Profile');
  83. *
  84. * // Generate a HTML link element with attributes
  85. * echo HTML::link('user/profile', 'User Profile', array('class' => 'profile'));
  86. * </code>
  87. *
  88. * @param string $url
  89. * @param string $title
  90. * @param array $attributes
  91. * @param bool $https
  92. * @param bool $asset
  93. * @return string
  94. */
  95. public static function link($url, $title, $attributes = array(), $https = false, $asset = false)
  96. {
  97. $url = static::entities(URL::to($url, $https, $asset));
  98. return '<a href="'.$url.'"'.static::attributes($attributes).'>'.static::entities($title).'</a>';
  99. }
  100. /**
  101. * Generate a HTTPS HTML link.
  102. *
  103. * @param string $url
  104. * @param string $title
  105. * @param array $attributes
  106. * @return string
  107. */
  108. public static function link_to_secure($url, $title, $attributes = array())
  109. {
  110. return static::link($url, $title, $attributes, true);
  111. }
  112. /**
  113. * Generate an HTML link to an asset.
  114. *
  115. * The application index page will not be added to asset links.
  116. *
  117. * @param string $url
  118. * @param string $title
  119. * @param array $attributes
  120. * @return string
  121. */
  122. public static function link_to_asset($url, $title, $attributes = array(), $https = false)
  123. {
  124. return static::link($url, $title, $attributes, $https, true);
  125. }
  126. /**
  127. * Generate an HTTPS HTML link to an asset.
  128. *
  129. * @param string $url
  130. * @param string $title
  131. * @param array $attributes
  132. * @return string
  133. */
  134. public static function link_to_secure_asset($url, $title, $attributes = array())
  135. {
  136. return static::link_to_asset($url, $title, $attributes, true);
  137. }
  138. /**
  139. * Generate an HTML link to a route.
  140. *
  141. * An array of parameters may be specified to fill in URI segment wildcards.
  142. *
  143. * <code>
  144. * // Generate a link to the "profile" route
  145. * echo HTML::link_to_route('profile', 'User Profile');
  146. *
  147. * // Generate a link to a route that has wildcard segments
  148. * // Example: /user/profile/(:any)
  149. * echo HTML::link_to_route('profile', 'User Profile', array($username));
  150. * </code>
  151. *
  152. * @param string $name
  153. * @param string $title
  154. * @param array $parameters
  155. * @param array $attributes
  156. * @return string
  157. */
  158. public static function link_to_route($name, $title, $parameters = array(), $attributes = array(), $https = false)
  159. {
  160. return static::link(URL::to_route($name, $parameters, $https), $title, $attributes);
  161. }
  162. /**
  163. * Generate an HTTPS HTML link to a route.
  164. *
  165. * @param string $name
  166. * @param string $title
  167. * @param array $parameters
  168. * @param array $attributes
  169. * @return string
  170. */
  171. public static function link_to_secure_route($name, $title, $parameters = array(), $attributes = array())
  172. {
  173. return static::link_to_route($name, $title, $parameters, $attributes, true);
  174. }
  175. /**
  176. * Generate an HTML mailto link.
  177. *
  178. * The E-Mail address will be obfuscated to protect it from spam bots.
  179. *
  180. * <code>
  181. * // Generate a HTML mailto link
  182. * echo HTML::mailto('example@gmail.com');
  183. *
  184. * // Generate a HTML mailto link with a title
  185. * echo HTML::mailto('example@gmail.com', 'E-Mail Me!');
  186. *
  187. * // Generate a HTML mailto link with attributes
  188. * echo HTML::mailto('example@gmail.com', 'E-Mail Me', array('class' => 'email'));
  189. * </code>
  190. *
  191. * @param string $email
  192. * @param string $title
  193. * @param array $attributes
  194. * @return string
  195. */
  196. public static function mailto($email, $title = null, $attributes = array())
  197. {
  198. $email = static::email($email);
  199. if (is_null($title)) $title = $email;
  200. $email = '&#109;&#097;&#105;&#108;&#116;&#111;&#058;'.$email;
  201. return '<a href="'.$email.'"'.static::attributes($attributes).'>'.static::entities($title).'</a>';
  202. }
  203. /**
  204. * Obfuscate an e-mail address to prevent spam-bots from sniffing it.
  205. *
  206. * @param string $email
  207. * @return string
  208. */
  209. public static function email($email)
  210. {
  211. return str_replace('@', '&#64;', static::obfuscate($email));
  212. }
  213. /**
  214. * Generate an HTML image element.
  215. *
  216. * <code>
  217. * // Generate a HTML image element
  218. * echo HTML::image('img/profile.jpg');
  219. *
  220. * // Generate a HTML image element with Alt text
  221. * echo HTML::image('img/profile.jpg', 'Profile Photo');
  222. *
  223. * // Generate a HTML image element with attributes
  224. * echo HTML::image('img/profile.jpg', 'Profile Photo', array('class' => 'profile'));
  225. * </code>
  226. *
  227. * @param string $url
  228. * @param string $alt
  229. * @param array $attributes
  230. * @return string
  231. */
  232. public static function image($url, $alt = '', $attributes = array())
  233. {
  234. $attributes['alt'] = $alt;
  235. return '<img src="'.static::entities(URL::to_asset($url)).'"'.static::attributes($attributes).'>';
  236. }
  237. /**
  238. * Generate an ordered list of items.
  239. *
  240. * <code>
  241. * // Generate an ordered list of items
  242. * echo HTML::ol(array('Small', 'Medium', 'Large'));
  243. *
  244. * // Generate an ordered list of items with attributes
  245. * echo HTML::ol(array('Small', 'Medium', 'Large'), array('class' => 'sizes'));
  246. * </code>
  247. *
  248. * @param array $list
  249. * @param array $attributes
  250. * @return string
  251. */
  252. public static function ol($list, $attributes = array())
  253. {
  254. return static::list_elements('ol', $list, $attributes);
  255. }
  256. /**
  257. * Generate an un-ordered list of items.
  258. *
  259. * <code>
  260. * // Generate an un-ordered list of items
  261. * echo HTML::ul(array('Small', 'Medium', 'Large'));
  262. *
  263. * // Generate an un-ordered list of items with attributes
  264. * echo HTML::ul(array('Small', 'Medium', 'Large'), array('class' => 'sizes'));
  265. * </code>
  266. *
  267. * @param array $list
  268. * @param array $attributes
  269. * @return string
  270. */
  271. public static function ul($list, $attributes = array())
  272. {
  273. return static::list_elements('ul', $list, $attributes);
  274. }
  275. /**
  276. * Generate an ordered or un-ordered list.
  277. *
  278. * @param string $type
  279. * @param array $list
  280. * @param array $attributes
  281. * @return string
  282. */
  283. private static function list_elements($type, $list, $attributes = array())
  284. {
  285. $html = '';
  286. foreach ($list as $key => $value)
  287. {
  288. $html .= (is_array($value)) ? static::list_elements($type, $value) : '<li>'.static::entities($value).'</li>';
  289. }
  290. return '<'.$type.static::attributes($attributes).'>'.$html.'</'.$type.'>';
  291. }
  292. /**
  293. * Build a list of HTML attributes from an array.
  294. *
  295. * @param array $attributes
  296. * @return string
  297. */
  298. public static function attributes($attributes)
  299. {
  300. $html = array();
  301. foreach ($attributes as $key => $value)
  302. {
  303. // Assume numeric-keyed attributes to have the same key and value.
  304. // Example: required="required", autofocus="autofocus", etc.
  305. if (is_numeric($key)) $key = $value;
  306. if ( ! is_null($value))
  307. {
  308. $html[] = $key.'="'.static::entities($value).'"';
  309. }
  310. }
  311. return (count($html) > 0) ? ' '.implode(' ', $html) : '';
  312. }
  313. /**
  314. * Obfuscate a string to prevent spam-bots from sniffing it.
  315. *
  316. * @param string $value
  317. * @return string
  318. */
  319. public static function obfuscate($value)
  320. {
  321. $safe = '';
  322. foreach (str_split($value) as $letter)
  323. {
  324. switch (rand(1, 3))
  325. {
  326. // Convert the letter to its entity representation.
  327. case 1:
  328. $safe .= '&#'.ord($letter).';';
  329. break;
  330. // Convert the letter to a Hex character code.
  331. case 2:
  332. $safe .= '&#x'.dechex(ord($letter)).';';
  333. break;
  334. // No encoding.
  335. case 3:
  336. $safe .= $letter;
  337. }
  338. }
  339. return $safe;
  340. }
  341. /**
  342. * Magic Method for handling dynamic static methods.
  343. *
  344. * This method primarily handles dynamic calls to create links to named routes.
  345. *
  346. * <code>
  347. * // Create a link to the "profile" named route
  348. * echo HTML::link_to_profile('Profile');
  349. *
  350. * // Create a link to a named route with URI wildcard parameters
  351. * echo HTML::link_to_posts('Posts', array($year, $month));
  352. *
  353. * // Create a HTTPS link to the "profile" named route
  354. * echo HTML::link_to_secure_profile('Profile');
  355. *
  356. * // Create a HTTPS link to a named route URI wildcard parameters
  357. * echo HTML::link_to_secure_posts('Posts', array($year, $month));
  358. * </code>
  359. */
  360. public static function __callStatic($method, $parameters)
  361. {
  362. if (strpos($method, 'link_to_secure_') === 0)
  363. {
  364. array_unshift($parameters, substr($method, 15));
  365. return forward_static_call_array('HTML::link_to_secure_route', $parameters);
  366. }
  367. if (strpos($method, 'link_to_') === 0)
  368. {
  369. array_unshift($parameters, substr($method, 8));
  370. return forward_static_call_array('HTML::link_to_route', $parameters);
  371. }
  372. throw new \Exception("Method [$method] is not defined on the HTML class.");
  373. }
  374. }