/[cvs]/nfo/php/libs/com.newsblob.phphtmllib/doc/phpHtmlLib/_widgets_data_list_DataList_inc.html
ViewVC logotype

Diff of /nfo/php/libs/com.newsblob.phphtmllib/doc/phpHtmlLib/_widgets_data_list_DataList_inc.html

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1 by jonen, Thu Jan 30 03:29:39 2003 UTC revision 1.2 by jonen, Sat Feb 22 20:56:40 2003 UTC
# Line 1  Line 1 
1  <!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.0 Frameset//EN''http://www.w3.org/TR/REC-html40/frameset.dtd'>  <!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.0 Transitional//EN' 'http://www.w3.org/TR/REC-html40/loose.dtd'>
2  <!--NewPage-->  <!--NewPage-->
3  <HTML>  <HTML>
4  <HEAD>  <HEAD>
5          <!-- Generated by PhpDoc date: 'Mon, 25 Nov 2002 09:21:29 -0800' -->          <!-- Generated by PhpDoc date: 'Thu, 20 Feb 2003 16:22:34 -0800' -->
6          <TITLE>Docs for page DataList.inc</TITLE>          <TITLE>Docs for page DataList.inc</TITLE>
7  <LINK REL ='stylesheet' TYPE='text/css' HREF='stylesheet.css' TITLE='Style'>  <LINK REL ='stylesheet' TYPE='text/css' HREF='../media/stylesheet.css' TITLE='Style'>
8  </HEAD>  </HEAD>
9  <BODY style="background-color: #eeeeee; font-family: arial; font-size: .9em;">  <BODY style="background-color: #eeeeee; font-family: arial; font-size: .9em;">
       
   
10  <!-- Links -->  <!-- Links -->
11  <a NAME="top"></A>  <a NAME="top"></A>
12  <table WIDTH="100%" class="links">  <table WIDTH="100%" class="links">
# Line 17  Line 15 
15        Links:        Links:
16        <A HREF="#classes_summary" class="links" title="Classes created in this file">Classes</A>        <A HREF="#classes_summary" class="links" title="Classes created in this file">Classes</A>
17        <A HREF="#includes_summary" class="links" title="Include Statements Summary">Includes</A>        <A HREF="#includes_summary" class="links" title="Include Statements Summary">Includes</A>
18        <A HREF="#globals_summary" class="links" title="Global Variable Summary">Globals</A>        <A HREF="#global_summary" class="links" title="Global Variable Summary">Globals</A>
19        <A HREF="#constant_summary" class="links" title="Constant Summary">Constants</A>        <A HREF="#constant_summary" class="links" title="Constant Summary">Constants</A>
20        <A HREF="#functions_summary" class="links" title="Function Summary">Functions</A>        <A HREF="#function_summary" class="links" title="Function Summary">Functions</A>
21        <A HREF="#includes_detail" class="links" title="Include Statements Detail">Includes Detail</A>        <A HREF="#includes_detail" class="links" title="Include Statements Detail">Includes Detail</A>
22        <A HREF="#global_detail" class="links" title="Global Variable Detail">Globals Detail</A>        <A HREF="#global_detail" class="links" title="Global Variable Detail">Globals Detail</A>
23        <A HREF="#constant_detail" class="links" title="Constant Detail">Constants Detail</A>        <A HREF="#constant_detail" class="links" title="Constant Detail">Constants Detail</A>
# Line 28  Line 26 
26   </TR>   </TR>
27  </TABLE>  </TABLE>
28  <BR>  <BR>
   
29  <h2>File: Program_Root/widgets/data_list/DataList.inc</h2>  <h2>File: Program_Root/widgets/data_list/DataList.inc</h2>
30  <!-- ========== Info from phpDoc block ========= -->  This is the base class for managing a list  of data points.
31    <br />
 <BR>  
   
32    
33  <UL>  <UL>
34                            <LI><b>author</b> - <CODE>Walter A. Boring IV &lt;<a href="mailto:waboring@buildabetterweb.com">mailto:waboring@buildabetterweb.com</a>&gt;</CODE></LI>
35          <LI><b>Package</b> - <CODE>phpHtmlLib</CODE></LI>          </UL>
           
 </UL>  
   
 <br>  
36  <!-- =========== Used Classes =========== -->  <!-- =========== Used Classes =========== -->
37  <A NAME='classes_summary'><!-- --></A>  <A NAME='classes_summary'><!-- --></A>
38  <TABLE CELLPADDING='3' CELLSPACING='0' WIDTH='100%' CLASS="bordernobottom">  <TABLE CELLPADDING='3' CELLSPACING='0' WIDTH='100%' Class="bordernobottom">
39          <TR CLASS='TableHeadingColor'>          <TR BGCOLOR='#CCCCFF' CLASS='TableHeadingColor'>
40                  <TD>                  <TD>
41                          <span class="font12bold">Classes defined in this file</span>                          <span class="font12bold">Classes defined in this file</span>
42              <A HREF="#top" CLASS="links">^TOP</A>              <A HREF="#top" CLASS="links">^TOP</A>
# Line 57  Line 48 
48                  <TR><TD STYLE="width:20%"><h4>CLASS NAME</h4></TD><TD STYLE="width: 80%"><h4>DESCRIPTION</h4></TD></TR>                  <TR><TD STYLE="width:20%"><h4>CLASS NAME</h4></TD><TD STYLE="width: 80%"><h4>DESCRIPTION</h4></TD></TR>
49          </THEAD>          </THEAD>
50          <TBODY>          <TBODY>
51                                                    <TR BGCOLOR='white' CLASS='TableRowColor'>
                 <TR BGCOLOR='white' CLASS='TableRowColor'>  
52                          <TD><a href="../phpHtmlLib/DataList.html">DataList</a></TD>                          <TD><a href="../phpHtmlLib/DataList.html">DataList</a></TD>
53                          <TD>used to build a widget that shows lists of                          <TD>This object is the base class that can be</TD>
 data from any source via the DataListSource  
 object.  It fetches/builds/gets its data  
 from the DataListSource object, which can  
 be written to support any data source  
 (MySQL, Oracle, comma delimited file, xml, etc.)  
   
 This base class MUST be extended by a child to  
 actually render the list.  The job of the DataList  
 class is to provide the basic API and abstraction  
 mechanism to handling searching, showing, sorting  
 lists of data.  
   
 Each column of data is associated with a title and a  
 name.  The title is what is shown to the user for that  
 column.  The name is the mapping between the column and  
 the DataListSource.  Each column can be marked  
 as sortable and searchable.  If a column is sortable,  
 the title is a link that can be clicked on to sort.  
 The sorting is done in the DataListSource object (  
 via the sql query, or sort() functions depending on the  
 data source itself)  
   
 The DataList object will build the title, the search block  
 (if any), the datalist controls (the links/imges for  
 first, prev, next, last, all).  Then the data columns/labels.  
 Then it will fetch each of the rows of data to display  
 from the DataListSource.  
   
 The logic of the output calls follows in the order:  
   
 title  
 search table/block  
 datalist controls (first, prev, next, last, all)  
 data columns/labels  
 data rows x through y  
   
   
 REQUIREMENTS:  
  You must use/define a DataListSource object.  
  You MUST override/extend the following methods:  
   
  * get_data_source() - used to set the DataListSource  
                         by this class.  
  * user_setup() - used to set the columns to show and any  
                   options used by the DataList class and  
                   DataListSource object.  
   
   
  UI ABSTRACTION METHODS  
  These methods allow for some level of abstraction for  
  the layout/look/feel of the actual list of data.  
   
   
  * gui_init() - the function gives the child class a chance  
                 to do any building of the objects that will  
                 hold the search area, column headers and the  
                 rows of data.  
   
  * child_build_column_header() - This method is responsible  
                                  for building and inserting  
                                  the column header title into  
                                  the UI object.  
   
  * child_add_row_cell() - This function is responsible for adding  
                           the cell in the current row.  The method  
                           is responsible for keeping track of the  
                           location in its UI object for the current  
                           row.  
   
  * child_get_gui() - This method returns the entire UI in 1 object  
                      or container.  At this point the entire UI  
                      has been constructed, the entire list of data  
                      has been walked and inserted.</TD>  
54                  </TR>                  </TR>
55                                            </TBODY>
         </TBODY>  
56  </TABLE>  </TABLE>
57  <br>  <br>
 <br>  
58  <!-- =========== Includes SUMMARY =========== -->  <!-- =========== Includes SUMMARY =========== -->
59  <A NAME='includes_summary'><!-- --></A>  <A NAME='includes_summary'><!-- --></A>
60  <TABLE CELLPADDING='3' CELLSPACING='0' WIDTH='100%' CLASS="bordernobottom">  <TABLE CELLPADDING='3' CELLSPACING='0' WIDTH='100%' CLASS="bordernobottom">
# Line 155  REQUIREMENTS: Line 70  REQUIREMENTS:
70                  <TR><TH>INCLUDE TYPE</TH><TH>INCLUDED FILENAME</TH><TH>DESCRIPTION</TH></TR>                  <TR><TH>INCLUDE TYPE</TH><TH>INCLUDED FILENAME</TH><TH>DESCRIPTION</TH></TR>
71          </THEAD>          </THEAD>
72          <TBODY>          <TBODY>
73                                            </TBODY>
         </TBODY>  
74  </TABLE>  </TABLE>
75  <br>  <br>
   
76  <br>  <br>
77  <!-- =========== CONSTANT SUMMARY =========== -->  <!-- =========== GLOBAL VARIABLE SUMMARY =========== -->
78  <A NAME='global_summary'><!-- --></A>  <A NAME='global_summary'><!-- --></A>
79  <TABLE CELLPADDING='3' CELLSPACING='0' WIDTH='100%' CLASS="bordernobottom">  <TABLE CELLPADDING='3' CELLSPACING='0' WIDTH='100%' CLASS="bordernobottom">
80          <TR BGCOLOR='#CCCCFF' CLASS='TableHeadingColor'>          <TR BGCOLOR='#CCCCFF' CLASS='TableHeadingColor'>
81                  <TD>                  <TD>
82                          <FONT SIZE='+2'><B>Global Variable Summary</B></FONT>                          <span CLASS="font12bold">Global Variable Summary</span>
83              <A HREF="#top" CLASS="links">^TOP</A>              <A HREF="#top" CLASS="links">^TOP</A>
84                  </TD>                  </TD>
85          </TR>          </TR>
# Line 176  REQUIREMENTS: Line 89  REQUIREMENTS:
89                  <TR><TH>VARIABLE NAME</TH><TH>VARIABLE VALUE</TH><TH>DESCRIPTION</TH></TR>                  <TR><TH>VARIABLE NAME</TH><TH>VARIABLE VALUE</TH><TH>DESCRIPTION</TH></TR>
90          </THEAD>          </THEAD>
91          <TBODY>          <TBODY>
92                                            </TBODY>
         </TBODY>  
93  </TABLE>  </TABLE>
94  <br>  <br>
   
   
95  <br>  <br>
96  <!-- =========== CONSTANT SUMMARY =========== -->  <!-- =========== CONSTANT SUMMARY =========== -->
97  <A NAME='constant_summary'><!-- --></A>  <A NAME='constant_summary'><!-- --></A>
98  <TABLE CELLPADDING='3' CELLSPACING='0' WIDTH='100%' CLASS="bordernobottom">  <TABLE CELLPADDING='3' CELLSPACING='0' WIDTH='100%' Class="bordernobottom">
99          <TR CLASS='TableHeadingColor'>          <TR BGCOLOR='#CCCCFF' CLASS='TableHeadingColor'>
100                  <TD>                  <TD>
101                          <span CLASS="font12bold">Constant Summary</span>                          <span class="font12bold">Constant Summary</span>
102              <A HREF="#top" CLASS="links">^TOP</A>              <A HREF="#top" CLASS="links">^TOP</A>
103                  </TD>                  </TD>
104          </TR>          </TR>
# Line 198  REQUIREMENTS: Line 108  REQUIREMENTS:
108                  <TR><TH>CONSTANT NAME</TH><TH>CONSTANT VALUE</TH><TH>DESCRIPTION</TH></TR>                  <TR><TH>CONSTANT NAME</TH><TH>CONSTANT VALUE</TH><TH>DESCRIPTION</TH></TR>
109          </THEAD>          </THEAD>
110          <TBODY>          <TBODY>
111                                                    <TR BGCOLOR='white' CLASS='TableRowColor'>
112                  <TR BGCOLOR='white' CLASS='TableRowColor'>                          <TD><A HREF="../phpHtmlLib/_widgets_data_list_DataList_inc.html#defineNOT_SEARCHABLE">NOT_SEARCHABLE</A></TD>
                         <TD><A HREF='_widgets_data_list_DataList_inc.html#NOT_SEARCHABLE'>NOT_SEARCHABLE</A></TD>  
113                          <TD>FALSE</TD>                          <TD>FALSE</TD>
114                          <TD></TD>                          <TD></TD>
115                  </TR>                  </TR>
116                                                    <TR BGCOLOR='white' CLASS='TableRowColor'>
117                  <TR BGCOLOR='white' CLASS='TableRowColor'>                          <TD><A HREF="../phpHtmlLib/_widgets_data_list_DataList_inc.html#defineNOT_SORTABLE">NOT_SORTABLE</A></TD>
                         <TD><A HREF='_widgets_data_list_DataList_inc.html#NOT_SORTABLE'>NOT_SORTABLE</A></TD>  
118                          <TD>FALSE</TD>                          <TD>FALSE</TD>
119                          <TD></TD>                          <TD></TD>
120                  </TR>                  </TR>
121                                                    <TR BGCOLOR='white' CLASS='TableRowColor'>
122                  <TR BGCOLOR='white' CLASS='TableRowColor'>                          <TD><A HREF="../phpHtmlLib/_widgets_data_list_DataList_inc.html#defineSEARCHABLE">SEARCHABLE</A></TD>
                         <TD><A HREF='_widgets_data_list_DataList_inc.html#SEARCHABLE'>SEARCHABLE</A></TD>  
123                          <TD>TRUE</TD>                          <TD>TRUE</TD>
124                          <TD></TD>                          <TD></TD>
125                  </TR>                  </TR>
126                                                    <TR BGCOLOR='white' CLASS='TableRowColor'>
127                  <TR BGCOLOR='white' CLASS='TableRowColor'>                          <TD><A HREF="../phpHtmlLib/_widgets_data_list_DataList_inc.html#defineSEARCH_ALL">SEARCH_ALL</A></TD>
                         <TD><A HREF='_widgets_data_list_DataList_inc.html#SEARCH_ALL'>SEARCH_ALL</A></TD>  
128                          <TD>15</TD>                          <TD>15</TD>
129                          <TD></TD>                          <TD></TD>
130                  </TR>                  </TR>
131                                                    <TR BGCOLOR='white' CLASS='TableRowColor'>
132                  <TR BGCOLOR='white' CLASS='TableRowColor'>                          <TD><A HREF="../phpHtmlLib/_widgets_data_list_DataList_inc.html#defineSEARCH_BEGINS_WITH">SEARCH_BEGINS_WITH</A></TD>
                         <TD><A HREF='_widgets_data_list_DataList_inc.html#SEARCH_BEGINS_WITH'>SEARCH_BEGINS_WITH</A></TD>  
133                          <TD>1</TD>                          <TD>1</TD>
134                          <TD></TD>                          <TD></TD>
135                  </TR>                  </TR>
136                                                    <TR BGCOLOR='white' CLASS='TableRowColor'>
137                  <TR BGCOLOR='white' CLASS='TableRowColor'>                          <TD><A HREF="../phpHtmlLib/_widgets_data_list_DataList_inc.html#defineSEARCH_CONTAINS">SEARCH_CONTAINS</A></TD>
                         <TD><A HREF='_widgets_data_list_DataList_inc.html#SEARCH_CONTAINS'>SEARCH_CONTAINS</A></TD>  
138                          <TD>2</TD>                          <TD>2</TD>
139                          <TD></TD>                          <TD></TD>
140                  </TR>                  </TR>
141                                                    <TR BGCOLOR='white' CLASS='TableRowColor'>
142                  <TR BGCOLOR='white' CLASS='TableRowColor'>                          <TD><A HREF="../phpHtmlLib/_widgets_data_list_DataList_inc.html#defineSEARCH_ENDS_WITH">SEARCH_ENDS_WITH</A></TD>
                         <TD><A HREF='_widgets_data_list_DataList_inc.html#SEARCH_ENDS_WITH'>SEARCH_ENDS_WITH</A></TD>  
143                          <TD>8</TD>                          <TD>8</TD>
144                          <TD></TD>                          <TD></TD>
145                  </TR>                  </TR>
146                                                    <TR BGCOLOR='white' CLASS='TableRowColor'>
147                  <TR BGCOLOR='white' CLASS='TableRowColor'>                          <TD><A HREF="../phpHtmlLib/_widgets_data_list_DataList_inc.html#defineSEARCH_EXACT">SEARCH_EXACT</A></TD>
                         <TD><A HREF='_widgets_data_list_DataList_inc.html#SEARCH_EXACT'>SEARCH_EXACT</A></TD>  
148                          <TD>4</TD>                          <TD>4</TD>
149                          <TD></TD>                          <TD></TD>
150                  </TR>                  </TR>
151                                                    <TR BGCOLOR='white' CLASS='TableRowColor'>
152                  <TR BGCOLOR='white' CLASS='TableRowColor'>                          <TD><A HREF="../phpHtmlLib/_widgets_data_list_DataList_inc.html#defineSORTABLE">SORTABLE</A></TD>
                         <TD><A HREF='_widgets_data_list_DataList_inc.html#SORTABLE'>SORTABLE</A></TD>  
153                          <TD>TRUE</TD>                          <TD>TRUE</TD>
154                          <TD>This is the base class for managing a list                          <TD>Some global defines used</TD>
 of data points.</TD>  
155                  </TR>                  </TR>
156                                            </TBODY>
         </TBODY>  
157  </TABLE>  </TABLE>
158  <br>  <br>
   
159  <br>  <br>
160  <!-- =========== Function SUMMARY =========== -->  <!-- =========== FUNCTION SUMMARY =========== -->
161  <A NAME='Function_summary'><!-- --></A>  <A NAME='function_summary'><!-- --></A>
162  <TABLE CELLPADDING='3' CELLSPACING='0' WIDTH='100%' Class="border">  <TABLE CELLPADDING='3' CELLSPACING='0' WIDTH='100%' Class="bordernobottom">
163          <TR BGCOLOR='#CCCCFF' CLASS='TableHeadingColor'>          <TR BGCOLOR='#CCCCFF' CLASS='TableHeadingColor'>
164                  <TD>                  <TD>
165                          <span class="font12bold">Function Summary</span>                          <span class="font12bold">Function Summary</span>
# Line 269  of data points.</TD> Line 167  of data points.</TD>
167                  </TD>                  </TD>
168          </TR>          </TR>
169    
170                    </TABLE>
 </TABLE>  
   
171  <br>  <br>
172  <!-- ============ Includes DETAIL =========== -->  <!-- ============ Includes DETAIL =========== -->
173    
# Line 285  of data points.</TD> Line 181  of data points.</TD>
181          </TR>          </TR>
182  </TABLE>  </TABLE>
183    
   
   
184  <br>  <br>
185  <!-- ============ GLOBALS DETAIL =========== -->  <!-- ============ GLOBALS DETAIL =========== -->
186    
187  <A NAME='global_detail'></A>  <A NAME='global_detail'></A>
188  <TABLE CELLPADDING='3' CELLSPACING='0' WIDTH='100%' CLASS="border">  <TABLE CELLPADDING='3' CELLSPACING='0' WIDTH='100%' CLASS="bordernobottom">
189          <TR BGCOLOR='#CCCCFF' CLASS='TableHeadingColor'>          <TR BGCOLOR='#CCCCFF' CLASS='TableHeadingColor'>
190                  <TD>                  <TD>
191                          <span CLASS="font12bold">Global Variable Detail</span>                          <span CLASS="font12bold">Global Variable Detail</span>
# Line 300  of data points.</TD> Line 194  of data points.</TD>
194          </TR>          </TR>
195  </TABLE>  </TABLE>
196    
   
   
197  <br>  <br>
198  <!-- ============ CONSTANT DETAIL =========== -->  <!-- ============ CONSTANT DETAIL =========== -->
199    
200  <A NAME='constant_detail'></A>  <A NAME='constant_detail'></A>
201  <TABLE CELLPADDING='3' CELLSPACING='0' WIDTH='100%' CLASS="border">  <TABLE CELLPADDING='3' CELLSPACING='0' WIDTH='100%' CLASS="bordernobottom">
202          <TR CLASS='TableHeadingColor'>          <TR BGCOLOR='#CCCCFF' CLASS='TableHeadingColor'>
203                  <TD>                  <TD>
204                          <span CLASS="font12bold">Constant Detail</span>                          <span CLASS="font12bold">Constant Detail</span>
205              <A HREF="#top" CLASS="links">^TOP</A>              <A HREF="#top" CLASS="links">^TOP</A>
# Line 315  of data points.</TD> Line 207  of data points.</TD>
207          </TR>          </TR>
208  </TABLE>  </TABLE>
209    
   
210  <DIV CLASS="function">  <DIV CLASS="function">
211  <A NAME='NOT_SEARCHABLE'><!-- --></A>  <A NAME="defineNOT_SEARCHABLE"><!-- --></A>
212  <span class="font10bold">Constant Name : </span>NOT_SEARCHABLE  <span class="font10bold">Constant Name : </span>NOT_SEARCHABLE (line <span class="linenumber">16</span>)
213  <BR>  <BR>
214  <span class="font10bold">Value         : </span>FALSE  <span class="font10bold">Value         : </span>FALSE
   
215  <DIV STYLE="padding-left: 10px">  <DIV STYLE="padding-left: 10px">
  <!-- ========== Info from phpDoc block ========= -->  
   
 <BR>  
216    
217    <br />
218    
219  <UL>  <UL>
220                    </UL>
 </UL>  
   
221  </DIV>  </DIV>
222  </DIV>  </DIV>
223  <br>  <br>
   
224  <DIV CLASS="function">  <DIV CLASS="function">
225  <A NAME='NOT_SORTABLE'><!-- --></A>  <A NAME="defineNOT_SORTABLE"><!-- --></A>
226  <span class="font10bold">Constant Name : </span>NOT_SORTABLE  <span class="font10bold">Constant Name : </span>NOT_SORTABLE (line <span class="linenumber">14</span>)
227  <BR>  <BR>
228  <span class="font10bold">Value         : </span>FALSE  <span class="font10bold">Value         : </span>FALSE
   
229  <DIV STYLE="padding-left: 10px">  <DIV STYLE="padding-left: 10px">
  <!-- ========== Info from phpDoc block ========= -->  
   
 <BR>  
230    
231    <br />
232    
233  <UL>  <UL>
234                    </UL>
 </UL>  
   
235  </DIV>  </DIV>
236  </DIV>  </DIV>
237  <br>  <br>
   
238  <DIV CLASS="function">  <DIV CLASS="function">
239  <A NAME='SEARCHABLE'><!-- --></A>  <A NAME="defineSEARCHABLE"><!-- --></A>
240  <span class="font10bold">Constant Name : </span>SEARCHABLE  <span class="font10bold">Constant Name : </span>SEARCHABLE (line <span class="linenumber">15</span>)
241  <BR>  <BR>
242  <span class="font10bold">Value         : </span>TRUE  <span class="font10bold">Value         : </span>TRUE
   
243  <DIV STYLE="padding-left: 10px">  <DIV STYLE="padding-left: 10px">
  <!-- ========== Info from phpDoc block ========= -->  
   
 <BR>  
244    
245    <br />
246    
247  <UL>  <UL>
248                    </UL>
 </UL>  
   
249  </DIV>  </DIV>
250  </DIV>  </DIV>
251  <br>  <br>
   
252  <DIV CLASS="function">  <DIV CLASS="function">
253  <A NAME='SEARCH_ALL'><!-- --></A>  <A NAME="defineSEARCH_ALL"><!-- --></A>
254  <span class="font10bold">Constant Name : </span>SEARCH_ALL  <span class="font10bold">Constant Name : </span>SEARCH_ALL (line <span class="linenumber">24</span>)
255  <BR>  <BR>
256  <span class="font10bold">Value         : </span>15  <span class="font10bold">Value         : </span>15
   
257  <DIV STYLE="padding-left: 10px">  <DIV STYLE="padding-left: 10px">
  <!-- ========== Info from phpDoc block ========= -->  
   
 <BR>  
258    
259    <br />
260    
261  <UL>  <UL>
262                    </UL>
 </UL>  
   
263  </DIV>  </DIV>
264  </DIV>  </DIV>
265  <br>  <br>
   
266  <DIV CLASS="function">  <DIV CLASS="function">
267  <A NAME='SEARCH_BEGINS_WITH'><!-- --></A>  <A NAME="defineSEARCH_BEGINS_WITH"><!-- --></A>
268  <span class="font10bold">Constant Name : </span>SEARCH_BEGINS_WITH  <span class="font10bold">Constant Name : </span>SEARCH_BEGINS_WITH (line <span class="linenumber">20</span>)
269  <BR>  <BR>
270  <span class="font10bold">Value         : </span>1  <span class="font10bold">Value         : </span>1
   
271  <DIV STYLE="padding-left: 10px">  <DIV STYLE="padding-left: 10px">
  <!-- ========== Info from phpDoc block ========= -->  
   
 <BR>  
272    
273    <br />
274    
275  <UL>  <UL>
276                    </UL>
 </UL>  
   
277  </DIV>  </DIV>
278  </DIV>  </DIV>
279  <br>  <br>
   
280  <DIV CLASS="function">  <DIV CLASS="function">
281  <A NAME='SEARCH_CONTAINS'><!-- --></A>  <A NAME="defineSEARCH_CONTAINS"><!-- --></A>
282  <span class="font10bold">Constant Name : </span>SEARCH_CONTAINS  <span class="font10bold">Constant Name : </span>SEARCH_CONTAINS (line <span class="linenumber">21</span>)
283  <BR>  <BR>
284  <span class="font10bold">Value         : </span>2  <span class="font10bold">Value         : </span>2
   
285  <DIV STYLE="padding-left: 10px">  <DIV STYLE="padding-left: 10px">
  <!-- ========== Info from phpDoc block ========= -->  
   
 <BR>  
286    
287    <br />
288    
289  <UL>  <UL>
290                    </UL>
 </UL>  
   
291  </DIV>  </DIV>
292  </DIV>  </DIV>
293  <br>  <br>
   
294  <DIV CLASS="function">  <DIV CLASS="function">
295  <A NAME='SEARCH_ENDS_WITH'><!-- --></A>  <A NAME="defineSEARCH_ENDS_WITH"><!-- --></A>
296  <span class="font10bold">Constant Name : </span>SEARCH_ENDS_WITH  <span class="font10bold">Constant Name : </span>SEARCH_ENDS_WITH (line <span class="linenumber">23</span>)
297  <BR>  <BR>
298  <span class="font10bold">Value         : </span>8  <span class="font10bold">Value         : </span>8
   
299  <DIV STYLE="padding-left: 10px">  <DIV STYLE="padding-left: 10px">
  <!-- ========== Info from phpDoc block ========= -->  
   
 <BR>  
300    
301    <br />
302    
303  <UL>  <UL>
304                    </UL>
 </UL>  
   
305  </DIV>  </DIV>
306  </DIV>  </DIV>
307  <br>  <br>
   
308  <DIV CLASS="function">  <DIV CLASS="function">
309  <A NAME='SEARCH_EXACT'><!-- --></A>  <A NAME="defineSEARCH_EXACT"><!-- --></A>
310  <span class="font10bold">Constant Name : </span>SEARCH_EXACT  <span class="font10bold">Constant Name : </span>SEARCH_EXACT (line <span class="linenumber">22</span>)
311  <BR>  <BR>
312  <span class="font10bold">Value         : </span>4  <span class="font10bold">Value         : </span>4
   
313  <DIV STYLE="padding-left: 10px">  <DIV STYLE="padding-left: 10px">
  <!-- ========== Info from phpDoc block ========= -->  
   
 <BR>  
314    
315    <br />
316    
317  <UL>  <UL>
318                    </UL>
 </UL>  
   
319  </DIV>  </DIV>
320  </DIV>  </DIV>
321  <br>  <br>
   
322  <DIV CLASS="function">  <DIV CLASS="function">
323  <A NAME='SORTABLE'><!-- --></A>  <A NAME="defineSORTABLE"><!-- --></A>
324  <span class="font10bold">Constant Name : </span>SORTABLE  <span class="font10bold">Constant Name : </span>SORTABLE (line <span class="linenumber">13</span>)
325  <BR>  <BR>
326  <span class="font10bold">Value         : </span>TRUE  <span class="font10bold">Value         : </span>TRUE
   
327  <DIV STYLE="padding-left: 10px">  <DIV STYLE="padding-left: 10px">
328   <!-- ========== Info from phpDoc block ========= -->  Some global defines used
329  This is the base class for managing a list  <br />
 of data points.  
 <BR>  
   
330    
331  <UL>  <UL>
332                    </UL>
         <LI><b>Author</b> - <CODE>Walter A. Boring IV &lt;<a href="mailto:waboring@buildabetterweb.com">waboring@buildabetterweb.com</a>&gt;</CODE></LI>  
           
 </UL>  
   
333  </DIV>  </DIV>
334  </DIV>  </DIV>
335  <br>  <br>
   
   
336  <br>  <br>
337  <!-- ============ FUNCTION DETAIL =========== -->  <!-- ============ FUNCTION DETAIL =========== -->
338    
339  <A NAME='function_detail'></A>  <A NAME='function_detail'></A>
340  <TABLE CELLPADDING='3' CELLSPACING='0' WIDTH='100%' CLASS="border">  <TABLE CELLPADDING='3' CELLSPACING='0' WIDTH='100%' CLASS="bordernobottom">
341          <TR BGCOLOR='#CCCCFF' CLASS='TableHeadingColor'>          <TR BGCOLOR='#CCCCFF' CLASS='TableHeadingColor'>
342                  <TD>                  <TD>
343                          <span class="font12bold">Function Detail</span>                          <span class="font12bold">Function Detail</span>
# Line 513  of data points. Line 346  of data points.
346          </TR>          </TR>
347  </TABLE>  </TABLE>
348  <BR>  <BR>
   
   
349  <br>  <br>
350  </HTML>          <div id="credit">
351                    <hr>
352                    Documention generated on Thu, 20 Feb 2003 16:22:34 -0800 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.2.0rc1</a>
353            </div>
354    </body>
355    </html>
356    </HTML>

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

MailToCvsAdmin">MailToCvsAdmin
ViewVC Help
Powered by ViewVC 1.1.26 RSS 2.0 feed