[Phpcms-plugins-cvs] admin4phpCMS Changelog,1.2,1.3 index.php,1.1.1.1,1.2
Brought to you by:
mjahn
From: Martin J. <mj...@us...> - 2004-05-30 18:04:22
|
Update of /cvsroot/phpcms-plugins/admin4phpCMS In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9898 Modified Files: Changelog index.php Log Message: restructuring of some files Index: Changelog =================================================================== RCS file: /cvsroot/phpcms-plugins/admin4phpCMS/Changelog,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Changelog 26 May 2004 11:25:56 -0000 1.2 +++ Changelog 30 May 2004 18:03:39 -0000 1.3 @@ -1,5 +1,8 @@ -May 26 2004 (mjahn) - * +May 30 2004 (mjahn) + * included some new basic modules (user, layout, error) + * created templatefile layout.xml with DTD + * created configfile config.xml with DTD + * included PEAR::LiveUser into framework May 21 2004 (mjahn) * created classes for actionhandler, eventhandler and application Index: index.php =================================================================== RCS file: /cvsroot/phpcms-plugins/admin4phpCMS/index.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- index.php 22 Apr 2004 07:55:18 -0000 1.1.1.1 +++ index.php 30 May 2004 18:03:39 -0000 1.2 @@ -0,0 +1,57 @@ +<?php +/** +* Admin4phpCMS - modulare Administrationsoberfläche +* +* Diese Software ist ein modulares Framework für Module aller Art. +* Zweck der Software ist es, die Administration einer Website durch verschiedene +* Module für den Administrator so einfach wie möglich zu halten. +* +* Ein integriertes Benutzer- und Rechtemanagment sorgt für den ungehinderten Zugriff +* für den Administrator und verhindert, daà DAUs die Website abschieÃen. +* +* This program 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. +* +* This program 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 this program; if not, write to the Free Software +* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +* +* @author Martin Jahn <mj...@us...> +* @license GPL +* @copyright Copyright (c) 2004, Martin Jahn +* @version $$ +* @package admin4phpCMS +**/ + +/* +* $Log$ +* Revision 1.2 2004/05/30 18:03:39 mjahn +* restructuring of some files +* +*/ + +/** +* PEAR-Pakete einbinden +**/ +ini_set ('include_path', realpath(dirname(__FILE__).'/../pear/').'/:'.ini_get('include_path')); + +/** +* Einbindung der Framwork-Klasse +**/ +include_once (dirname(__FILE__).'/include/class.framework.php'); + +$a = new framework(); +$a->run(); + +echo '<hr /><pre>'; +print_r($a); +echo '</pre>'; + +?> \ No newline at end of file |