[ Index ]

PHP Cross Reference of Joomla 2.5.4 DE

title

Body

[close]

/administrator/components/com_installer/views/default/tmpl/ -> default_message.php (source)

   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.5
   8   */
   9  
  10  // no direct access
  11  defined('_JEXEC') or die;
  12  
  13  $state            = $this->get('State');
  14  $message1        = $state->get('message');
  15  $message2        = $state->get('extension_message');
  16  ?>
  17  <table class="adminform">
  18      <tbody>
  19          <?php if ($message1) : ?>
  20          <tr>
  21              <th><?php echo $message1 ?></th>
  22          </tr>
  23          <?php endif; ?>
  24          <?php if ($message2) : ?>
  25          <tr>
  26              <td><?php echo $message2; ?></td>
  27          </tr>
  28          <?php endif; ?>
  29      </tbody>
  30  </table>


Generated: Tue Apr 3 11:40:28 2012 Cross-referenced by PHPXref 0.7.1