Back to PhocacartRenderMedia class

Method renderPrettyPhoto

public
renderPrettyPhoto
()

Method renderPrettyPhoto - Source code

public function renderPrettyPhoto()
{
    //HTMLHelper::_('stylesheet', 'media/com_phocacart/js/prettyphoto/css/prettyPhoto.css', array('version' => 'auto'));
    // HTMLHelper::_('script', 'media/com_phocacart/js/prettyphoto/js/jquery.prettyPhoto.js', array('version' => 'auto'), $this->scriptAtributeInline);
    $this->wa->registerAndUseStyle('com_phocacart.prettyphoto', 'media/com_phocacart/js/prettyphoto/css/prettyPhoto.css', array('version' => 'auto'));
    $this->wa->registerAndUseScript('com_phocacart.prettyphoto', 'media/com_phocacart/js/prettyphoto/js/jquery.prettyPhoto.js', array('version' => 'auto'), $this->scriptAtributeInline);
    $s[] = 'jQuery(document).ready(function(){';
    $s[] = '	jQuery("a[rel^=\'prettyPhoto\']").prettyPhoto({';
    $s[] = '  social_tools: 0';
    $s[] = '  });';
    $s[] = '})';
    $this->wa->addInlineScript(implode("\n", $s));
    //$this->document->addScriptDeclaration(implode("\n", $s));
}