[Phplib-commit] CVS: php-lib-stable/php table.inc,1.4,1.5
Brought to you by:
nhruby,
richardarcher
|
From: Richard A. <ric...@us...> - 2002-04-28 19:40:06
|
Update of /cvsroot/phplib/php-lib-stable/php
In directory usw-pr-cvs1:/tmp/cvs-serv19284
Modified Files:
table.inc
Log Message:
Add option to pass full row data to table_row_open. Default is to pass column names, as was the behaviour prior to this change.
Delete trailing whitespace
Index: table.inc
===================================================================
RCS file: /cvsroot/phplib/php-lib-stable/php/table.inc,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** table.inc 25 Apr 2002 04:55:34 -0000 1.4
--- table.inc 28 Apr 2002 08:13:58 -0000 1.5
***************
*** 8,27 ****
*
* $Id$
! *
* History: 990617: Modularized entire table class. Modularity breaks larger
! * objects into smaller, autonomous objects in order to
! * exercise OOP requirements of code reuse. This give
! * programmers the ability to use the high-level code, or
* get down and dirty with the low-level code.
! * Everything I have changed should maintain backwards
* compatibility, except for show_table_heading_row_result(),
[...1061 lines suppressed...]
--- 970,975 ----
# Function : table_row_add_extra
#--------------------------------------------------------------------------
! # Purpose : Virtual function for derived classes. This function is called
! # after all cells have been created. It allows the programmer to
# add additional HTML code to the row before it is closed.
# Arguments: $row
***************
*** 958,962 ****
# $data
# $class - [optional] Used for CSS control.
! # Returns :
# Comments :
# History :
--- 977,981 ----
# $data
# $class - [optional] Used for CSS control.
! # Returns :
# Comments :
# History :
|