[ PHPXref.com ] [ Generated: Sun Jul 20 16:25:05 2008 ] [ ACollab 1.2 ]
[ Index ]     [ Variables ]     [ Functions ]     [ Classes ]     [ Constants ]     [ Statistics ]

title

Body

[close]

/ -> popuphelp.php (source)

   1  <?php
   2  /****************************************************************************************/
   3  /* ACollab                                                                              */
   4  /****************************************************************************************/
   5  /* Copyright (c) 2002-2004  Adaptive Technology Resource Centre / University of Toronto */
   6  /*                                                                                      */
   7  /* http://atutor.ca/acollab                                                             */
   8  /*                                                                                      */
   9  /* This program is free software. You may redistribute it and/or                        */
  10  /* modify it under the terms of the GNU General Public License                          */
  11  /* as published by the Free Software Foundation; either version 2 of the License,       */
  12  /* or (at your option) any later version.                                               */
  13  /*                                                                                      */
  14  /* This program is distributed in the hope that it will be useful, but                  */
  15  /* WITHOUT ANY WARRANTY; without even the implied warranty of                           */
  16  /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.                                 */
  17  /* See the GNU General Public License for more details.                                 */
  18  /*                                                                                      */
  19  /* You may access the GNU General Public License at:                                    */
  20  /* http://www.opensource.org/licenses/gpl-license.php                                   */
  21  /*                                                                                      */
  22  /* You may contact the Adaptive Technology Resource Centre at                           */
  23  /* Robarts Library, University of Toronto                                               */
  24  /* 130 St. George Street, Toronto, Ontario, Canada M5S 1A5                              */
  25  /* Further contact information is available at http://www.utoronto.ca/atrc/             */
  26  /****************************************************************************************/
  27  /* Programmer:                                                                          */
  28  /* Joel Kronenberg - ATRC                                                               */
  29  /****************************************************************************************/
  30  // $Id: popuphelp.php 13 2004-03-05 15:15:46Z joel $
  31  
  32  define('AC_INCLUDE_PATH', 'include/');
  33  
  34  require(AC_INCLUDE_PATH.'vitals.inc.php');
  35  authenticate(USER_CLIENT, USER_GROUP_ADMIN, USER_ADMIN);
  36  
  37  ?>
  38  <html>
  39  <head><title><?php echo _AC('help_window'); ?></title>
  40  <link rel="stylesheet" href="style.css" type="text/css" />
  41  </head>
  42  <body><a href="javascript:window.close()"><?php echo _AC('close_help_window'); ?></a>
  43  <br /><br />
  44  <table border="0" class="hlpbox" cellpadding="3" cellspacing="2" width="90%" summary="" align="center">
  45      <tr class="hlpbox">
  46      <td>
  47      <h3><img src="images/help.gif" align="top" alt="" class="img" /> <?php echo _AC('help'); ?></h3>
  48      <?php
  49      echo _AC($_GET['h']);
  50      ?>
  51  
  52      </td>
  53      </tr>
  54      </table>
  55  </body>
  56  </html>


[ Powered by PHPXref - Served by Debian GNU/Linux ]