Current Path :
/
home
/
develito
/
httpdocs
/
components
/
com_dmod
/
views
/
dmod
/
tmpl
/
Or
Select Your Path :
Upload File :
New :
File
Dir
//home/develito/httpdocs/components/com_dmod/views/dmod/tmpl/default.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 -------------------------------------------------------------------------*/ defined('_JEXEC') or die; ?> <div class="dmod<?php echo $this->pageclass_sfx?>" id="com_dmod"> <?php if ($this->params->get('show_page_heading', 1)) : ?> <h1> <?php echo $this->escape($this->params->get('page_heading')); ?> </h1> <?php endif; ?> <?php if ($this->dmod->name && $this->params->get('show_name',1)) : ?> <h2> <span class="dmod-name"><?php echo $this->dmod->name; ?></span> </h2> <?php endif; ?> <?php if ( $this->dmod->description && $this->params->get('show_description',1)) : ?> <div class="dmod_description"> <?php echo $this->dmod->description; ?> </div> <?php endif; ?> <?php if ( $this->params->get('details_check')) : ?> <?php echo $this->loadTemplate('details'); ?> <?php endif; ?> <?php if ($this->params->get('show_dmod_category') == 'show_no_link') : ?> <h3> <span class="dmod-category"><?php echo $this->dmod->category_title; ?></span> </h3> <?php endif; ?> <?php if ($this->params->get('show_dmod_category') == 'show_with_link') : ?> <?php $dmodLink = DmodHelperRoute::getCategoryRoute($this->dmod->catid);?> <h3> <span class="dmod-category"><a href="<?php echo $dmodLink; ?>"> <?php echo $this->escape($this->dmod->category_title); ?></a> </span> </h3> <?php endif; ?> <?php if ($this->params->get('show_dmod_list',0) && count($this->dmods) > 1) : ?> <form action="#" method="get" name="selectForm" id="selectForm"> <?php echo JText::_('COM_DMOD_SELECT_DMOD'); ?>: <?php echo JHtml::_('select.genericlist', $this->dmods, 'id', 'class="inputbox" onchange="document.location.href = this.value"', 'link', 'name', $this->dmod->link);?> </form> <?php endif; ?> <div class="dmod_module"> <?php echo JModuleHelper::renderModule($this->module,array('style' => $this->params->get( 'dmod_style' ))); ?> </div> <?php if ( $this->params->get('show_params',1) ) : ?> <?php echo $this->loadTemplate('params'); ?> <?php endif; ?> <?php if ($this->params->get('links_check')) : ?> <?php echo $this->loadTemplate('links'); ?> <?php endif; ?> </div>