Current Path :
/
home
/
develito
/
www
/
components
/
com_dmod
/
views
/
dmod
/
tmpl
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/develito/www/components/com_dmod/views/dmod/tmpl/default_links.php
<?php /*------------------------------------------------------------------------ # com_dmod - Dmod Module Manager # ------------------------------------------------------------------------ # author Jesus Vargas Garita # copyright Copyright (C) 2010 www.joomlahill.com. All Rights Reserved. # @license - http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL # Websites: http://www.joomlahill.com # Technical Support: Forum - http://www.joomlahill.com/forum -------------------------------------------------------------------------*/ // No direct access defined('_JEXEC') or die; ?> <ul id="dmod_links"> <?php if ( $this->dmod->homepage && $this->params->get('show_homepage',0)) : ?> <li class="dmod_homepage"> <a href="<?php echo $this->dmod->homepage; ?>" title="<?php echo JText::_('COM_DMOD_HOMEPAGE'); ?>" target="_blank"> <?php echo $this->params->get( 'marker_homepage' ); ?> </a> </li> <?php endif; ?> <?php if ( $this->dmod->download_url && $this->params->get('show_download_url',0) ) : ?> <li class="dmod_homepage"> <a href="<?php echo $this->dmod->download_url; ?>" title="<?php echo JText::_('COM_DMOD_DOWNLOAD_URL'); ?>" target="_blank"> <?php echo $this->params->get( 'marker_download_url' ); ?> </a> </li> <?php endif; ?> <?php if ( $this->dmod->review_link && $this->params->get('show_rate_review',0) ) : ?> <li class="dmod_homepage"> <a href="<?php echo $this->dmod->review_link; ?>" title="<?php echo JText::_('COM_DMOD_RATE_REVIEW'); ?>" target="_blank"> <?php echo $this->params->get( 'marker_review' ); ?> </a> </li> <?php endif; ?> </ul>