What can i do? I have no pdf Icon under Allrounder Template (joomla 1.7)
The manuel changing of source Code like written down in Doku here is not possible, because the Code is very different!
Can someone live me a Tip?
Thanx funnix
![Idea :idea:](./images/smilies/icon_idea.gif)
Code: Select all
<?php if ($canEdit || $params->get('show_print_icon') || $params->get('show_email_icon')) : ?>
Code: Select all
//PHOCAEDIT
$phocaPDF = false;
if (JPluginHelper::isEnabled('phocapdf', 'content')) {
include_once(JPATH_ADMINISTRATOR.DS.'components'.DS.'com_phocapdf'.DS.'helpers'.DS.'phocapdf.php');
$phocaPDF = PhocaPDFHelper::getPhocaPDFContentIcon($this->item, $params);
}
?>
<?php if ($canEdit || $params->get('show_print_icon') || $params->get('show_email_icon') || $phocaPDF) : ?>
Code: Select all
<ul class="actions">
Code: Select all
<?php echo $phocaPDF; //END PHOCAEDIT ?>