phpgroupware-cvs
[Top][All Lists]
Advanced

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

[Phpgroupware-cvs] folders/inc class.bofolders.inc.php, 1.7 class.treeme


From: powerstat
Subject: [Phpgroupware-cvs] folders/inc class.bofolders.inc.php, 1.7 class.treemenu.inc.php, 1.3 class.uifolders.inc.php, 1.8 class.folders_service.inc.php, 1.2 class.layersmenu.inc.php, 1.2
Date: Tue, 10 May 2005 14:21:00 +0200

Update of folders/inc

Modified Files:
     Branch: MAIN
            class.bofolders.inc.php lines: +29 -9
            class.treemenu.inc.php lines: +15 -7
            class.uifolders.inc.php lines: +4 -9
            class.folders_service.inc.php lines: +14 -5
            class.layersmenu.inc.php lines: +16 -9

Log Message:
Fixed phpdoc's

====================================================
Index: folders/inc/class.bofolders.inc.php
diff -u folders/inc/class.bofolders.inc.php:1.6 
folders/inc/class.bofolders.inc.php:1.7
--- folders/inc/class.bofolders.inc.php:1.6     Fri Nov 19 09:30:26 2004
+++ folders/inc/class.bofolders.inc.php Tue May 10 12:21:25 2005
@@ -1,19 +1,39 @@
 <?php
 /**
- * folders module
+ * folders
  * @author Philipp Kamps <address@hidden>
- * @copyright Copyright (C) 2003 Free Software Foundation http://www.fsf.org/
+ * @copyright Copyright (C) 2003,2005 Free Software Foundation 
http://www.fsf.org/
  * @license http://www.fsf.org/licenses/gpl.html GNU General Public License
  * @package folders
  * @version $Id$
  */

-       include ('folders/phplayersmenu/lib/PHPLIB.php');
-       include ('folders/phplayersmenu/lib/layersmenu-common.inc.php');
-       include ('folders/phplayersmenu/lib/treemenu.inc.php');
-       include ('folders/inc/class.treemenu.inc.php');
-
-
+       /**
+       * Include phplayersmenu - phplib template class
+       */
+       require_once('folders/phplayersmenu/lib/PHPLIB.php');
+
+       /**
+       * Include phplayersmenu - common
+       */
+       require_once('folders/phplayersmenu/lib/layersmenu-common.inc.php');
+
+       /**
+       * Include phplayersmenu - treemenu
+       */
+       require_once('folders/phplayersmenu/lib/treemenu.inc.php');
+
+       /**
+       * Include phplayersmenu - treemenu
+       */
+       require_once('folders/inc/class.treemenu.inc.php');
+
+
+       /**
+       * folders business object
+       *
+       * @package folders
+       */
        class bofolders
        {
                var $public_functions = Array(

====================================================
Index: folders/inc/class.treemenu.inc.php
diff -u folders/inc/class.treemenu.inc.php:1.2 
folders/inc/class.treemenu.inc.php:1.3
--- folders/inc/class.treemenu.inc.php:1.2      Mon Nov 17 17:30:59 2003
+++ folders/inc/class.treemenu.inc.php  Tue May 10 12:21:25 2005
@@ -1,16 +1,25 @@
 <?php
-// original project
-// PHP Layers Menu 3.1.0 (C) 2001-2003 Marco Pratesi (marco at telug dot it)
-
 /**
  * folders module
+ *
+ * @author Marco Pratesi <address@hidden>
  * @author Philipp Kamps <address@hidden>
- * @copyright Copyright (C) 2003 Free Software Foundation http://www.fsf.org/
+ * @copyright Copyright (C) 2001-2003 Marco Pratesi
+ * @copyright Copyright (C) 2003,2005 Free Software Foundation 
http://www.fsf.org/
  * @license http://www.fsf.org/licenses/gpl.html GNU General Public License
  * @package folders
- * @version $Id
+ * @version $Id$
  */

+
+// require_once('folders/inc/class.treemenu.inc.php');
+
+
+/**
+* phpgroupware tree menu
+*
+* @package folders
+*/
 class phpGWTreeMenu extends TreeMenu
 {

@@ -272,8 +281,7 @@
        $this->_treeMenu[$menu_name] = $toggle_function . "\n" . 
$this->_treeMenu[$menu_name] . "\n" . $toggle;

        return $this->_treeMenu[$menu_name];
-}
+  }

 }
-
 ?>

====================================================
Index: folders/inc/class.uifolders.inc.php
diff -u folders/inc/class.uifolders.inc.php:1.7 
folders/inc/class.uifolders.inc.php:1.8
--- folders/inc/class.uifolders.inc.php:1.7     Tue Feb 15 10:43:32 2005
+++ folders/inc/class.uifolders.inc.php Tue May 10 12:21:25 2005
@@ -1,16 +1,16 @@
 <?php
 /**
- * folders module
+ * folders
  *
  * @author Philipp Kamps <address@hidden>
- * @copyright Copyright (C) 2003 Free Software Foundation http://www.fsf.org/
+ * @copyright Copyright (C) 2003,2005 Free Software Foundation 
http://www.fsf.org/
  * @license http://www.fsf.org/licenses/gpl.html GNU General Public License
  * @package folders
  * @version $Id$
  */

        /**
-        * This class handles the user interface
+        * Folders user interface
         *
         * @package folders
         */
@@ -29,7 +29,6 @@
                 * contains all public method names
                 *
                 * @var array $public_functions contains all public method names
-                *
                 */
                var $public_functions = array('enablefolders' => true,
                                                                                
                                                        'disablefolders' => 
true,
@@ -38,7 +37,6 @@

                /**
                 * constructor
-                *
                 */
                function uifolders()
                {
@@ -47,7 +45,6 @@

                /**
                 * set session var 'mode' and reloads the page
-                *
                 */
                function enableFolders()
                {
@@ -57,7 +54,6 @@

                /**
                 * set session var 'mode' and reloads the page
-                *
                 */
                function disableFolders()
                {
@@ -67,7 +63,6 @@

                /**
                 * parse the folders and print it on screen
-                *
                 */
                function showFolders()
                {

====================================================
Index: folders/inc/class.folders_service.inc.php
diff -u folders/inc/class.folders_service.inc.php:1.1 
folders/inc/class.folders_service.inc.php:1.2
--- folders/inc/class.folders_service.inc.php:1.1       Mon Nov 17 17:29:01 2003
+++ folders/inc/class.folders_service.inc.php   Tue May 10 12:21:25 2005
@@ -2,12 +2,21 @@
 /**
  * folders module
  * @author Philipp Kamps <address@hidden>
- * @copyright Copyright (C) 2003 Free Software Foundation http://www.fsf.org/
+ * @copyright Copyright (C) 2003,2005 Free Software Foundation 
http://www.fsf.org/
  * @license http://www.fsf.org/licenses/gpl.html GNU General Public License
  * @package folders
- * @subpackage service
- * @version $Id:
+ * @subpackage services
+ * @version $Id$
  */
+
+
+
+/**
+* folders services
+*
+* @package folders
+* @subpackage services
+*/
 class folders_service
 {
        function folders_service ()
@@ -17,14 +26,14 @@

        function getFolderContent()
        {
-               /** Not working - retrun_sorted_array only returns cats
+               /*  Not working - retrun_sorted_array only returns cats
                    from the actual appl. and not for every application
                    when needed :-(((

                $catObj = CreateObject('phpgwapi.categories');
                $cats = $catObj->return_sorted_array(0,false,'','','',true);

-               **/
+               */

                /* Workaround for phpgw.categories.return_sorted_array */
                $db = $GLOBALS['phpgw']->db;

====================================================
Index: folders/inc/class.layersmenu.inc.php
diff -u folders/inc/class.layersmenu.inc.php:1.1 
folders/inc/class.layersmenu.inc.php:1.2
--- folders/inc/class.layersmenu.inc.php:1.1    Tue Jan 27 14:57:04 2004
+++ folders/inc/class.layersmenu.inc.php        Tue May 10 12:21:25 2005
@@ -1,18 +1,26 @@
 <?php
-// PHP Layers Menu 3.1.0 (C) 2001-2003 Marco Pratesi (marco at telug dot it)
-
 /**
-* This file contains the code of the LayersMenu class.
-* @package PHPLayersMenu
-*/
+ * PHP Layers Menu
+ *
+ * @author Marco Pratesi <address@hidden>
+ * @author Philipp Kamps <address@hidden>
+ * @copyright Copyright (C) 2001-2003 Marco Pratesi
+ * @copyright Copyright (C) 2003,2005 Free Software Foundation 
http://www.fsf.org/
+ * @license http://www.fsf.org/licenses/gpl.html GNU General Public License
+ * @package folders
+ * @version $Id$
+ */
+
+
+// require_once('folders/phplayersmenu/lib/layersmenu-common.inc.php');
+

 /**
-* This is the LayersMenu class of the PHP Layers Menu library.
+* LayersMenu class of the PHP Layers Menu library.
 *
 * This class depends on the LayersMenuCommon class and on the PEAR conforming 
version of the PHPLib Template class, i.e. on HTML_Template_PHPLIB
 *
-* @version 3.1.0
-* @package PHPLayersMenu
+* @package folders
 */
 class phpgwLayersMenu extends LayersMenu
 {
@@ -64,5 +72,4 @@
                $this->_postParse($menu_name);
        }
 }
-
 ?>






reply via email to

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