File: WebApp.php

package info (click to toggle)
docbookwiki 0.9.1cvs-8
  • links: PTS
  • area: non-free
  • in suites: lenny
  • size: 17,572 kB
  • ctags: 4,443
  • sloc: xml: 28,920; php: 12,012; perl: 2,274; sh: 1,900; makefile: 81; sql: 10
file content (57 lines) | stat: -rw-r--r-- 1,813 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
  /*
   This file is  part of phpWebApp, which is  a framework for building
   web application based on relational databases.

   Copyright 2001, 2002, 2003, 2004, 2005, 2006, 2007
   Dashamir Hoxha, dashohoxha@users.sourceforge.net

   phpWebApp is  free software; you can redistribute  it and/or modify
   it under the  terms of the GNU General  Public License as published
   by the Free  Software Foundation; either version 2  of the License,
   or (at your option) any later version.

   phpWebApp is  distributed in the hope  that it will  be useful, but
   WITHOUT  ANY  WARRANTY;  without   even  the  implied  warranty  of
   MERCHANTABILITY or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU
   General Public License for more details.

   You should have  received a copy of the  GNU General Public License
   along  with   phpWebApp;  if  not,  write  to   the  Free  Software
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
   USA
  */

  //paths of the application framework
include_once WEBAPP_PATH."const.Paths.php";

//include localization component
include_once L10N_PATH."class.L10n.php";

//include session
include_once SESSION_PATH."class.Request.php";
include_once SESSION_PATH."class.Event.php";
include_once SESSION_PATH."class.Session.php";

//include parse_render component
include_once PARSER_PATH."package.ParseRender.php";

//include database component
include_once DB_PATH."package.DB.php";

include_once WEBAPP_PATH."class.WebApp.php";

//declare constants
define("UNDEFINED", "undefined");
define("WEBAPP_URL", WebApp::to_url(WEBAPP_PATH));

//global variables
$request = new Request; 
$tplVars = new VarStack;
$webPage = new WebPage;
$l10n    = new L10n;
$parser  = new Parser;
$render  = new Render;
$event   = new Event;
$session = new Session;
?>