File Manager

Current Directory: /home/astoriaah/www/old15/administrator/components/com_akeeba/views/log/tmpl
Viewing File: /home/astoriaah/www/old15/administrator/components/com_akeeba/views/log/tmpl/default.php
<?php /** * @package AkeebaBackup * @copyright Copyright (c)2009-2014 Nicholas K. Dionysopoulos * @license GNU General Public License version 3, or later * * @since 1.3 */ defined('_JEXEC') or die(); if(empty($this->tag)) $this->tag = null; JHtml::_('behavior.framework'); if (version_compare(JVERSION, '3.0.0', 'ge')) JHtml::_('formbehavior.chosen'); ?> <?php if(count($this->logs)): ?> <form name="adminForm" id="adminForm" action="index.php" method="post" class="form-inline"> <input name="option" value="com_akeeba" type="hidden" /> <input name="view" value="log" type="hidden" /> <input type="hidden" name="<?php echo JFactory::getSession()->getFormToken()?>" value="1" /> <fieldset> <label for="tag"><?php echo JText::_('LOG_CHOOSE_FILE_TITLE'); ?></label> <?php echo JHtml::_('select.genericlist', $this->logs, 'tag', 'onchange="submitform();" class="advancedSelect"', 'value', 'text', $this->tag) ?> <?php if(!empty($this->tag)): ?> <button class="btn btn-primary" onclick="window.location='<?php echo JUri::base(); ?>index.php?option=com_akeeba&view=log&task=download&tag=<?php echo urlencode($this->tag); ?>'; return false;"> <i class="icon-download-alt icon-white"></i> <?php echo JText::_('LOG_LABEL_DOWNLOAD'); ?> </button> <?php endif; ?> <?php if(!empty($this->tag)): ?> <br/> <hr/> <iframe src="<?php echo JUri::base(); ?>index.php?option=com_akeeba&view=log&task=iframe&layout=raw&tag=<?php echo urlencode($this->tag); ?>" width="99%" height="400px"> </iframe> <?php endif; ?> </fieldset> </form> <?php else: ?> <div class="alert alert-error alert-block"> <?php echo JText::_('LOG_NONE_FOUND') ?> </div> <?php endif; ?>