phpgroupware-cvs
[Top][All Lists]
Advanced

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

[Phpgroupware-cvs] todo/inc hook_home.inc.php, 1.8 hook_preferences.inc.


From: powerstat
Subject: [Phpgroupware-cvs] todo/inc hook_home.inc.php, 1.8 hook_preferences.inc.php, 1.14 class.sotodo.inc.php, 1.18 class.uipreferences.inc.php, 1.3 class.uitodo.inc.php, 1.24 class.botodo.inc.php, 1.18 hook_deleteaccount.inc.php, 1.4 class.bopreferences.inc.php, 1.5 hook_admin.inc.php, 1.7 hook_manual.inc.php, 1.5
Date: Tue, 10 May 2005 17:48:00 +0200

Update of todo/inc

Modified Files:
     Branch: MAIN
            hook_home.inc.php lines: +9 -10
            hook_preferences.inc.php lines: +11 -13
            class.sotodo.inc.php lines: +17 -17
            class.uipreferences.inc.php lines: +19 -15
            class.uitodo.inc.php lines: +17 -17
            class.botodo.inc.php lines: +16 -17
            hook_deleteaccount.inc.php lines: +10 -11
            class.bopreferences.inc.php lines: +19 -15
            hook_admin.inc.php lines: +11 -12
            hook_manual.inc.php lines: +11 -13

Log Message:
Added phpdocs

====================================================
Index: todo/inc/hook_home.inc.php
diff -u todo/inc/hook_home.inc.php:1.7 todo/inc/hook_home.inc.php:1.8
--- todo/inc/hook_home.inc.php:1.7      Mon Oct 28 01:31:33 2002
+++ todo/inc/hook_home.inc.php  Tue May 10 15:48:57 2005
@@ -1,14 +1,13 @@
 <?php
-       
/**************************************************************************\
-       * phpGroupWare - hook home                                              
   *
-       * http://www.phpgroupware.org                                           
   *
-       * --------------------------------------------                          
   *
-       *  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$ */
+       /**
+       * Todo - admin hook
+       *
+       * @copyright Copyright (C) 2002,2005 Free Software Foundation, Inc. 
http://www.fsf.org/
+       * @license http://www.gnu.org/licenses/gpl.html GNU General Public 
License
+       * @package todo
+       * @subpackage hooks
+       * @version $Id$
+       */

        $d1 = strtolower(substr(PHPGW_APP_INC,0,3));
        if($d1 == 'htt' || $d1 == 'ftp' )

====================================================
Index: todo/inc/hook_preferences.inc.php
diff -u todo/inc/hook_preferences.inc.php:1.13 
todo/inc/hook_preferences.inc.php:1.14
--- todo/inc/hook_preferences.inc.php:1.13      Mon Nov  4 00:50:18 2002
+++ todo/inc/hook_preferences.inc.php   Tue May 10 15:48:58 2005
@@ -1,15 +1,14 @@
 <?php
-       
/**************************************************************************\
-       * phpGroupWare                                                          
   *
-       * http://www.phpgroupware.org                                           
   *
-       * Written by Joseph Engo <address@hidden>                          *
-       * --------------------------------------------                          
   *
-       *  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$ */
+       /**
+       * Todo - admin hook
+       *
+       * @author Joseph Engo <address@hidden>
+       * @copyright Copyright (C) 2000-2002,2005 Free Software Foundation, 
Inc. http://www.fsf.org/
+       * @license http://www.gnu.org/licenses/gpl.html GNU General Public 
License
+       * @package todo
+       * @subpackage hooks
+       * @version $Id$
+       */

        {
 // Only Modify the $file and $title variables.....
@@ -26,8 +25,7 @@
                        'Edit categories' => 
$GLOBALS['phpgw']->link('/index.php','menuaction=preferences.uicategories.index&cats_app='
 . $appname
                                                                                
                                . '&cats_level=True&global_cats=True')
                );
-//Do not modify below this line
-
+// Do not modify below this line
                display_section($appname,$file);
        }
 ?>

====================================================
Index: todo/inc/class.sotodo.inc.php
diff -u todo/inc/class.sotodo.inc.php:1.17 todo/inc/class.sotodo.inc.php:1.18
--- todo/inc/class.sotodo.inc.php:1.17  Fri Apr 30 14:36:45 2004
+++ todo/inc/class.sotodo.inc.php       Tue May 10 15:48:57 2005
@@ -1,21 +1,21 @@
 <?php
-       
/*************************************************************************\
-       * phpGroupWare - Todo list                                              
  *
-       * http://www.phpgroupware.org                                           
  *
-       * This program is part of the GNU project, see http://www.gnu.org/      
  *
-       *                                                                       
  *
-       * Written by Joseph Engo <address@hidden>                         *
-       *            Bettina Gille address@hidden                         *
-       * -----------------------------------------------                       
  *
-       * Copyright 2000 - 2003 Free Software Foundation, Inc                   
  *
-       *                                                                       
  *
-       * 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$ */
-
+       /**
+       * Todo storage
+       *
+       * @author Joseph Engo <address@hidden>
+       * @author Bettina Gille address@hidden
+       * @copyright Copyright (C) 2000-2003,2005 Free Software Foundation, 
Inc. http://www.fsf.org/
+       * @license http://www.gnu.org/licenses/gpl.html GNU General Public 
License
+       * @package todo
+       * @version $Id$
+       */
+
+
+       /**
+       * Todo storage
+       *
+       * @package todo
+       */
        class sotodo
        {
                var $db;

====================================================
Index: todo/inc/class.uipreferences.inc.php
diff -u todo/inc/class.uipreferences.inc.php:1.2 
todo/inc/class.uipreferences.inc.php:1.3
--- todo/inc/class.uipreferences.inc.php:1.2    Sun Apr 28 19:32:14 2002
+++ todo/inc/class.uipreferences.inc.php        Tue May 10 15:48:57 2005
@@ -1,19 +1,23 @@
 <?php
-  /**************************************************************************\
-  * phpGroupWare - Calendar                                                  *
-  * http://www.phpgroupware.org                                              *
-  * Based on Webcalendar by Craig Knudsen <address@hidden>               *
-  *          http://www.radix.net/~cknudsen                                  *
-  * Modified by Mark Peters <address@hidden>                       *
-  * --------------------------------------------                             *
-  *  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$ */
-
+       /**
+       * Todo preferences
+       *
+       * @author Craig Knudsen <address@hidden>
+       * @author Mark Peters <address@hidden>
+       * @copyright Copyright (C) Craig Knudsen <address@hidden>
+       * @copyright Copyright (C) 2002,2005 Free Software Foundation, Inc. 
http://www.fsf.org/
+       * @license http://www.gnu.org/licenses/gpl.html GNU General Public 
License
+       * @package todo
+       * @version $Id$
+       * @internal Based on Webcalendar by Craig Knudsen 
http://www.radix.net/~cknudsen
+       */
+
+
+       /**
+       * Todo preferences
+       *
+       * @package todo
+       */
        class uipreferences
        {
 //             var $template_dir;

====================================================
Index: todo/inc/class.uitodo.inc.php
diff -u todo/inc/class.uitodo.inc.php:1.23 todo/inc/class.uitodo.inc.php:1.24
--- todo/inc/class.uitodo.inc.php:1.23  Wed Dec 24 00:39:04 2003
+++ todo/inc/class.uitodo.inc.php       Tue May 10 15:48:57 2005
@@ -1,21 +1,21 @@
 <?php
-       
/*************************************************************************\
-       * phpGroupWare - Todo list                                              
  *
-       * http://www.phpgroupware.org                                           
  *
-       * This program is part of the GNU project, see http://www.gnu.org/      
  *
-       *                                                                       
  *
-       * Written by Joseph Engo <address@hidden>                         *
-       *            Bettina Gille address@hidden                         *
-       * -----------------------------------------------                       
  *
-       * Copyright 2000 - 2003 Free Software Foundation, Inc                   
  *
-       *                                                                       
  *
-       * 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$ */
-
+       /**
+       * Todo user interface
+       *
+       * @author Joseph Engo <address@hidden>
+       * @author Bettina Gille address@hidden
+       * @copyright Copyright (C) 2000-2003,2005 Free Software Foundation, 
Inc. http://www.fsf.org/
+       * @license http://www.gnu.org/licenses/gpl.html GNU General Public 
License
+       * @package todo
+       * @version $Id$
+       */
+
+
+       /**
+       * Todo user interface
+       *
+       * @package todo
+       */
        class uitodo
        {
                var $grants;

====================================================
Index: todo/inc/class.botodo.inc.php
diff -u todo/inc/class.botodo.inc.php:1.17 todo/inc/class.botodo.inc.php:1.18
--- todo/inc/class.botodo.inc.php:1.17  Wed Dec 24 00:39:04 2003
+++ todo/inc/class.botodo.inc.php       Tue May 10 15:48:57 2005
@@ -1,21 +1,20 @@
 <?php
-       
/*************************************************************************\
-       * phpGroupWare - Todo list                                              
  *
-       * http://www.phpgroupware.org                                           
  *
-       * This program is part of the GNU project, see http://www.gnu.org/      
  *
-       *                                                                       
  *
-       * Written by Joseph Engo <address@hidden>                         *
-       *            Bettina Gille address@hidden                         *
-       * -----------------------------------------------                       
  *
-       * Copyright 2000 - 2003 Free Software Foundation, Inc                   
  *
-       *                                                                       
  *
-       * 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$ */
-
+       /**
+       * Todo business
+       *
+       * @author Joseph Engo <address@hidden>
+       * @author Bettina Gille address@hidden
+       * @copyright Copyright (C) 2000-2003,2005 Free Software Foundation, 
Inc. http://www.fsf.org/
+       * @license http://www.gnu.org/licenses/gpl.html GNU General Public 
License
+       * @package todo
+       * @version $Id$
+       */
+
+       /**
+       * Todo business
+       *
+       * @package todo
+       */
        class botodo
        {
                var $start;

====================================================
Index: todo/inc/hook_deleteaccount.inc.php
diff -u todo/inc/hook_deleteaccount.inc.php:1.3 
todo/inc/hook_deleteaccount.inc.php:1.4
--- todo/inc/hook_deleteaccount.inc.php:1.3     Mon Apr 29 02:56:30 2002
+++ todo/inc/hook_deleteaccount.inc.php Tue May 10 15:48:57 2005
@@ -1,15 +1,14 @@
 <?php
-  /**************************************************************************\
-  * phpGroupWare                                                             *
-  * http://www.phpgroupware.org                                              *
-  * Written by Mark Peters <address@hidden>                        *
-  * --------------------------------------------                             *
-  *  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$ */
+       /**
+       * Todo - delete account hook
+       *
+       * @author Mark Peters <address@hidden>
+       * @copyright Copyright (C) 2000-2005 Free Software Foundation, Inc. 
http://www.fsf.org/
+       * @license http://www.gnu.org/licenses/gpl.html GNU General Public 
License
+       * @package todo
+       * @subpackage hooks
+       * @version $Id$
+       */

        // Delete all records for a user
        $table_locks = Array('phpgw_todo');

====================================================
Index: todo/inc/class.bopreferences.inc.php
diff -u todo/inc/class.bopreferences.inc.php:1.4 
todo/inc/class.bopreferences.inc.php:1.5
--- todo/inc/class.bopreferences.inc.php:1.4    Sat Sep 28 20:01:44 2002
+++ todo/inc/class.bopreferences.inc.php        Tue May 10 15:48:57 2005
@@ -1,19 +1,23 @@
 <?php
-  /**************************************************************************\
-  * phpGroupWare - Calendar                                                  *
-  * http://www.phpgroupware.org                                              *
-  * Based on Webcalendar by Craig Knudsen <address@hidden>               *
-  *          http://www.radix.net/~cknudsen                                  *
-  * Modified by Mark Peters <address@hidden>                       *
-  * --------------------------------------------                             *
-  *  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$ */
-
+       /**
+       * Todo preferences
+       *
+       * @author Craig Knudsen <address@hidden>
+       * @author Mark Peters <address@hidden>
+       * @copyright Copyright (C) Craig Knudsen <address@hidden>
+       * @copyright Copyright (C) 2002,2005 Free Software Foundation, Inc. 
http://www.fsf.org/
+       * @license http://www.gnu.org/licenses/gpl.html GNU General Public 
License
+       * @package todo
+       * @version $Id$
+       * @internal Based on Webcalendar by Craig Knudsen 
http://www.radix.net/~cknudsen
+       */
+
+
+       /**
+       * Todo preferences
+       *
+       * @package todo
+       */
        class bopreferences
        {
                var $public_functions = Array(

====================================================
Index: todo/inc/hook_admin.inc.php
diff -u todo/inc/hook_admin.inc.php:1.6 todo/inc/hook_admin.inc.php:1.7
--- todo/inc/hook_admin.inc.php:1.6     Sun Apr 20 01:51:54 2003
+++ todo/inc/hook_admin.inc.php Tue May 10 15:48:57 2005
@@ -1,16 +1,15 @@
 <?php
-       
/**************************************************************************\
-       * phpGroupWare                                                          
   *
-       * http://www.phpgroupware.org                                           
   *
-       * Written by Joseph Engo <address@hidden>                          *
-       * --------------------------------------------                          
   *
-       *  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$
-       // $Source$
+       /**
+       * Todo - admin hook
+       *
+       * @author Joseph Engo <address@hidden>
+       * @copyright Copyright (C) 2000-2005 Free Software Foundation, Inc. 
http://www.fsf.org/
+       * @license http://www.gnu.org/licenses/gpl.html GNU General Public 
License
+       * @package todo
+       * @subpackage hooks
+       * @version $Id$
+       * @internal $Source$
+       */

        {
                $file = array

====================================================
Index: todo/inc/hook_manual.inc.php
diff -u todo/inc/hook_manual.inc.php:1.4 todo/inc/hook_manual.inc.php:1.5
--- todo/inc/hook_manual.inc.php:1.4    Mon May 14 00:18:12 2001
+++ todo/inc/hook_manual.inc.php        Tue May 10 15:48:57 2005
@@ -1,22 +1,20 @@
 <?php
-  /**************************************************************************\
-  * phpGroupWare - Calendar Holidays                                         *
-  * http://www.phpgroupware.org                                              *
-  * Written by Mark Peters <address@hidden>                        *
-  * --------------------------------------------                             *
-  *  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$ */
+       /**
+       * Todo - manual
+       *
+       * @author Mark Peters <address@hidden>
+       * @copyright Copyright (C) 2001,2005 Free Software Foundation, Inc. 
http://www.fsf.org/
+       * @license http://www.gnu.org/licenses/gpl.html GNU General Public 
License
+       * @package todo
+       * @subpackage hooks
+       * @version $Id$
+       */

 // Only Modify the $file variable.....
        $file = Array(
                'Add Task'      => 'add.php',
                'Options'       => 'other.php'
        );
-//Do not modify below this line
+// Do not modify below this line
        display_manual_section($appname,$file);
 ?>






reply via email to

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