| [ Index ] |
PHP Cross Reference of Joomla 2.5.4 DE |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * @package Joomla.Administrator 4 * @subpackage com_installer 5 * @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved. 6 * @license GNU General Public License version 2 or later; see LICENSE.txt 7 * @since 1.6 8 */ 9 10 // no direct access 11 defined('_JEXEC') or die; 12 ?> 13 <div id="installer-warnings"> 14 <form action="<?php echo JRoute::_('index.php?option=com_installer&view=warnings');?>" method="post" name="adminForm" id="adminForm"> 15 <?php 16 17 if (!count($this->messages)) { 18 echo '<p class="nowarning">'. JText::_('COM_INSTALLER_MSG_WARNINGS_NONE').'</p>'; 19 } else { 20 echo JHtml::_('sliders.start', 'warning-sliders', array('useCookie'=>1)); 21 foreach($this->messages as $message) { 22 echo JHtml::_('sliders.panel', $message['message'], str_replace(' ', '', $message['message'])); 23 echo '<div style="padding: 5px;" >'.$message['description'].'</div>'; 24 } 25 echo JHtml::_('sliders.panel', JText::_('COM_INSTALLER_MSG_WARNINGFURTHERINFO'), 'furtherinfo-pane'); 26 echo '<div style="padding: 5px;" >'. JText::_('COM_INSTALLER_MSG_WARNINGFURTHERINFODESC') .'</div>'; 27 echo JHtml::_('sliders.end'); 28 } 29 ?> 30 <div class="clr"> </div> 31 <div> 32 <input type="hidden" name="boxchecked" value="0" /> 33 <?php echo JHtml::_('form.token'); ?> 34 </div> 35 </form> 36 </div>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Tue Apr 3 11:40:28 2012 | Cross-referenced by PHPXref 0.7.1 |