Advertisement
RiQ363

Untitled

Feb 27th, 2015
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.53 KB | None | 0 0
  1. /**
  2.      * onBeforeRender handler
  3.      *
  4.      * Adds the prefetch metas
  5.      *
  6.      * @access  public
  7.      * @return null
  8.      */
  9.     function onBeforeRender()
  10.     {
  11.         $doc = JFactory::getDocument();
  12.  
  13.         if ($doc->getType() == 'html') {
  14.             $doc->addCustomTag('<link rel="dns-prefetch" href="//images-cdn.ecwid.com/">');
  15.             $doc->addCustomTag('<link rel="dns-prefetch" href="//images.ecwid.com/">');
  16.             $doc->addCustomTag('<link rel="dns-prefetch" href="//app.ecwid.com/">');
  17.         }
  18.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement