| [ Index ] |
PHP Cross Reference of Joomla 1.5.26 DE |
[Summary view] [Print] [Text view]
1 <?php // @version $Id: default_logout.php 12352 2009-06-24 13:52:57Z ian $ 2 defined( '_JEXEC' ) or die( 'Restricted access' ); 3 ?> 4 5 <form action="<?php echo JRoute::_( 'index.php' ); ?>" method="post" name="login" id="login" class="logout_form<?php echo $this->escape($this->params->get( 'pageclass_sfx' )); ?>"> 6 <?php if ( $this->params->get( 'show_logout_title' ) ) : ?> 7 <h1 class="componentheading<?php echo $this->escape($this->params->get( 'pageclass_sfx' )); ?>"> 8 <?php echo $this->params->get( 'header_logout' ); ?> 9 </h1> 10 <?php endif; ?> 11 12 <?php if ( $this->params->get( 'description_logout' ) || isset( $this->image ) ) : ?> 13 <div class="contentdescription<?php echo $this->escape($this->params->get( 'pageclass_sfx' )); ?>"> 14 <?php if (isset ($this->image)) : 15 echo $this->image; 16 endif; 17 if ( $this->params->get( 'description_logout' ) ) : ?> 18 <p> 19 <?php echo $this->params->get('description_logout_text'); ?> 20 </p> 21 <?php endif; 22 if (isset ($this->image)) : ?> 23 <div class="wrap_image"> </div> 24 <?php endif; ?> 25 </div> 26 <?php endif; ?> 27 28 <p><input type="submit" name="Submit" class="button" value="<?php echo JText::_( 'Logout' ); ?>" /></p> 29 <input type="hidden" name="option" value="com_user" /> 30 <input type="hidden" name="task" value="logout" /> 31 <input type="hidden" name="return" value="<?php echo $this->return; ?>" /> 32 </form>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Wed Mar 28 15:54:07 2012 | Cross-referenced by PHPXref 0.7.1 |