[ PHPXref.com ] [ Generated: Sun Jul 20 19:39:24 2008 ] [ PhpGedView 4.0 ]
[ Index ]     [ Variables ]     [ Functions ]     [ Classes ]     [ Constants ]     [ Statistics ]

title

Body

[close]

/ -> editconfig_help.php (source)

   1  <?php
   2  /**
   3   * English Language Configure Help file for PHPGedView
   4   *
   5   * phpGedView: Genealogy Viewer
   6   * Copyright (C) 2002 to 2005  PGV Development Team
   7   *
   8   * This program is free software; you can redistribute it and/or modify
   9   * it under the terms of the GNU General Public License as published by
  10   * the Free Software Foundation; either version 2 of the License, or
  11   * (at your option) any later version.
  12   *
  13   * This program is distributed in the hope that it will be useful,
  14   * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16   * GNU General Public License for more details.
  17   *
  18   * You should have received a copy of the GNU General Public License
  19   * along with this program; if not, write to the Free Software
  20   * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  21   *
  22   * @version $Id: editconfig_help.php,v 1.10.2.8 2006/01/13 23:00:17 yalnifj Exp $
  23   * @package PhpGedView
  24   * @subpackage Admin
  25   */
  26  require  "config.php";
  27  require $confighelpfile["english"];
  28  require $confighelpfile[$LANGUAGE];
  29  require $helptextfile["english"];
  30  if (file_exists($helptextfile[$LANGUAGE])) require $helptextfile[$LANGUAGE];
  31  require  ("help_text_vars.php");
  32  print_simple_header($pgv_lang["config_help"]);
  33  print '<span class="helpheader">';
  34  print_text("config_help");
  35  print '</span><br /><br /><span class="helptext">';
  36  if ($help == "help_contents_help") {
  37          if (userIsAdmin(getUserName())) {
  38          $help = "admin_help_contents_help";
  39          print_text("admin_help_contents_head_help");
  40      }
  41      else print_text("help_contents_head_help");
  42      print_help_index($help);
  43  }
  44  else {
  45      if ($help == "help_uploadgedcom.php") $help = "help_addgedcom.php";
  46  print_text($help);
  47  }
  48  print "</span><br /><br />";
  49  print "<a href=\"help_text.php?help=help_contents_help\"><b>";
  50  print_text("help_contents");
  51  print "</b></a><br />";
  52  print "<a href=\"javascript:;\" onclick=\"window.close();\"><b>";
  53  print_text("close_window");
  54  print "</b></a>";
  55  print_simple_footer();
  56  ?>


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