Update of /cvsroot/phpcms-plugins/admin4phpCMS
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28241
Modified Files:
Changelog index.php
Log Message:
module filemanager and editor included
Index: Changelog
===================================================================
RCS file: /cvsroot/phpcms-plugins/admin4phpCMS/Changelog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- Changelog 5 Jun 2004 12:44:22 -0000 1.5
+++ Changelog 18 Jun 2004 15:16:58 -0000 1.6
@@ -1,3 +1,8 @@
+June 18 2004 (mjahn)
+ * integrated filemanager (simple variant)
+ * integrated editor for XML and for text
+ * enhanced functionality of module layout
+
June 6 2004 (mjahn)
* separated layout for framework and layout-elements for the modules
into layout.tpl and layout.xml for better handling of module_layout
Index: index.php
===================================================================
RCS file: /cvsroot/phpcms-plugins/admin4phpCMS/index.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- index.php 4 Jun 2004 11:32:07 -0000 1.4
+++ index.php 18 Jun 2004 15:16:58 -0000 1.5
@@ -1,6 +1,6 @@
<?php
/**
-* Admin4phpCMS - modulare administration-gui
+* Admin4phpCMS - a modular administration-gui
*
* This script contains a modulare framework for several module.
* This software was written to make the administration of a website as easy
@@ -34,6 +34,9 @@
/*
* $Log$
+* Revision 1.5 2004/06/18 15:16:58 mjahn
+* module filemanager and editor included
+*
* Revision 1.4 2004/06/04 11:32:07 mjahn
* several changes
*
@@ -48,20 +51,30 @@
/**
* Defines wether the debug-module shows its data or not
**/
-define ('DEBUG', true);
+define ('DEBUG', false);
/**
-* PEAR-Pakete einbinden
+* Set the path for including the pear-packages
**/
ini_set ('include_path', realpath(dirname(__FILE__).'/../pear/').'/:'.ini_get('include_path'));
/**
-* Einbindung der Framwork-Klasse
+* Include the framework-class
**/
include_once (dirname(__FILE__).'/include/class.framework.php');
+/**
+* Initialize a new framework
+**/
$a = new framework();
+
+/**
+* Run the framework
+**/
$a->run();
+/**
+* Clear the variable-scope
+**/
unset ($a);
?>
\ No newline at end of file
|