File Manager

Current Directory: /home/astoriaah/www/old15/administrator/components/com_akeeba/views/extfilter/tmpl
Viewing File: /home/astoriaah/www/old15/administrator/components/com_akeeba/views/extfilter/tmpl/templates.php
<?php /** * @package AkeebaBackup * @copyright Copyright (c)2009-2014 Nicholas K. Dionysopoulos * @license GNU General Public License version 3, or later * * @since 2.1 */ // Protect from unauthorized access defined('_JEXEC') or die(); JLoader::import('joomla.html.html'); JHtml::_('behavior.framework'); ?> <div class="alert alert-warning"> <span class="icon icon-warning-circle"></span> <?php echo JText::_('COM_AKEEBA_DEPRECATED_FEATURE'); ?> </div> <div class="alert alert-info"> <strong><?php echo JText::_('CPANEL_PROFILE_TITLE'); ?>: #<?php echo $this->profileid; ?></strong> <?php echo $this->profilename; ?> </div> <table class="table table-striped" width="100%"> <thead> <tr> <th width="50px"><?php echo JText::_('EXTFILTER_LABEL_STATE'); ?></th> <th><?php echo JText::_('EXTFILTER_LABEL_TEMPLATE'); ?></th> <th><?php echo JText::_('EXTFILTER_LABEL_AREA'); ?></th> </tr> </thead> <tfoot> <tr> <td colspan="3">&nbsp;</td> </tr> </tfoot> <tbody> <?php $i = 0; foreach($this->templates as $template): $i++; $link = JUri::base().'index.php?option=com_akeeba&view=extfilter&task=toggleTemplate&item='.$template['item'].'&root='.$template['root'].'&random='.time(); $area = $template['client_id'] == 0 ? JText::_('EXTFILTER_LABEL_FRONTEND') : JText::_('EXTFILTER_LABEL_BACKEND'); if($template['status']) { if(version_compare(JVERSION, '3.0', 'lt')) { $image = JHTML::_('image.administrator', 'admin/publish_x.png'); } else { $image = '<i class="icon-unpublish"></i>'; } $html = '<b>'.$template['name'].'</b>'; } else { if(version_compare(JVERSION, '3.0', 'lt')) { $image = JHTML::_('image.administrator', 'admin/tick.png'); } else { $image = '<i class="icon-publish"></i>'; } $html = $template['name']; } ?> <tr class="row<?php echo $i%2; ?>"> <td style="text-align: center;"><a href="<?php echo $link ?>"><?php echo $image ?></a></td> <td><a href="<?php echo $link ?>"><?php echo $html ?></a></td> <td><?php echo $area ?></td> </tr> <?php endforeach; ?> </tbody> </table>