phpgroupware-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpgroupware-cvs] wcm constructor.inc.php, NONE, 1.1.2.1 class.base.php


From: Dan Kuykendall <address@hidden>
Subject: [Phpgroupware-cvs] wcm constructor.inc.php, NONE, 1.1.2.1 class.base.php, 1.1.1.1.2.1, 1.1.1.1.2.2 starter.inc.php, 1.1.1.1, NONE
Date: Fri, 31 Oct 2003 08:42:36 +0000

Update of /cvsroot/phpgroupware/wcm
In directory subversions:/tmp/cvs-serv23958/wcm

Modified Files:
      Tag: proposal-branch
        class.base.php 
Added Files:
      Tag: proposal-branch
        constructor.inc.php 
Removed Files:
      Tag: proposal-branch
        starter.inc.php 
Log Message:
put initial inline doc standard in place

--- starter.inc.php DELETED ---

Index: class.base.php
===================================================================
RCS file: /cvsroot/phpgroupware/wcm/class.base.php,v
retrieving revision 1.1.1.1.2.1
retrieving revision 1.1.1.1.2.2
diff -C2 -d -r1.1.1.1.2.1 -r1.1.1.1.2.2
*** class.base.php      28 Oct 2003 04:28:44 -0000      1.1.1.1.2.1
--- class.base.php      31 Oct 2003 08:42:33 -0000      1.1.1.1.2.2
***************
*** 14,17 ****
--- 14,30 ----
        /* $Id$ */
  
+       $functions = array();
+ 
+       $functions['start'] = array(
+               'type'=>'public',
+               'title'=>'Web Content',
+               'abstract'=>'Starting point for the Web Content Manager'
+       );
+       
+       $GLOBALS['docs']['classes']['wcm_base'] = array(
+               'abstract'=>'Main class for the Web Content Manager',
+               'functions'=>$functions
+       );
+ 
        class wcm_base
        {

--- NEW FILE: constructor.inc.php ---
<?php
        
/**************************************************************************\
        * phpGroupWare                                                          
   *
        * http://www.phpgroupware.org                                           
   *
        * This file written by Dan Kuykendall <address@hidden>                 *
        * Copyright (C) 2003 Dan Kuykendall                                     
   *
        * 
-------------------------------------------------------------------------*
  * 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.                                               *
        
\**************************************************************************/

        /* $Id: constructor.inc.php,v 1.1.2.1 2003/10/31 08:42:33 seek3r Exp $ 
*/

        /* This is stuff that everything else in this app will end up needing. 
*/
        /* So this can help cut down duplicate code */
        $user = array('username'=>$GLOBALS['phpgw_session']['session_lid']);
        $GLOBALS['phpgw_xml_apinode']->add_node($user,'user');
        $GLOBALS['phpgw']->add_xsl('wcm.base');
        





reply via email to

[Prev in Thread] Current Thread [Next in Thread]