phpgroupware-cvs
[Top][All Lists]
Advanced

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

[Phpgroupware-cvs] addressbook/inc class.uicatalog_contact_comm_descr.in


From: powerstat
Subject: [Phpgroupware-cvs] addressbook/inc class.uicatalog_contact_comm_descr.inc.php, 1.3 class.uicatalog_contact_addr_type.inc.php, 1.3 class.uifields.inc.php, 1.13 class.uiXport.inc.php, 1.21 class.uicatalog_contact_note_type.inc.php, 1.3 class.uicategorize_contacts.inc.php, 1.3 class.uivcard.inc.php, 1.12 class.uicatalog_contact_comm_type.inc.php, 1.3 class.uiaddressbook_prefs.inc.php, 1.3 class.widget_lists.inc.php, 1.3 class.uiaddressbook.inc.php, 1.58
Date: Tue, 10 May 2005 16:25:00 +0200

Update of addressbook/inc

Modified Files:
     Branch: MAIN
            class.uicatalog_contact_comm_descr.inc.php lines: +17 -0
            class.uicatalog_contact_addr_type.inc.php lines: +19 -0
            class.uifields.inc.php lines: +17 -14
            class.uiXport.inc.php lines: +16 -13
            class.uicatalog_contact_note_type.inc.php lines: +17 -0
            class.uicategorize_contacts.inc.php lines: +17 -18
            class.uivcard.inc.php lines: +17 -14
            class.uicatalog_contact_comm_type.inc.php lines: +18 -0
            class.uiaddressbook_prefs.inc.php lines: +15 -20
            class.widget_lists.inc.php lines: +17 -17
            class.uiaddressbook.inc.php lines: +18 -16

Log Message:
Added phpdocs

====================================================
Index: addressbook/inc/class.uicatalog_contact_comm_descr.inc.php
diff -u addressbook/inc/class.uicatalog_contact_comm_descr.inc.php:1.2 
addressbook/inc/class.uicatalog_contact_comm_descr.inc.php:1.3
--- addressbook/inc/class.uicatalog_contact_comm_descr.inc.php:1.2      Fri Dec 
31 04:55:24 2004
+++ addressbook/inc/class.uicatalog_contact_comm_descr.inc.php  Tue May 10 
14:25:03 2005
@@ -1,6 +1,23 @@
 <?php
+       /**
+       * Addressbook - user interface
+       *
+       * @copyright Copyright (C) 2003-2005 Free Software Foundation, Inc. 
http://www.fsf.org/
+       * @license http://www.gnu.org/licenses/gpl.html GNU General Public 
License
+       * @package addressbook
+       * @version $Id$
+       */
+
+       /**
+       * Include catalog manager
+       */
        include('class.catalog_manager.inc.php');

+       /**
+       * user interface
+       *
+       * @package addressbook
+       */
        class uicatalog_contact_comm_descr extends catalog_manager
        {
                var $public_functions = array('view' => True);

====================================================
Index: addressbook/inc/class.uicatalog_contact_addr_type.inc.php
diff -u addressbook/inc/class.uicatalog_contact_addr_type.inc.php:1.2 
addressbook/inc/class.uicatalog_contact_addr_type.inc.php:1.3
--- addressbook/inc/class.uicatalog_contact_addr_type.inc.php:1.2       Fri Dec 
31 04:55:24 2004
+++ addressbook/inc/class.uicatalog_contact_addr_type.inc.php   Tue May 10 
14:25:03 2005
@@ -1,6 +1,25 @@
 <?php
+       /**
+       * Addressbook - user interface
+       *
+       * @copyright Copyright (C) 2003-2005 Free Software Foundation, Inc. 
http://www.fsf.org/
+       * @license http://www.gnu.org/licenses/gpl.html GNU General Public 
License
+       * @package addressbook
+       * @version $Id$
+       */
+
+
+       /**
+       * Include catalog manager
+       */
        include('class.catalog_manager.inc.php');

+
+       /**
+       * user interface
+       *
+       * @package addressbook
+       */
        class uicatalog_contact_addr_type extends catalog_manager
        {
                var $public_functions = array('view' => True);

====================================================
Index: addressbook/inc/class.uifields.inc.php
diff -u addressbook/inc/class.uifields.inc.php:1.12 
addressbook/inc/class.uifields.inc.php:1.13
--- addressbook/inc/class.uifields.inc.php:1.12 Fri Dec 31 04:55:24 2004
+++ addressbook/inc/class.uifields.inc.php      Tue May 10 14:25:03 2005
@@ -1,18 +1,21 @@
 <?php
-  /**************************************************************************\
-  * phpGroupWare - Addressbook                                               *
-  * http://www.phpgroupware.org                                              *
-  * Written by Joseph Engo <address@hidden> and                      *
-  * Miles Lott <miloschphpgroupware.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$ */
-
+       /**
+       * Addressbook - user interface
+       *
+       * @author Joseph Engo <address@hidden>
+       * @author Miles Lott <miloschphpgroupware.org>
+       * @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 addressbook
+       * @version $Id$
+       */
+
+
+       /**
+       * user interface
+       *
+       * @package addressbook
+       */
        class uifields
        {
                var $public_functions = array(

====================================================
Index: addressbook/inc/class.uiXport.inc.php
diff -u addressbook/inc/class.uiXport.inc.php:1.20 
addressbook/inc/class.uiXport.inc.php:1.21
--- addressbook/inc/class.uiXport.inc.php:1.20  Fri Dec 31 04:55:22 2004
+++ addressbook/inc/class.uiXport.inc.php       Tue May 10 14:25:03 2005
@@ -1,17 +1,20 @@
 <?php
-  /**************************************************************************\
-  * phpGroupWare - addressbook                                               *
-  * 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$ */
-
+       /**
+       * Addressbook - user interface
+       *
+       * @author Joseph Engo <address@hidden>
+       * @copyright Copyright (C) 2003-2005 Free Software Foundation, Inc. 
http://www.fsf.org/
+       * @license http://www.gnu.org/licenses/gpl.html GNU General Public 
License
+       * @package addressbook
+       * @version $Id$
+       */
+
+
+       /**
+       * user interface
+       *
+       * @package addressbook
+       */
        class uiXport
        {
                var $template;

====================================================
Index: addressbook/inc/class.uicatalog_contact_note_type.inc.php
diff -u addressbook/inc/class.uicatalog_contact_note_type.inc.php:1.2 
addressbook/inc/class.uicatalog_contact_note_type.inc.php:1.3
--- addressbook/inc/class.uicatalog_contact_note_type.inc.php:1.2       Fri Dec 
31 04:55:24 2004
+++ addressbook/inc/class.uicatalog_contact_note_type.inc.php   Tue May 10 
14:25:03 2005
@@ -1,6 +1,23 @@
 <?php
+       /**
+       * Addressbook - user interface
+       *
+       * @copyright Copyright (C) 2003-2005 Free Software Foundation, Inc. 
http://www.fsf.org/
+       * @license http://www.gnu.org/licenses/gpl.html GNU General Public 
License
+       * @package addressbook
+       * @version $Id$
+       */
+
+       /**
+       * Include catalog manager
+       */
        include('class.catalog_manager.inc.php');

+       /**
+       * user interface
+       *
+       * @package addressbook
+       */
        class uicatalog_contact_note_type extends catalog_manager
        {
                var $public_functions = array('view' => True);

====================================================
Index: addressbook/inc/class.uicategorize_contacts.inc.php
diff -u addressbook/inc/class.uicategorize_contacts.inc.php:1.2 
addressbook/inc/class.uicategorize_contacts.inc.php:1.3
--- addressbook/inc/class.uicategorize_contacts.inc.php:1.2     Fri Dec 31 
04:55:24 2004
+++ addressbook/inc/class.uicategorize_contacts.inc.php Tue May 10 14:25:03 2005
@@ -1,22 +1,21 @@
 <?php
-  /**************************************************************************\
-  * phpGroupWare - uicategorize_contacts                                     *
-  * http://www.phpgroupware.org                                              *
-  * This program is part of the GNU project, see http://www.gnu.org/         *
-  *                                                                          *
-  * Copyright 2003 Free Software Foundation, Inc.                            *
-  *                                                                          *
-  * Originally Written by Jonathan Alberto Rivera Gomez - jarg at co.com.mx  *
-  * Current Maintained by Jonathan Alberto Rivera Gomez - jarg at co.com.mx  *
-  * --------------------------------------------                             *
-  * Development of this application was funded by http://www.sogrp.com       *
-  * --------------------------------------------                             *
-  *  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.                                              *
-  \**************************************************************************/
-
+       /**
+       * Addressbook - user interface
+       *
+       * @author Jonathan Alberto Rivera Gomez <address@hidden>
+       * @copyright Copyright (C) 2003-2005 Free Software Foundation, Inc. 
http://www.fsf.org/
+       * @license http://www.gnu.org/licenses/gpl.html GNU General Public 
License
+       * @package addressbook
+       * @version $Id$
+       * @internal Development of this application was funded by 
http://www.sogrp.com/
+       */
+
+
+       /**
+       * user interface
+       *
+       * @package addressbook
+       */
        class uicategorize_contacts
        {
                var $public_functions = array(

====================================================
Index: addressbook/inc/class.uivcard.inc.php
diff -u addressbook/inc/class.uivcard.inc.php:1.11 
addressbook/inc/class.uivcard.inc.php:1.12
--- addressbook/inc/class.uivcard.inc.php:1.11  Fri Dec 31 04:55:24 2004
+++ addressbook/inc/class.uivcard.inc.php       Tue May 10 14:25:03 2005
@@ -1,18 +1,21 @@
 <?php
-  /**************************************************************************\
-  * phpGroupWare - Addressbook                                               *
-  * http://www.phpgroupware.org                                              *
-  * Written by Joseph Engo <address@hidden> and                      *
-  * Miles Lott <miloschphpgroupware.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$ */
-
+       /**
+       * Addressbook - user interface
+       *
+       * @author Joseph Engo <address@hidden>
+       * @author Miles Lott <miloschphpgroupware.org>
+       * @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 addressbook
+       * @version $Id$
+       */
+
+
+       /**
+       * user interface
+       *
+       * @package addressbook
+       */
        class uivcard
        {
                var $template;

====================================================
Index: addressbook/inc/class.uicatalog_contact_comm_type.inc.php
diff -u addressbook/inc/class.uicatalog_contact_comm_type.inc.php:1.2 
addressbook/inc/class.uicatalog_contact_comm_type.inc.php:1.3
--- addressbook/inc/class.uicatalog_contact_comm_type.inc.php:1.2       Fri Dec 
31 04:55:24 2004
+++ addressbook/inc/class.uicatalog_contact_comm_type.inc.php   Tue May 10 
14:25:03 2005
@@ -1,6 +1,24 @@
 <?php
+       /**
+       * Addressbook - user interface
+       *
+       * @copyright Copyright (C) 2003-2005 Free Software Foundation, Inc. 
http://www.fsf.org/
+       * @license http://www.gnu.org/licenses/gpl.html GNU General Public 
License
+       * @package addressbook
+       * @version $Id$
+       */
+
+       /**
+       * Include catalog manager
+       */
        include('class.catalog_manager.inc.php');

+
+       /**
+       * user interface
+       *
+       * @package addressbook
+       */
        class uicatalog_contact_comm_type extends catalog_manager
        {
                var $public_functions = array('view' => True);

====================================================
Index: addressbook/inc/class.uiaddressbook_prefs.inc.php
diff -u addressbook/inc/class.uiaddressbook_prefs.inc.php:1.2 
addressbook/inc/class.uiaddressbook_prefs.inc.php:1.3
--- addressbook/inc/class.uiaddressbook_prefs.inc.php:1.2       Fri Dec 31 
04:55:24 2004
+++ addressbook/inc/class.uiaddressbook_prefs.inc.php   Tue May 10 14:25:03 2005
@@ -1,24 +1,19 @@
 <?php
-  /**************************************************************************\
-  * phpGroupWare API - Commononly used functions                             *
-  * This file written by Alex Borges <address@hidden>                        *
-  * UI for addressbook preferences                                           *
-  * Copyright (C) 2003 Free Software Foundation                              *
-  * -------------------------------------------------------------------------*
-  * This library is part of the phpGroupWare Addressbook app                 *
-  * http://www.phpgroupware.org/                                             *
-  * ------------------------------------------------------------------------ *
-  * This library 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.                                            *
-  * This library 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 Lesser General Public License for more details.              *
-  * You should have received a copy of the GNU  General Public License       *
-  * along with this library; if not, write to the Free Software Foundation,  *
-  * Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA            *
-  \**************************************************************************/
+       /**
+       * Addressbook - UI for addressbook preferences
+       *
+       * @author Alex Borges <address@hidden>
+       * @copyright Copyright (C) 2003-2005 Free Software Foundation, Inc. 
http://www.fsf.org/
+       * @license http://www.gnu.org/licenses/gpl.html GNU General Public 
License
+       * @package addressbook
+       * @version $Id$
+       */
+
+       /**
+       * UI for addressbook preferences
+       *
+       * @package addressbook
+       */
 class uiaddressbook_prefs
 {
        var $prefs;

====================================================
Index: addressbook/inc/class.widget_lists.inc.php
diff -u addressbook/inc/class.widget_lists.inc.php:1.2 
addressbook/inc/class.widget_lists.inc.php:1.3
--- addressbook/inc/class.widget_lists.inc.php:1.2      Fri Dec 31 04:55:24 2004
+++ addressbook/inc/class.widget_lists.inc.php  Tue May 10 14:25:03 2005
@@ -1,21 +1,21 @@
 <?php
-  /**************************************************************************\
-  * phpGroupWare - widget_lists                                                
     *
-  * http://www.phpgroupware.org                                              *
-  * This program is part of the GNU project, see http://www.gnu.org/         *
-  *                                                                          *
-  * Copyright 2003 Free Software Foundation, Inc.                            *
-  *                                                                          *
-  * Originally Written by Jonathan Alberto Rivera Gomez - jarg at co.com.mx  *
-  * Current Maintained by Jonathan Alberto Rivera Gomez - jarg at co.com.mx  *
-  * --------------------------------------------                             *
-  * Development of this application was funded by http://www.sogrp.com       *
-  * --------------------------------------------                             *
-  *  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.                                              *
-  \**************************************************************************/
+       /**
+       * Addressbook - user interface
+       *
+       * @author Jonathan Alberto Rivera Gomez - <address@hidden>
+       * @copyright Copyright (C) 2003-2005 Free Software Foundation, Inc. 
http://www.fsf.org/
+       * @license http://www.gnu.org/licenses/gpl.html GNU General Public 
License
+       * @package addressbook
+       * @version $Id$
+       * @internal Development of this application was funded by 
http://www.sogrp.com/
+       */
+
+
+       /**
+       * user interface
+       *
+       * @package addressbook
+       */
        class widget_lists
        {
                var $title;

====================================================
Index: addressbook/inc/class.uiaddressbook.inc.php
diff -u addressbook/inc/class.uiaddressbook.inc.php:1.57 
addressbook/inc/class.uiaddressbook.inc.php:1.58
--- addressbook/inc/class.uiaddressbook.inc.php:1.57    Wed May  4 06:48:38 2005
+++ addressbook/inc/class.uiaddressbook.inc.php Tue May 10 14:25:03 2005
@@ -1,20 +1,22 @@
 <?php
-  /**************************************************************************\
-  * phpGroupWare - Addressbook                                               *
-  * http://www.phpgroupware.org                                              *
-  * Originally Written by Joseph Engo <address@hidden> and           *
-  * Miles Lott <miloschphpgroupware.org>                                     *
-  * Heavy changes (near rewrite) by Jonathan Alberto Rivera <jarg AT 
co.com.mx> *
-  * --------------------------------------------                             *
-  *  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$ */
-
-
+       /**
+       * Addressbook - user interface
+       *
+       * @author Joseph Engo <address@hidden>
+       * @author Miles Lott <address@hidden>
+       * @author Jonathan Alberto Rivera <jarg@ co.com.mx>
+       * @copyright Copyright (C) 2003-2005 Free Software Foundation, Inc. 
http://www.fsf.org/
+       * @license http://www.gnu.org/licenses/gpl.html GNU General Public 
License
+       * @package addressbook
+       * @version $Id$
+       */
+
+
+       /**
+       * user interface
+       *
+       * @package addressbook
+       */
        class uiaddressbook
        {
                var $template;






reply via email to

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