[ Index ]
 

Code source de b2evolution 2.1.0-beta

Accédez au Source d'autres logiciels libres

Classes | Fonctions | Variables | Constantes | Tables

title

Body

[fermer]

/blogs/skins_adm/login/ -> _html_header.inc.php (source)

   1  <?php
   2  /**

   3   * This is the header file for login/registering services

   4   *

   5   * This file is part of the evoCore framework - {@link http://evocore.net/}

   6   * See also {@link http://sourceforge.net/projects/evocms/}.

   7   *

   8   * @copyright (c)2003-2007 by Francois PLANQUE - {@link http://fplanque.net/}

   9   *

  10   * {@internal License choice

  11   * - If you have received this file as part of a package, please find the license.txt file in

  12   *   the same folder or the closest folder above for complete license terms.

  13   * - If you have received this file individually (e-g: from http://evocms.cvs.sourceforge.net/)

  14   *   then you must choose one of the following licenses before using the file:

  15   *   - GNU General Public License 2 (GPL) - http://www.opensource.org/licenses/gpl-license.php

  16   *   - Mozilla Public License 1.1 (MPL) - http://www.opensource.org/licenses/mozilla1.1.php

  17   * }}

  18   *

  19   * {@internal Open Source relicensing agreement:

  20   * }}

  21   *

  22   * @package htsrv

  23   *

  24   * {@internal Below is a list of authors who have contributed to design/coding of this file: }}

  25   * @author fplanque: Francois PLANQUE.

  26   */
  27  if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' );
  28  
  29  header( 'Content-type: text/html; charset='.$io_charset );
  30  ?>
  31  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  32  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php locale_lang() ?>" lang="<?php locale_lang() ?>">
  33  <head>
  34      <title><?php echo $app_shortname.' &rsaquo; '.$page_title ?></title>
  35      <meta name="ROBOTS" content="NOINDEX" />
  36      <link href="<?php echo $rsc_url ?>css/login.css" rel="stylesheet" type="text/css" />
  37      <?php include_headlines() /* Add javascript and css files included by plugins and skin */ ?>
  38  </head>
  39  <body>
  40  
  41  
  42  <div class="loginblock">
  43  
  44  <div style="float:left">
  45      <h1 class="logintitle"><?php echo $app_banner; ?></h1>
  46  </div>
  47  
  48  <?php if( isset($page_icon) ) { ?>
  49  <img src="<?php echo $rsc_url.'icons/'.$page_icon ?>" width="24" height="24" style="float:right;" alt="" />
  50  <?php } ?>
  51  <div style="float:right">
  52  <h2 class="logintitle"><?php echo $page_title ?></h2>
  53  </div>
  54  
  55  <div class="clear"></div>
  56  
  57  <?php
  58  $Messages->display( '', '', true, 'all', array( 'login_error' => array( 'class' => 'log_error' ) ) );
  59  
  60  /*

  61   * $Log: _html_header.inc.php,v $

  62   * Revision 1.3  2007/07/09 21:24:11  fplanque

  63   * cleanup of admin page top

  64   *

  65   * Revision 1.2  2007/06/30 22:03:34  fplanque

  66   * cleanup

  67   *

  68   * Revision 1.1  2007/06/25 11:18:46  fplanque

  69   * MODULES (refactored MVC)

  70   *

  71   * Revision 1.18  2007/04/26 00:11:10  fplanque

  72   * (c) 2007

  73   *

  74   * Revision 1.17  2007/03/18 01:39:54  fplanque

  75   * renamed _main.php to main.page.php to comply with 2.0 naming scheme.

  76   * (more to come)

  77   *

  78   * Revision 1.16  2007/01/13 22:28:13  fplanque

  79   * doc

  80   *

  81   * Revision 1.15  2006/12/04 00:18:52  fplanque

  82   * keeping the login hashing

  83   *

  84   * Revision 1.12  2006/12/03 01:58:27  blueyed

  85   * Renamed $admin_path_seprator to $admin_path_separator and AdminUI_general::pathSeperator to AdminUI::pathSeparator

  86   *

  87   * Revision 1.11  2006/12/03 00:18:38  fplanque

  88   * SUSPECT code. Not releasable. Discussion by email.

  89   *

  90   * Revision 1.10  2006/11/28 02:52:26  fplanque

  91   * doc

  92   *

  93   * Revision 1.9  2006/11/26 01:42:10  fplanque

  94   * doc

  95   *

  96   * Revision 1.8  2006/11/24 18:27:26  blueyed

  97   * Fixed link to b2evo CVS browsing interface in file docblocks

  98   *

  99   * Revision 1.7  2006/10/13 11:44:07  blueyed

 100   * Allow injecting additional HTML-headlines

 101   *

 102   * Revision 1.6  2006/09/05 19:07:26  fplanque

 103   * small talk with robots

 104   *

 105   * Revision 1.5  2006/05/19 18:15:05  blueyed

 106   * Merged from v-1-8 branch

 107   *

 108   * Revision 1.4.2.1  2006/05/19 15:06:24  fplanque

 109   * dirty sync

 110   *

 111   * Revision 1.4  2006/05/02 05:46:08  blueyed

 112   * fix

 113   *

 114   * Revision 1.3  2006/04/29 01:24:05  blueyed

 115   * More decent charset support;

 116   * unresolved issues include:

 117   *  - front office still forces the blog's locale/charset!

 118   *  - if there's content in utf8, it cannot get displayed with an I/O charset of latin1

 119   *

 120   * Revision 1.2  2006/04/19 20:13:51  fplanque

 121   * do not restrict to :// (does not catch subdomains, not even www.)

 122   *

 123   */
 124  ?>


Généré le : Thu Nov 29 23:58:50 2007 par Balluche grâce à PHPXref 0.7
  Clicky Web Analytics