Commit 7eae29d4e2c50ff16a42f6d1963b5cc7e8e8a23d

Authored by Michael Joseph
1 parent 21ea88a9

initial revision


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@55 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing 1 changed file with 30 additions and 0 deletions
dashboard.php 0 → 100644
  1 +<?php
  2 +/**
  3 + * dashboard.php -- Main dashboard page.
  4 + *
  5 + * This page is presented to the user after login.
  6 + * It contains a high level overview of the users subscriptions, checked out
  7 + * document, pending approval routing documents, etc.
  8 + *
  9 + * Licensed under the GNU GPL. For full terms see the file COPYING.
  10 + *
  11 + * @version $Id$
  12 + * @Copyright (c) 1999-2003 The Owl Project Team
  13 + * @author michael@jamwarehouse.com
  14 + * @package dms
  15 + */
  16 +
  17 +// main library routines and defaults
  18 +require_once("./config/dmsDefaults.php");
  19 +require_once("./lib/owl.lib.php");
  20 +require_once("./config/html.php");
  21 +require_once("./lib/control.inc");
  22 +require_once("./lib/Session.inc");
  23 +require_once("./lib/SiteMap.inc");
  24 +
  25 +// -------------------------------
  26 +// page start
  27 +// -------------------------------
  28 +
  29 +echo generateLink("LOGOUT") . "logout</a>";
  30 +?>
... ...