[phpwebapp-commits] CVS: web_app/webobjects/tabs tabs3_items.php,1.2,1.3 tabs3.php,1.2,1.3 tabs2_ite
Brought to you by:
dashohoxha
From: Dashamir H. <das...@us...> - 2003-08-11 16:32:45
|
Update of /cvsroot/phpwebapp/web_app/webobjects/tabs In directory sc8-pr-cvs1:/tmp/cvs-serv29261/webobjects/tabs Modified Files: tabs3_items.php tabs3.php tabs2_items.php tabs2.php tabs1_items.php tabs1.php Log Message: * added some comments (that are handled by phpDocumentor) for dividing the code into packages and subpackages * replaced .gif images by .png images Index: tabs3_items.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/webobjects/tabs/tabs3_items.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** tabs3_items.php 16 Jul 2003 09:27:59 -0000 1.2 --- tabs3_items.php 11 Aug 2003 16:17:50 -0000 1.3 *************** *** 2,5 **** --- 2,8 ---- /** * The $menu_items array contains the items of the tabs3. + * + * @package webobjects + * @subpackage tabs */ $menu_items = array( Index: tabs3.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/webobjects/tabs/tabs3.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** tabs3.php 16 Jul 2003 09:27:59 -0000 1.2 --- tabs3.php 11 Aug 2003 16:17:50 -0000 1.3 *************** *** 1,3 **** --- 1,7 ---- <?php + /** + * @package webobjects + * @subpackage tabs + */ class tabs3 extends WebObject { Index: tabs2_items.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/webobjects/tabs/tabs2_items.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** tabs2_items.php 16 Jul 2003 09:27:59 -0000 1.2 --- tabs2_items.php 11 Aug 2003 16:17:50 -0000 1.3 *************** *** 2,5 **** --- 2,8 ---- /** * The $menu_items array contains the items of the tabs2. + * + * @package webobjects + * @subpackage tabs */ $menu_items = array( Index: tabs2.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/webobjects/tabs/tabs2.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** tabs2.php 16 Jul 2003 09:27:59 -0000 1.2 --- tabs2.php 11 Aug 2003 16:17:50 -0000 1.3 *************** *** 1,3 **** --- 1,7 ---- <?php + /** + * @package webobjects + * @subpackage tabs + */ class tabs2 extends WebObject { Index: tabs1_items.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/webobjects/tabs/tabs1_items.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** tabs1_items.php 16 Jul 2003 09:27:59 -0000 1.2 --- tabs1_items.php 11 Aug 2003 16:17:50 -0000 1.3 *************** *** 1,5 **** <?php /** ! * The $menu_items array contains the items of the tabs1. */ $menu_items = array( --- 1,8 ---- <?php /** ! * The $menu_items array contains the items of the tabs1. ! * ! * @package webobjects ! * @subpackage tabs */ $menu_items = array( Index: tabs1.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/webobjects/tabs/tabs1.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** tabs1.php 16 Jul 2003 09:27:59 -0000 1.2 --- tabs1.php 11 Aug 2003 16:17:50 -0000 1.3 *************** *** 1,3 **** --- 1,7 ---- <?php + /** + * @package webobjects + * @subpackage tabs + */ class tabs1 extends WebObject { |