phpvortex-commit Mailing List for PHP Vortex Framework (Page 4)
Brought to you by:
nop144666
You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(30) |
Oct
(93) |
Nov
(12) |
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
|
Feb
|
Mar
(1) |
Apr
(3) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(4) |
Oct
|
Nov
|
Dec
|
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(12) |
Sep
|
Oct
|
Nov
(1) |
Dec
|
From: Thiago R. <nop...@us...> - 2004-10-07 18:33:51
|
Update of /cvsroot/phpvortex/phpvortex In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24868 Modified Files: SEC_Base.class.php Log Message: Fixed a bug in SEC_Base constructor to allow some passing by reference Index: SEC_Base.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/SEC_Base.class.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** SEC_Base.class.php 6 Oct 2004 20:56:16 -0000 1.4 --- SEC_Base.class.php 7 Oct 2004 18:33:39 -0000 1.5 *************** *** 31,36 **** function SEC_Base($opts = array()) { ! foreach ($opts as $key => $value) { ! $this->$key =& $value; } } --- 31,37 ---- function SEC_Base($opts = array()) { ! $keys = array_keys($opts); ! foreach ($keys as $key) { ! $this->$key =& $opts[$key]; } } |
From: Thiago R. <nop...@us...> - 2004-10-07 18:32:51
|
Update of /cvsroot/phpvortex/phpvortex In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24703 Modified Files: RS_MySQL.class.php Log Message: Fixed a small bug in RS_MySQL Index: RS_MySQL.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/RS_MySQL.class.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** RS_MySQL.class.php 30 Sep 2004 19:31:26 -0000 1.3 --- RS_MySQL.class.php 7 Oct 2004 18:32:41 -0000 1.4 *************** *** 69,72 **** --- 69,73 ---- function SetRow($row = 0) { + if (!mysql_num_rows($this->result)) return FALSE; if (!mysql_data_seek($this->result, $row)) return FALSE; $this->row = $row; |
From: Thiago R. <nop...@us...> - 2004-10-07 18:31:36
|
Update of /cvsroot/phpvortex/phpvortex/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24453/test Modified Files: vortex_test.php vortex_test.sql vortex_test_page.php Added Files: TB_Test.class.php Log Message: Test programs: Placed TB_Test into a class file, added some example data to the test database and started a demonstration of the SEC_List in vortex_test_page.php Index: vortex_test_page.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/test/vortex_test_page.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** vortex_test_page.php 6 Oct 2004 19:51:49 -0000 1.2 --- vortex_test_page.php 7 Oct 2004 18:31:26 -0000 1.3 *************** *** 10,13 **** --- 10,19 ---- */ + /** Require the header for MySQL database access. */ + require_once('../DB_MySQL.class.php'); + /** Require the header for the utility URL class. */ + require_once('../URL.class.php'); + /** Require the header for the Test Table class. */ + require_once('TB_Test.class.php'); /** Require the header for SEC_Page functionality. */ require_once('../SEC_Page.class.php'); *************** *** 20,36 **** */ class Test_Page extends SEC_Page { ! function Test_Page() { parent::SEC_Page(array( 'header' => array( 'class' => 'SEC_Header', 'opts' => array( ! 'title' => 'SEC_Page test page', ! 'styles' => array('tests.css') ) ), 'content' => array( ! 'class' => 'SEC_Static', 'opts' => array( ! 'code' => 'Page content' ) ) --- 26,50 ---- */ class Test_Page extends SEC_Page { ! function Test_Page(&$table) { parent::SEC_Page(array( 'header' => array( 'class' => 'SEC_Header', 'opts' => array( ! 'title' => 'SEC_Page and SEC_List test page', ! 'styles' => array('tests.css', 'vortex_test.css') ) ), 'content' => array( ! 'class' => 'SEC_List', 'opts' => array( ! 'table' => &$table, ! 'url' => new URL(), ! 'navigator' => array( ! 'class' => 'SEC_ListNavigator', ! 'opts' => array( ! 'url' => new URL() ! ) ! ), ! 'recspage' => 2 ) ) *************** *** 39,43 **** } ! $page =& new Test_Page; $page->Show(); ?> \ No newline at end of file --- 53,64 ---- } ! $db =& new DB_MySQL(array('server' => 'localhost', 'db' => 'vortex_test', 'user' => 'root', 'pw' => '')); ! $db->Connect(); ! ! $tb =& new TB_Test($db); ! ! $page =& new Test_Page($tb); $page->Show(); + + $db->Close(); ?> \ No newline at end of file Index: vortex_test.sql =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/test/vortex_test.sql,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** vortex_test.sql 30 Sep 2004 20:46:54 -0000 1.1 --- vortex_test.sql 7 Oct 2004 18:31:26 -0000 1.2 *************** *** 8,9 **** --- 8,19 ---- PRIMARY KEY (ph_id) ) TYPE=MyISAM; + + INSERT INTO phones VALUES (NULL, 'Test 1', '555-5551'); + INSERT INTO phones VALUES (NULL, 'Test 2', '555-5552'); + INSERT INTO phones VALUES (NULL, 'Test 3', '555-5553'); + INSERT INTO phones VALUES (NULL, 'Test 4', '555-5554'); + INSERT INTO phones VALUES (NULL, 'Test 5', '555-5555'); + INSERT INTO phones VALUES (NULL, 'Test 6', '555-5556'); + INSERT INTO phones VALUES (NULL, 'Test 7', '555-5557'); + INSERT INTO phones VALUES (NULL, 'Test 8', '555-5558'); + INSERT INTO phones VALUES (NULL, 'Test 9', '555-5559'); \ No newline at end of file --- NEW FILE: TB_Test.class.php --- <?php /** * File for class TB_Test. * * @package Vortex * @subpackage Debug * @author Thiago Ramon Gonçalves Montoya * @copyright Copyright 2004, Thiago Ramon Gonçalves Montoya * @license http://opensource.org/licenses/lgpl-license.php GNU Lesser General Public License */ /** Require the header for Table functionality. */ require_once('../TB_Base.class.php'); /** Require the header for the field used in the test database. */ require_once('../FT_Text.class.php'); /** * Testing class. * * @package Vortex * @subpackage Debug */ class TB_Test extends TB_Base { function TB_Test(&$db) { $this->name = 'phones'; $this->fields['ph_id'] =& new FT_Text($db, array('name' => 'ph_id', 'pkey' => TRUE, 'required' => TRUE)); $this->fields['ph_name'] =& new FT_Text($db, array('name' => 'ph_name', 'label' => 'Name', 'required' => TRUE)); $this->fields['ph_phone'] =& new FT_Text($db, array('name' => 'ph_phone', 'label' => 'Phone', 'required' => TRUE)); $this->fields_list[] =& $this->fields['ph_name']; $this->fields_list[] =& $this->fields['ph_phone']; $this->fields_form[] =& $this->fields['ph_name']; $this->fields_form[] =& $this->fields['ph_phone']; $this->list_order = 'ph_name'; TB_Base::TB_Base($db); } } ?> Index: vortex_test.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/test/vortex_test.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** vortex_test.php 6 Oct 2004 19:50:40 -0000 1.9 --- vortex_test.php 7 Oct 2004 18:31:26 -0000 1.10 *************** *** 12,21 **** /** Require the header for MySQL database access. */ require_once('../DB_MySQL.class.php'); - /** Require the header for Table functionality. */ - require_once('../TB_Base.class.php'); - /** Require the header for the field used in the test database. */ - require_once('../FT_Text.class.php'); /** Require the header for the utility URL class. */ require_once('../URL.class.php'); ?> <html> --- 12,20 ---- /** Require the header for MySQL database access. */ require_once('../DB_MySQL.class.php'); /** Require the header for the utility URL class. */ require_once('../URL.class.php'); + /** Require the header for the Test Table class. */ + require_once('TB_Test.class.php'); + ?> <html> *************** *** 29,53 **** <body> <?php - /** - * Testing class. - * - * @package Vortex - * @subpackage Debug - */ - class TB_Test extends TB_Base { - function TB_Test(&$db) { - $this->name = 'phones'; - $this->fields['ph_id'] =& new FT_Text($db, array('name' => 'ph_id', 'pkey' => TRUE, 'required' => TRUE)); - $this->fields['ph_name'] =& new FT_Text($db, array('name' => 'ph_name', 'label' => 'Name', 'required' => TRUE)); - $this->fields['ph_phone'] =& new FT_Text($db, array('name' => 'ph_phone', 'label' => 'Phone', 'required' => TRUE)); - $this->fields_list[] =& $this->fields['ph_name']; - $this->fields_list[] =& $this->fields['ph_phone']; - $this->fields_form[] =& $this->fields['ph_name']; - $this->fields_form[] =& $this->fields['ph_phone']; - $this->list_order = 'ph_name'; - TB_Base::TB_Base($db); - } - } - $db =& new DB_MySQL(array('server' => 'localhost', 'db' => 'vortex_test', 'user' => 'root', 'pw' => '')); $db->Connect(); --- 28,31 ---- |
From: Thiago R. <nop...@us...> - 2004-10-07 17:43:12
|
Update of /cvsroot/phpvortex/phpvortex In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9598 Modified Files: URL.class.php Log Message: Fixed a typo (a bad one) in the URL class Index: URL.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/URL.class.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** URL.class.php 6 Oct 2004 19:49:22 -0000 1.1 --- URL.class.php 7 Oct 2004 17:43:02 -0000 1.2 *************** *** 54,58 **** $this->base = $parts[0]; $this->parameters = array(); ! if (count($parts)==1) { $params = explode('&', $parts[1]); foreach ($params as $param) { --- 54,58 ---- $this->base = $parts[0]; $this->parameters = array(); ! if (count($parts)==2) { $params = explode('&', $parts[1]); foreach ($params as $param) { |
From: Thiago R. <nop...@us...> - 2004-10-06 21:00:11
|
Update of /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8958/doc/html/Vortex/DB Modified Files: DB_Base.html DB_MySQL.html FT_Base.html FT_Text.html RS_Base.html RS_MySQL.html TB_Base.html _DB_Base_class_php.html _DB_MySQL_class_php.html _FT_Base_class_php.html _FT_Text_class_php.html _RS_Base_class_php.html _RS_MySQL_class_php.html _TB_Base_class_php.html Log Message: Updating documentation Index: RS_Base.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB/RS_Base.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** RS_Base.html 6 Oct 2004 13:58:59 -0000 1.3 --- RS_Base.html 6 Oct 2004 20:59:25 -0000 1.4 *************** *** 528,532 **** <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:42 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 528,532 ---- <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:58:06 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: RS_MySQL.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB/RS_MySQL.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** RS_MySQL.html 6 Oct 2004 13:58:59 -0000 1.3 --- RS_MySQL.html 6 Oct 2004 20:59:25 -0000 1.4 *************** *** 388,392 **** <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:43 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 388,392 ---- <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:58:08 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: _TB_Base_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB/_TB_Base_class_php.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** _TB_Base_class_php.html 6 Oct 2004 13:58:59 -0000 1.3 --- _TB_Base_class_php.html 6 Oct 2004 20:59:26 -0000 1.4 *************** *** 72,76 **** <div class="info-box-body"> <a name="_conf/conf_php"><!-- --></a> ! <div class="evenrow"> <div> --- 72,76 ---- <div class="info-box-body"> <a name="_conf/conf_php"><!-- --></a> ! <div class="oddrow"> <div> *************** *** 100,104 **** <div class="info-box-body"> <a name="defineTB_ERR_DB"><!-- --></a> ! <div class="oddrow"> <div> --- 100,104 ---- <div class="info-box-body"> <a name="defineTB_ERR_DB"><!-- --></a> ! <div class="evenrow"> <div> *************** *** 116,120 **** </div> <a name="defineTB_ERR_EMPTY"><!-- --></a> ! <div class="evenrow"> <div> --- 116,120 ---- </div> <a name="defineTB_ERR_EMPTY"><!-- --></a> ! <div class="oddrow"> <div> *************** *** 132,136 **** </div> <a name="defineTB_ERR_INCONSIST"><!-- --></a> ! <div class="oddrow"> <div> --- 132,136 ---- </div> <a name="defineTB_ERR_INCONSIST"><!-- --></a> ! <div class="evenrow"> <div> *************** *** 148,152 **** </div> <a name="defineTB_ERR_NOPKEY"><!-- --></a> ! <div class="evenrow"> <div> --- 148,152 ---- </div> <a name="defineTB_ERR_NOPKEY"><!-- --></a> ! <div class="oddrow"> <div> *************** *** 164,168 **** </div> <a name="defineTB_ERR_OK"><!-- --></a> ! <div class="oddrow"> <div> --- 164,168 ---- </div> <a name="defineTB_ERR_OK"><!-- --></a> ! <div class="evenrow"> <div> *************** *** 185,189 **** <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:47 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 185,189 ---- <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:58:14 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: _FT_Base_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB/_FT_Base_class_php.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** _FT_Base_class_php.html 6 Oct 2004 13:58:59 -0000 1.3 --- _FT_Base_class_php.html 6 Oct 2004 20:59:26 -0000 1.4 *************** *** 62,66 **** <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:38 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 62,66 ---- <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:58:03 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: TB_Base.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB/TB_Base.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TB_Base.html 6 Oct 2004 13:58:59 -0000 1.3 --- TB_Base.html 6 Oct 2004 20:59:26 -0000 1.4 *************** *** 182,186 **** <span class="method-result">bool</span> <a href="#ShowList" title="details" class="method-name">ShowList</a> ! ([<span class="var-type">string</span> <span class="var-name">$url</span> = <span class="var-default">''</span>], [<span class="var-type">int</span> <span class="var-name">$page</span> = <span class="var-default">-1</span>], [<span class="var-type">array</span> <span class="var-name">$data</span> = <span class="var-default">NULL</span>]) </div> </div> --- 182,186 ---- <span class="method-result">bool</span> <a href="#ShowList" title="details" class="method-name">ShowList</a> ! ([<span class="var-type"><a href="../../Vortex/Util/URL.html">URL</a></span> <span class="var-name">$url</span> = <span class="var-default">NULL</span>], [<span class="var-type">int</span> <span class="var-name">$page</span> = <span class="var-default">-1</span>], [<span class="var-type">array</span> <span class="var-name">$data</span> = <span class="var-default">NULL</span>]) </div> </div> *************** *** 203,207 **** <div class="info-box-body"> <a name="var$data" id="$data"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 203,207 ---- <div class="info-box-body"> <a name="var$data" id="$data"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 222,226 **** </div> <a name="var$db" id="$db"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 222,226 ---- </div> <a name="var$db" id="$db"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 241,245 **** </div> <a name="var$error" id="$error"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 241,245 ---- </div> <a name="var$error" id="$error"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 260,264 **** </div> <a name="var$fields" id="$fields"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 260,264 ---- </div> <a name="var$fields" id="$fields"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 279,283 **** </div> <a name="var$fields_form" id="$fields_form"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 279,283 ---- </div> <a name="var$fields_form" id="$fields_form"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 298,302 **** </div> <a name="var$fields_list" id="$fields_list"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 298,302 ---- </div> <a name="var$fields_list" id="$fields_list"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 317,321 **** </div> <a name="var$label" id="$label"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 317,321 ---- </div> <a name="var$label" id="$label"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 337,341 **** </div> <a name="var$list_order" id="$list_order"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 337,341 ---- </div> <a name="var$list_order" id="$list_order"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 356,360 **** </div> <a name="var$list_recspage" id="$list_recspage"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 356,360 ---- </div> <a name="var$list_recspage" id="$list_recspage"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 375,379 **** </div> <a name="var$name" id="$name"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 375,379 ---- </div> <a name="var$name" id="$name"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 394,398 **** </div> <a name="var$name_db" id="$name_db"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 394,398 ---- </div> <a name="var$name_db" id="$name_db"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 430,434 **** <A NAME='method_detail'></A> <a name="methodTB_Base" id="TB_Base"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> --- 430,434 ---- <A NAME='method_detail'></A> <a name="methodTB_Base" id="TB_Base"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> *************** *** 456,460 **** </div> <a name="methodDelete" id="Delete"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> --- 456,460 ---- </div> <a name="methodDelete" id="Delete"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> *************** *** 485,489 **** </div> <a name="methodError" id="Error"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> --- 485,489 ---- </div> <a name="methodError" id="Error"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> *************** *** 509,516 **** </div> <a name="methodNumPages" id="NumPages"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> ! <span class="method-title">NumPages</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a343">343</a></span>) </div> --- 509,516 ---- </div> <a name="methodNumPages" id="NumPages"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> ! <span class="method-title">NumPages</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a342">342</a></span>) </div> *************** *** 538,542 **** </div> <a name="methodSave" id="Save"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> --- 538,542 ---- </div> <a name="methodSave" id="Save"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> *************** *** 567,571 **** </div> <a name="methodSeek" id="Seek"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> --- 567,571 ---- </div> <a name="methodSeek" id="Seek"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> *************** *** 599,606 **** </div> <a name="methodShowForm" id="ShowForm"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> ! <span class="method-title">ShowForm</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a375">375</a></span>) </div> --- 599,606 ---- </div> <a name="methodShowForm" id="ShowForm"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> ! <span class="method-title">ShowForm</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a374">374</a></span>) </div> *************** *** 637,641 **** </div> <a name="methodShowList" id="ShowList"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> --- 637,641 ---- </div> <a name="methodShowList" id="ShowList"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> *************** *** 654,664 **** ShowList </span> ! ([<span class="var-type">string</span> <span class="var-name">$url</span> = <span class="var-default">''</span>], [<span class="var-type">int</span> <span class="var-name">$page</span> = <span class="var-default">-1</span>], [<span class="var-type">array</span> <span class="var-name">$data</span> = <span class="var-default">NULL</span>]) </div> <ul class="parameters"> <li> ! <span class="var-type">string</span> ! <span class="var-name">$url</span><span class="var-description">: URL to link the records to. The function replaces the string "PKEY" with the pkeys and values for the record. Leave blank for no links.</span> </li> <li> <span class="var-type">int</span> --- 654,664 ---- ShowList </span> ! ([<span class="var-type"><a href="../../Vortex/Util/URL.html">URL</a></span> <span class="var-name">$url</span> = <span class="var-default">NULL</span>], [<span class="var-type">int</span> <span class="var-name">$page</span> = <span class="var-default">-1</span>], [<span class="var-type">array</span> <span class="var-name">$data</span> = <span class="var-default">NULL</span>]) </div> <ul class="parameters"> <li> ! <span class="var-type"><a href="../../Vortex/Util/URL.html">URL</a></span> ! <span class="var-name">$url</span><span class="var-description">: URL to link the records to. Leave blank for no links.</span> </li> <li> <span class="var-type">int</span> *************** *** 677,681 **** <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:49 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 677,681 ---- <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:58:16 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: FT_Base.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB/FT_Base.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** FT_Base.html 6 Oct 2004 13:58:59 -0000 1.3 --- FT_Base.html 6 Oct 2004 20:59:25 -0000 1.4 *************** *** 666,670 **** <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:39 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 666,670 ---- <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:58:03 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: _RS_Base_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB/_RS_Base_class_php.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** _RS_Base_class_php.html 6 Oct 2004 13:58:59 -0000 1.3 --- _RS_Base_class_php.html 6 Oct 2004 20:59:26 -0000 1.4 *************** *** 123,127 **** <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:42 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 123,127 ---- <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:58:06 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: FT_Text.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB/FT_Text.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** FT_Text.html 6 Oct 2004 13:58:59 -0000 1.3 --- FT_Text.html 6 Oct 2004 20:59:25 -0000 1.4 *************** *** 408,412 **** <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:40 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 408,412 ---- <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:58:04 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: _FT_Text_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB/_FT_Text_class_php.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** _FT_Text_class_php.html 6 Oct 2004 13:58:59 -0000 1.3 --- _FT_Text_class_php.html 6 Oct 2004 20:59:26 -0000 1.4 *************** *** 90,94 **** <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:40 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 90,94 ---- <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:58:04 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: _DB_MySQL_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB/_DB_MySQL_class_php.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** _DB_MySQL_class_php.html 6 Oct 2004 13:58:59 -0000 1.3 --- _DB_MySQL_class_php.html 6 Oct 2004 20:59:26 -0000 1.4 *************** *** 105,109 **** <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:35 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 105,109 ---- <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:58:00 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: _RS_MySQL_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB/_RS_MySQL_class_php.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** _RS_MySQL_class_php.html 6 Oct 2004 13:58:59 -0000 1.3 --- _RS_MySQL_class_php.html 6 Oct 2004 20:59:26 -0000 1.4 *************** *** 90,94 **** <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:43 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 90,94 ---- <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:58:07 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: _DB_Base_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB/_DB_Base_class_php.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** _DB_Base_class_php.html 6 Oct 2004 13:58:59 -0000 1.3 --- _DB_Base_class_php.html 6 Oct 2004 20:59:26 -0000 1.4 *************** *** 62,66 **** <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:33 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 62,66 ---- <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:57:58 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: DB_Base.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB/DB_Base.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** DB_Base.html 6 Oct 2004 13:58:59 -0000 1.3 --- DB_Base.html 6 Oct 2004 20:59:25 -0000 1.4 *************** *** 753,757 **** <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:34 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 753,757 ---- <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:57:58 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: DB_MySQL.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB/DB_MySQL.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** DB_MySQL.html 6 Oct 2004 13:58:59 -0000 1.3 --- DB_MySQL.html 6 Oct 2004 20:59:25 -0000 1.4 *************** *** 431,435 **** <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:36 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 431,435 ---- <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:58:00 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> |
From: Thiago R. <nop...@us...> - 2004-10-06 21:00:10
|
Update of /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Debug In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8958/doc/html/Vortex/Debug Modified Files: TB_Test.html _d_footer_php.html _d_header_php.html _debug_php.html _test_vortex_test_php.html Added Files: Test_Page.html _test_vortex_test_page_php.html Log Message: Updating documentation Index: _test_vortex_test_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Debug/_test_vortex_test_php.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** _test_vortex_test_php.html 6 Oct 2004 13:58:59 -0000 1.2 --- _test_vortex_test_php.html 6 Oct 2004 20:59:26 -0000 1.3 *************** *** 113,116 **** --- 113,131 ---- </div> + <a name="___/URL_class_php"><!-- --></a> + <div class="evenrow"> + + <div> + <span class="include-title"> + <span class="include-type">require_once</span> + (<span class="include-name"><a href="../../Vortex/Util/_URL_class_php.html">'../URL.class.php'</a></span>) + (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Debug_testvortex_test.php.html#a19">19</a></span>) + </span> + </div> + + <!-- ========== Info from phpDoc block ========= --> + <p class="short-description">Require the header for the utility URL class.</p> + + </div> </div> </div> *************** *** 120,124 **** <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:50 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 135,139 ---- <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:58:18 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: _d_header_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Debug/_d_header_php.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** _d_header_php.html 6 Oct 2004 13:58:59 -0000 1.3 --- _d_header_php.html 6 Oct 2004 20:59:26 -0000 1.4 *************** *** 63,67 **** <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:38 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 63,67 ---- <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:58:02 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- NEW FILE: _test_vortex_test_page_php.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <!-- template designed by Marco Von Ballmoos --> <title>Docs for page vortex_test_page.php</title> <link rel="stylesheet" href="../../media/stylesheet.css" /> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> </head> <body> <div class="page-body"> <h2 class="file-name">/test/vortex_test_page.php</h2> <a name="sec-description"></a> <div class="info-box"> <div class="info-box-title">Description</div> <div class="nav-bar"> <span class="disabled">Description</span> | <a href="#sec-classes">Classes</a> | <a href="#sec-includes">Includes</a> </div> <div class="info-box-body"> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Test file for the PHP Vortex project - test SEC_Page functionality.</p> <ul class="tags"> <li><span class="field">filesource:</span> <a href="../..//__filesource/fsource_Vortex_Debug_testvortex_test_page.php.html">Source Code for this file</a></li> <li><span class="field">license:</span> <a href="http://opensource.org/licenses/lgpl-license.php">GNU Lesser General Public License</a></li> <li><span class="field">copyright:</span> Copyright 2004, Thiago Ramon Gonçalves Montoya</li> <li><span class="field">author:</span> Thiago Ramon Gonçalves Montoya</li> </ul> </div> </div> <a name="sec-classes"></a> <div class="info-box"> <div class="info-box-title">Classes</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <span class="disabled">Classes</span> | <a href="#sec-includes">Includes</a> </div> <div class="info-box-body"> <table cellpadding="2" cellspacing="0" class="class-table"> <tr> <th class="class-table-header">Class</th> <th class="class-table-header">Description</th> </tr> <tr> <td style="padding-right: 2em; vertical-align: top"> <a href="../../Vortex/Debug/Test_Page.html">Test_Page</a> </td> <td> Testing class. </td> </tr> </table> </div> </div> <a name="sec-includes"></a> <div class="info-box"> <div class="info-box-title">Includes</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-classes">Classes</a> | <span class="disabled">Includes</span> </div> <div class="info-box-body"> <a name="___/SEC_Page_class_php"><!-- --></a> <div class="evenrow"> <div> <span class="include-title"> <span class="include-type">require_once</span> (<span class="include-name"><a href="../../Vortex/Page/_SEC_Page_class_php.html">'../SEC_Page.class.php'</a></span>) (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Debug_testvortex_test_page.php.html#a13">13</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Require the header for SEC_Page functionality.</p> </div> </div> </div> <p class="notes" id="credit"> Documentation generated on Wed, 6 Oct 2004 17:58:20 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> </html> Index: TB_Test.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Debug/TB_Test.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TB_Test.html 6 Oct 2004 13:58:59 -0000 1.2 --- TB_Test.html 6 Oct 2004 20:59:26 -0000 1.3 *************** *** 25,29 **** <p class="short-description">Testing class.</p> <p class="notes"> ! Located in <a class="field" href="_test_vortex_test_php.html">/test/vortex_test.php</a> (line <span class="field"><a href="../..//__filesource/fsource_Vortex_Debug_testvortex_test.php.html#a35">35</a></span>) </p> --- 25,29 ---- <p class="short-description">Testing class.</p> <p class="notes"> ! Located in <a class="field" href="_test_vortex_test_php.html">/test/vortex_test.php</a> (line <span class="field"><a href="../..//__filesource/fsource_Vortex_Debug_testvortex_test.php.html#a37">37</a></span>) </p> *************** *** 131,135 **** <div class="method-header"> ! <span class="method-title">Constructor TB_Test</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Debug_testvortex_test.php.html#a36">36</a></span>) </div> --- 131,135 ---- <div class="method-header"> ! <span class="method-title">Constructor TB_Test</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Debug_testvortex_test.php.html#a38">38</a></span>) </div> *************** *** 167,171 **** <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:51 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 167,171 ---- <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:58:19 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- NEW FILE: Test_Page.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <!-- template designed by Marco Von Ballmoos --> <title>Docs For Class Test_Page</title> <link rel="stylesheet" href="../../media/stylesheet.css" /> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> </head> <body> <div class="page-body"> <h2 class="class-name">Class Test_Page</h2> <a name="sec-description"></a> <div class="info-box"> <div class="info-box-title">Description</div> <div class="nav-bar"> <span class="disabled">Description</span> | <a href="#sec-vars">Vars</a> | <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) </div> <div class="info-box-body"> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Testing class.</p> <p class="notes"> Located in <a class="field" href="_test_vortex_test_page_php.html">/test/vortex_test_page.php</a> (line <span class="field"><a href="../..//__filesource/fsource_Vortex_Debug_testvortex_test_page.php.html#a21">21</a></span>) </p> <pre><a href="../../Vortex/Page/SEC_Base.html">SEC_Base</a> | --<a href="../../Vortex/Page/SEC_Page.html">SEC_Page</a> | --Test_Page</pre> </div> </div> <a name="sec-method-summary"></a> <div class="info-box"> <div class="info-box-title">Method Summary</span></div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-vars">Vars</a> | <span class="disabled">Methods</span> (<a href="#sec-methods">details</a>) </div> <div class="info-box-body"> <div class="method-summary"> <div class="method-definition"> <span class="method-result">Test_Page</span> <a href="#Test_Page" title="details" class="method-name">Test_Page</a> () </div> </div> </div> </div> <a name="sec-vars"></a> <div class="info-box"> <div class="info-box-title">Variables</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-var-summary">Vars</a> (<span class="disabled">details</span>) | <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) </div> <div class="info-box-body"> <h4>Inherited Variables</h4> <A NAME='inherited_vars'><!-- --></A> <p>Inherited from <span class="classname"><a href="../../Vortex/Page/SEC_Page.html">SEC_Page</a></span></p> <blockquote> <span class="var-title"> <span class="var-name"><a href="../../Vortex/Page/SEC_Page.html#var$content">SEC_Page::$content</a></span><br> </span> <span class="var-title"> <span class="var-name"><a href="../../Vortex/Page/SEC_Page.html#var$header">SEC_Page::$header</a></span><br> </span> <span class="var-title"> <span class="var-name"><a href="../../Vortex/Page/SEC_Page.html#var$layout">SEC_Page::$layout</a></span><br> </span> <span class="var-title"> <span class="var-name"><a href="../../Vortex/Page/SEC_Page.html#var$onload">SEC_Page::$onload</a></span><br> </span> </blockquote> <p>Inherited from <span class="classname"><a href="../../Vortex/Page/SEC_Base.html">SEC_Base</a></span></p> <blockquote> <span class="var-title"> <span class="var-name"><a href="../../Vortex/Page/SEC_Base.html#var$sections">SEC_Base::$sections</a></span><br> </span> </blockquote> </div> </div> <a name="sec-methods"></a> <div class="info-box"> <div class="info-box-title">Methods</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-vars">Vars</a> <a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>) </div> <div class="info-box-body"> <A NAME='method_detail'></A> <a name="methodTest_Page" id="Test_Page"><!-- --></a> <div class="oddrow"> <div class="method-header"> <span class="method-title">Constructor Test_Page</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Debug_testvortex_test_page.php.html#a22">22</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <div class="method-signature"> <span class="method-result">Test_Page</span> <span class="method-name"> Test_Page </span> () </div> </div> <h4>Inherited Methods</h4> <a name='inherited_methods'><!-- --></a> <!-- =========== Summary =========== --> <p>Inherited From <span class="classname"><a href="../../Vortex/Page/SEC_Page.html">SEC_Page</a></span></p> <blockquote> <span class="method-name"><a href="../../Vortex/Page/SEC_Page.html#methodSEC_Page">SEC_Page::SEC_Page()</a></span><br> <span class="method-name"><a href="../../Vortex/Page/SEC_Page.html#methodShow">SEC_Page::Show()</a></span><br> </blockquote> <!-- =========== Summary =========== --> <p>Inherited From <span class="classname"><a href="../../Vortex/Page/SEC_Base.html">SEC_Base</a></span></p> <blockquote> <span class="method-name"><a href="../../Vortex/Page/SEC_Base.html#methodSEC_Base">SEC_Base::SEC_Base()</a></span><br> <span class="method-name"><a href="../../Vortex/Page/SEC_Base.html#methodAddSection">SEC_Base::AddSection()</a></span><br> <span class="method-name"><a href="../../Vortex/Page/SEC_Base.html#methodDelSection">SEC_Base::DelSection()</a></span><br> <span class="method-name"><a href="../../Vortex/Page/SEC_Base.html#methodShow">SEC_Base::Show()</a></span><br> </blockquote> </div> </div> <p class="notes" id="credit"> Documentation generated on Wed, 6 Oct 2004 17:58:20 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> </html> Index: _debug_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Debug/_debug_php.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** _debug_php.html 6 Oct 2004 13:58:59 -0000 1.3 --- _debug_php.html 6 Oct 2004 20:59:26 -0000 1.4 *************** *** 140,144 **** <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:37 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 140,144 ---- <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:58:01 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: _d_footer_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Debug/_d_footer_php.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** _d_footer_php.html 6 Oct 2004 13:58:59 -0000 1.3 --- _d_footer_php.html 6 Oct 2004 20:59:26 -0000 1.4 *************** *** 36,40 **** <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:38 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 36,40 ---- <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:58:02 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> |
Update of /cvsroot/phpvortex/phpvortex/doc/html/__filesource In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8958/doc/html/__filesource Modified Files: fsource_Vortex_DB_DB_Base.class.php.html fsource_Vortex_DB_DB_MySQL.class.php.html fsource_Vortex_DB_FT_Base.class.php.html fsource_Vortex_DB_FT_Text.class.php.html fsource_Vortex_DB_RS_Base.class.php.html fsource_Vortex_DB_RS_MySQL.class.php.html fsource_Vortex_DB_TB_Base.class.php.html fsource_Vortex_Debug_d_footer.php.html fsource_Vortex_Debug_d_header.php.html fsource_Vortex_Debug_debug.php.html fsource_Vortex_Debug_testvortex_test.php.html fsource_Vortex_Page_SEC_Base.class.php.html fsource_Vortex_Page_SEC_Header.class.php.html fsource_Vortex_Page_SEC_Page.class.php.html fsource_Vortex_Page_SEC_Static.class.php.html fsource_Vortex_Util_Class Template.php.html fsource_Vortex_Util_confconf.php.html fsource_Vortex_Util_conflang_en.php.html fsource_Vortex_Util_conflang_pt_br.php.html Added Files: fsource_Vortex_Debug_testvortex_test_page.php.html fsource_Vortex_Page_SEC_List.class.php.html fsource_Vortex_Page_SEC_ListNavigator.class.php.html fsource_Vortex_Util_URL.class.php.html Log Message: Updating documentation Index: fsource_Vortex_Debug_debug.php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/__filesource/fsource_Vortex_Debug_debug.php.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** fsource_Vortex_Debug_debug.php.html 6 Oct 2004 13:59:00 -0000 1.3 --- fsource_Vortex_Debug_debug.php.html 6 Oct 2004 20:59:29 -0000 1.4 *************** *** 82,86 **** </div> <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:37 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> --- 82,86 ---- </div> <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:58:02 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> Index: fsource_Vortex_Util_conflang_en.php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/__filesource/fsource_Vortex_Util_conflang_en.php.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** fsource_Vortex_Util_conflang_en.php.html 6 Oct 2004 13:59:00 -0000 1.1 --- fsource_Vortex_Util_conflang_en.php.html 6 Oct 2004 20:59:29 -0000 1.2 *************** *** 29,33 **** </div> <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:41 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> --- 29,33 ---- </div> <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:58:05 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> Index: fsource_Vortex_DB_TB_Base.class.php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/__filesource/fsource_Vortex_DB_TB_Base.class.php.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** fsource_Vortex_DB_TB_Base.class.php.html 6 Oct 2004 13:59:00 -0000 1.3 --- fsource_Vortex_DB_TB_Base.class.php.html 6 Oct 2004 20:59:28 -0000 1.4 *************** *** 290,299 **** <li><a name="a276"></a></span><span class="src-str"> * Outputs a list for viewing/editing records.</span></li> <li><a name="a277"></a></span><span class="src-str"> *</span></li> ! <li><a name="a278"></a></span><span class="src-str"> * @param string $url URL to link the records to. The function replaces the string "PKEY" with the pkeys and values for the record. Leave blank for no links.</span></li> <li><a name="a279"></a></span><span class="src-str"> * @param int $page Current page to show the records. Leave -1 to show all records.</span></li> <li><a name="a280"></a></span><span class="src-str"> * @param array $data Array containing the data to seek as 'field' => 'value'.</span></li> <li><a name="a281"></a></span><span class="src-str"> * @return bool Returns TRUE on success, FALSE on error.</span></li> <li><a name="a282"></a></span><span class="src-str"> */</span></li> ! <li><a name="a283"></a></span><span class="src-str"> <span class="src-key">function</span> <span class="src-id">ShowList</span><span class="src-sym">(</span><span class="src-var">$url</span> = <span class="src-str">''</span><span class="src-sym">,</span> <span class="src-var">$page</span> = -<span class="src-num">1</span><span class="src-sym">,</span> <span class="src-var">$data</span> = <span class="src-id">NULL</span><span class="src-sym">)</span></span></li> <li><a name="a284"></a></span><span class="src-str"> <span class="src-sym">{</span></span></li> <li><a name="a285"></a></span><span class="src-str"> <span class="src-var">$fields</span> = <span class="src-str">''</span><span class="src-sym">;</span></span></li> --- 290,299 ---- <li><a name="a276"></a></span><span class="src-str"> * Outputs a list for viewing/editing records.</span></li> <li><a name="a277"></a></span><span class="src-str"> *</span></li> ! <li><a name="a278"></a></span><span class="src-str"> * @param URL $url URL to link the records to. Leave blank for no links.</span></li> <li><a name="a279"></a></span><span class="src-str"> * @param int $page Current page to show the records. Leave -1 to show all records.</span></li> <li><a name="a280"></a></span><span class="src-str"> * @param array $data Array containing the data to seek as 'field' => 'value'.</span></li> <li><a name="a281"></a></span><span class="src-str"> * @return bool Returns TRUE on success, FALSE on error.</span></li> <li><a name="a282"></a></span><span class="src-str"> */</span></li> ! <li><a name="a283"></a></span><span class="src-str"> <span class="src-key">function</span> <span class="src-id">ShowList</span><span class="src-sym">(</span><span class="src-var">$url</span> = <span class="src-id">NULL</span><span class="src-sym">,</span> <span class="src-var">$page</span> = -<span class="src-num">1</span><span class="src-sym">,</span> <span class="src-var">$data</span> = <span class="src-id">NULL</span><span class="src-sym">)</span></span></li> <li><a name="a284"></a></span><span class="src-str"> <span class="src-sym">{</span></span></li> <li><a name="a285"></a></span><span class="src-str"> <span class="src-var">$fields</span> = <span class="src-str">''</span><span class="src-sym">;</span></span></li> *************** *** 331,436 **** <li><a name="a317"></a></span><span class="src-str"> echo <span class="src-str">"<tr>\n"</span><span class="src-sym">;</span></span></li> <li><a name="a318"></a></span><span class="src-str"> <span class="src-key">if</span> <span class="src-sym">(</span><span class="src-sym">!</span><span class="src-key">empty</span><span class="src-sym">(</span><span class="src-var">$url</span><span class="src-sym">))</span> <span class="src-sym">{</span></span></li> ! <li><a name="a319"></a></span><span class="src-str"> <span class="src-var">$pkeys</span> = <span class="src-str">''</span><span class="src-sym">;</span></span></li> ! <li><a name="a320"></a></span><span class="src-str"> <span class="src-key">foreach</span> <span class="src-sym">(</span><span class="src-var">$this</span></span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$fields">fields</a> <span class="src-key">as </span><span class="src-var">$field</span><span class="src-sym">) </span><span class="src-key">if </span><span class="src-sym">(</span><span class="src-var">$field</span><span class="src-sym">-></span><span class="src-id">pkey</span><span class="src-sym">) </span><span class="src-str"></span><span class="src-sym">{</span></span></li> ! <li><a name="a321"></a></span><span class="src-str"> <span class="src-var">$pkeys</span> .= <span class="src-sym">(</span><span class="src-id">strlen</span><span class="src-sym">(</span><span class="src-var">$pkeys</span><span class="src-sym">)</span>?<span class="src-str">'&'</span>:<span class="src-str">''</span><span class="src-sym">)</span>.<span class="src-str">"</span></span>{<span class="src-var">$field</span><span class="src-sym">-></span><span class="src-id">name_db</span><span class="src-str"></span><span class="src-sym">}</span>=</span>{<span class="src-var">$row</span><span class="src-sym">[</span><span class="src-var">$field</span><span class="src-sym">-></span><span class="src-id">name_db</span><span class="src-sym">]</span><span class="src-str"></span><span class="src-sym">}</span><span class="src-str">"</span><span class="src-sym">;</span></span></li> ! <li><a name="a322"></a></span><span class="src-str"> <span class="src-sym">}</span></span></li> ! <li><a name="a323"></a></span><span class="src-str"> <span class="src-sym">}</span></span></li> ! <li><a name="a324"></a></span><span class="src-str"> <span class="src-key">foreach</span> <span class="src-sym">(</span><span class="src-var">$this</span></span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$fields_list">fields_list</a> <span class="src-key">as </span><span class="src-var">$field</span><span class="src-sym">) </span><span class="src-str"></span><span class="src-sym">{</span></span></li> ! <li><a name="a325"></a></span><span class="src-str"> echo <span class="src-str">"</span><<span class="src-id">td</span> <span class="src-id">class</span>='<span class="src-id">fd_</span></span>{<span class="src-var">$field</span><span class="src-sym">-></span><span class="src-id">name</span><span class="src-str"></span><span class="src-sym">}</span>'><span class="src-str">"</span><span class="src-sym">;</span></span></li> ! <li><a name="a326"></a></span><span class="src-str"> <span class="src-key">if</span> <span class="src-sym">(</span><span class="src-sym">!</span><span class="src-key">empty</span><span class="src-sym">(</span><span class="src-var">$url</span><span class="src-sym">))</span> echo <span class="src-str">"<a href='"</span>.<span class="src-id">str_replace</span><span class="src-sym">(</span><span class="src-str">'PKEY'</span><span class="src-sym">,</span><span class="src-var">$pkeys</span><span class="src-sym">,</span><span class="src-var">$url</span><span class="src-sym">)</span>.<span class="src-str">"'>"</span><span class="src-sym">;</span></span></li> ! <li><a name="a327"></a></span><span class="src-str"> <span class="src-var">$field</span></span><span class="src-sym">-></span><span class="src-id">ShowPlain</span><span class="src-sym">(</span><span class="src-var">$row</span><span class="src-sym">[</span><span class="src-var">$field</span><span class="src-sym">-></span><span class="src-id">name_db</span><span class="src-sym">]</span><span class="src-sym">)</span><span class="src-sym">;</span></li> ! <li><a name="a328"></a> <span class="src-key">if </span><span class="src-sym">(</span><span class="src-sym">!</span><span class="src-key">empty</span><span class="src-sym">(</span><span class="src-var">$url</span><span class="src-sym">)) </span>echo <span class="src-str">'</a>'</span><span class="src-sym">;</span></li> ! <li><a name="a329"></a> echo <span class="src-str">"</td>\n"</span><span class="src-sym">;</span></li> ! <li><a name="a330"></a> </span><span class="src-str"><span class="src-sym">}</span></span></li> ! <li><a name="a331"></a></span><span class="src-str"> echo <span class="src-str">"</tr>\n"</span><span class="src-sym">;</span></span></li> ! <li><a name="a332"></a></span><span class="src-str"> <span class="src-sym">}</span></span></li> ! <li><a name="a333"></a></span><span class="src-str"> echo <span class="src-str">"</tbody>\n</table></div>\n"</span><span class="src-sym">;</span></span></li> ! <li><a name="a334"></a></span><span class="src-str"> <span class="src-key">return</span> <span class="src-id">TRUE</span><span class="src-sym">;</span></span></li> ! <li><a name="a335"></a></span><span class="src-str"> <span class="src-sym">}</span></span></li> ! <li><a name="a336"></a> </li> ! <li><a name="a337"></a></span><span class="src-str"> /**</span></li> ! <li><a name="a338"></a></span><span class="src-str"> * Gets the number of pages of a list.</span></li> ! <li><a name="a339"></a></span><span class="src-str"> *</span></li> ! <li><a name="a340"></a></span><span class="src-str"> * @param array $data Array containing the data to seek as 'field' => 'value'.</span></li> ! <li><a name="a341"></a></span><span class="src-str"> * @return int Returns the number of pages in a list or FALSE on error.</span></li> ! <li><a name="a342"></a></span><span class="src-str"> */</span></li> ! <li><a name="a343"></a></span><span class="src-str"> <span class="src-key">function</span> <span class="src-id">NumPages</span><span class="src-sym">(</span><span class="src-var">$data</span> = <span class="src-id">NULL</span><span class="src-sym">)</span></span></li> ! <li><a name="a344"></a></span><span class="src-str"> <span class="src-sym">{</span></span></li> ! <li><a name="a345"></a></span><span class="src-str"> <span class="src-var">$sql</span> = <span class="src-str">"</span><span class="src-id">SELECT</span> <span class="src-id">COUNT</span>(*) <span class="src-id">as</span> <span class="src-id">cnt</span> <span class="src-id">FROM</span> </span>{<span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$name_db">name_db</a><span class="src-sym">}</span><span class="src-str"></span><span class="src-str">"</span><span class="src-sym">;</span></span></li> ! <li><a name="a346"></a></span><span class="src-str"> <span class="src-key">if</span> <span class="src-sym">(</span><span class="src-sym">!</span><span class="src-key">empty</span><span class="src-sym">(</span><span class="src-var">$data</span><span class="src-sym">))</span> <span class="src-sym">{</span></span></li> ! <li><a name="a347"></a></span><span class="src-str"> <span class="src-var">$where</span> = <span class="src-str">''</span><span class="src-sym">;</span></span></li> ! <li><a name="a348"></a></span><span class="src-str"> <span class="src-key">foreach</span> <span class="src-sym">(</span><span class="src-var">$this</span></span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$fields">fields</a> <span class="src-key">as </span><span class="src-var">$field</span><span class="src-sym">) </span><span class="src-str"></span><span class="src-sym">{</span></span></li> ! <li><a name="a349"></a></span><span class="src-str"> <span class="src-key">if</span> <span class="src-sym">(</span>isset<span class="src-sym">(</span><span class="src-var">$data</span><span class="src-sym">[</span><span class="src-var">$field</span></span><span class="src-sym">-></span><span class="src-id">name_form</span><span class="src-sym">]</span><span class="src-sym">)) </span><span class="src-var">$where </span>.= <span class="src-sym">(</span><span class="src-id">strlen</span><span class="src-sym">(</span><span class="src-var">$where</span><span class="src-sym">)</span>?<span class="src-str">' AND '</span>:<span class="src-str">''</span><span class="src-sym">)</span>.<span class="src-var">$field</span><span class="src-sym">-></span><span class="src-id">Where</span><span class="src-sym">(</span><span class="src-var">$data</span><span class="src-sym">[</span><span class="src-var">$field</span><span class="src-sym">-></span><span class="src-id">name_form</span><span class="src-sym">]</span><span class="src-sym">)</span><span class="src-sym">;</span></li> ! <li><a name="a350"></a> </span><span class="src-str"><span class="src-sym">}</span></span></li> ! <li><a name="a351"></a></span><span class="src-str"> <span class="src-key">if</span> <span class="src-sym">(</span><span class="src-id">strlen</span><span class="src-sym">(</span><span class="src-var">$where</span><span class="src-sym">))</span> <span class="src-var">$sql</span> .= <span class="src-str">"</span> <span class="src-id">WHERE</span> <span class="src-var">$where</span><span class="src-str">"</span><span class="src-sym">;</span></span></li> ! <li><a name="a352"></a></span><span class="src-str"> <span class="src-sym">}</span></span></li> ! <li><a name="a353"></a></span><span class="src-str"> <span class="src-key">if</span> <span class="src-sym">(</span><span class="src-sym">!</span><span class="src-key">empty</span><span class="src-sym">(</span><span class="src-var">$debug</span><span class="src-sym">))</span> <span class="src-id">dv</span><span class="src-sym">(</span><span class="src-num">3</span><span class="src-sym">,</span> <span class="src-str">"NumPages SELECT"</span><span class="src-sym">,</span> <span class="src-var">$sql</span><span class="src-sym">)</span><span class="src-sym">;</span></span></li> ! <li><a name="a354"></a></span><span class="src-str"> <span class="src-key">if</span> <span class="src-sym">(</span><span class="src-sym">!</span><span class="src-sym">(</span><span class="src-var">$rs</span> = <span class="src-var">$this</span></span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$db">db</a><span class="src-sym">-></span><a href="../Vortex/DB/DB_Base.html#methodQuery">Query</a><span class="src-sym">(</span><span class="src-var">$sql</span><span class="src-sym">))) </span><span class="src-str"></span><span class="src-sym">{</span></span></li> ! <li><a name="a355"></a></span><span class="src-str"> <span class="src-var">$this</span></span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$error">error</a> = <span class="src-id">TB_ERR_DB</span><span class="src-sym">;</span></li> ! <li><a name="a356"></a> <span class="src-key">return </span><span class="src-id">FALSE</span><span class="src-sym">;</span></li> ! <li><a name="a357"></a> </span><span class="src-str"><span class="src-sym">}</span></span></li> ! <li><a name="a358"></a></span><span class="src-str"> <span class="src-key">if</span> <span class="src-sym">((</span><span class="src-var">$row</span> = <span class="src-var">$rs</span></span><span class="src-sym">-></span><span class="src-id">Row</span><span class="src-sym">(</span><span class="src-sym">)) </span>=== <span class="src-id">FALSE</span><span class="src-sym">) </span><span class="src-str"></span><span class="src-sym">{</span></span></li> ! <li><a name="a359"></a></span><span class="src-str"> <span class="src-var">$this</span></span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$error">error</a> = <span class="src-id">TB_ERR_DB</span><span class="src-sym">;</span></li> ! <li><a name="a360"></a> <span class="src-key">return </span><span class="src-id">FALSE</span><span class="src-sym">;</span></li> ! <li><a name="a361"></a> </span><span class="src-str"><span class="src-sym">}</span></span></li> ! <li><a name="a362"></a></span><span class="src-str"> <span class="src-var">$rs</span></span><span class="src-sym">-></span><span class="src-id">Close</span><span class="src-sym">(</span><span class="src-sym">)</span><span class="src-sym">;</span></li> ! <li><a name="a363"></a> <span class="src-key">return </span>(int)<span class="src-id">ceil</span><span class="src-sym">(</span><span class="src-var">$row</span><span class="src-sym">[</span><span class="src-str">'cnt'</span><span class="src-sym">] </span>/ <span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$list_recspage">list_recspage</a><span class="src-sym">)</span><span class="src-sym">;</span></li> ! <li><a name="a364"></a> </span><span class="src-str"><span class="src-sym">}</span></span></li> ! <li><a name="a365"></a> </li> ! <li><a name="a366"></a></span><span class="src-str"> /**</span></li> ! <li><a name="a367"></a></span><span class="src-str"> * Outputs a form for inserting/editing records.</span></li> ! <li><a name="a368"></a></span><span class="src-str"> *</span></li> ! <li><a name="a369"></a></span><span class="src-str"> * @param string $name The HTML FORM name.</span></li> ! <li><a name="a370"></a></span><span class="src-str"> * @param string $action Where to submit the data to.</span></li> ! <li><a name="a371"></a></span><span class="src-str"> * @param string $submit HTML containing the last line in a form, leave NULL to use a normal submit button.</span></li> ! <li><a name="a372"></a></span><span class="src-str"> * @param array $data Array containing the data to seek as 'field' => 'value'.</span></li> ! <li><a name="a373"></a></span><span class="src-str"> * @return bool Returns TRUE on success, FALSE on error.</span></li> ! <li><a name="a374"></a></span><span class="src-str"> */</span></li> ! <li><a name="a375"></a></span><span class="src-str"> <span class="src-key">function</span> <span class="src-id">ShowForm</span><span class="src-sym">(</span><span class="src-var">$name</span><span class="src-sym">,</span> <span class="src-var">$action</span><span class="src-sym">,</span> <span class="src-var">$image</span> = <span class="src-id">NULL</span><span class="src-sym">,</span> <span class="src-var">$data</span> = <span class="src-id">NULL</span><span class="src-sym">)</span></span></li> ! <li><a name="a376"></a></span><span class="src-str"> <span class="src-sym">{</span></span></li> ! <li><a name="a377"></a></span><span class="src-str"> <span class="src-key">global</span> <span class="src-var">$vortex_msgs</span><span class="src-sym">;</span></span></li> ! <li><a name="a378"></a></span><span class="src-str"> <span class="src-key">if</span> <span class="src-sym">(</span><span class="src-sym">!</span><span class="src-key">empty</span><span class="src-sym">(</span><span class="src-var">$data</span><span class="src-sym">))</span> <span class="src-key">if</span> <span class="src-sym">(</span><span class="src-sym">!</span><span class="src-var">$this</span></span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#methodSeek">Seek</a><span class="src-sym">(</span><span class="src-var">$data</span><span class="src-sym">)) </span><span class="src-key">return </span><span class="src-id">FALSE</span><span class="src-sym">;</span></li> ! <li><a name="a379"></a> echo <<<END</li> ! <li><a name="a380"></a><<span class="src-id">div class</span>="<span class="src-id">div_form</span>"></li> ! <li><a name="a381"></a><<span class="src-id">script language</span>="<span class="src-id">javascript</span>"></li> ! <li><a name="a382"></a><span class="src-id">function Submit_</span>{<span class="src-var">$name</span><span class="src-str"></span><span class="src-sym">}</span>(<span class="src-id">frm</span>)</span></li> ! <li><a name="a383"></a></span><span class="src-str"><span class="src-sym">{</span></span></li> ! <li><a name="a384"></a></span><span class="src-str"> <span class="src-id">var</span> <span class="src-id">errors</span> = '';</span></li> <li><a name="a385"></a> </li> ! <li><a name="a386"></a> </li> ! <li><a name="a387"></a></span><span class="src-str">END<span class="src-sym">;</span> <span class="src-key">foreach</span> <span class="src-sym">(</span><span class="src-var">$this</span></span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$fields_form">fields_form</a> <span class="src-key">as </span><span class="src-var">$field</span><span class="src-sym">) </span><span class="src-str"></span><span class="src-sym">{</span></span></li> ! <li><a name="a388"></a></span><span class="src-str"> <span class="src-var">$field</span></span><span class="src-sym">-></span><span class="src-id">JSConsist</span><span class="src-sym">(</span><span class="src-sym">)</span><span class="src-sym">;</span></li> ! <li><a name="a389"></a> </span><span class="src-str"><span class="src-sym">}</span></span></li> ! <li><a name="a390"></a></span><span class="src-str"> echo <<<END</span></li> ! <li><a name="a391"></a> </li> ! <li><a name="a392"></a></span><span class="src-str"> <span class="src-id">if</span> (<span class="src-id">errors</span> != '') <span class="src-sym">{</span></span></li> ! <li><a name="a393"></a></span><span class="src-str"> <span class="src-id">alert</span>("</span>{<span class="src-var">$vortex_msgs</span><span class="src-sym">[</span><span class="src-str">'consist_error'</span><span class="src-sym">]</span><span class="src-str"></span><span class="src-sym">}</span>\\<span class="src-id">n</span>\\<span class="src-id">n</span>"+<span class="src-id">errors</span>);</span></li> ! <li><a name="a394"></a></span><span class="src-str"> <span class="src-id">return</span> <span class="src-id">false</span>;</span></li> ! <li><a name="a395"></a></span><span class="src-str"> <span class="src-sym">}</span></span></li> ! <li><a name="a396"></a></span><span class="src-str"> <span class="src-id">return</span> <span class="src-id">true</span>;</span></li> ! <li><a name="a397"></a></span><span class="src-str"><span class="src-sym">}</span></span></li> ! <li><a name="a398"></a></span><span class="src-str"></<span class="src-id">script</span>></span></li> ! <li><a name="a399"></a></span><span class="src-str"><<span class="src-id">table</span>></span></li> ! <li><a name="a400"></a></span><span class="src-str"><<span class="src-id">form</span> <span class="src-id">name</span>="</span>{<span class="src-var">$name</span><span class="src-str"></span><span class="src-sym">}</span>" <span class="src-id">action</span>="</span>{<span class="src-var">$action</span><span class="src-str"></span><span class="src-sym">}</span>" <span class="src-id">method</span>="<span class="src-id">post</span>" <span class="src-id">onSubmit</span>="<span class="src-id">return</span> <span class="src-id">Submit_</span></span>{<span class="src-var">$name</span><span class="src-str"></span><span class="src-sym">}</span>(<span class="src-id">this</span>);"></span></li> ! <li><a name="a401"></a></span><span class="src-str"><<span class="src-id">tbody</span>></span></li> ! <li><a name="a402"></a></span><span class="src-str">END<span class="src-sym">;</span> <span class="src-key">foreach</span> <span class="src-sym">(</span><span class="src-var">$this</span></span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$fields">fields</a> <span class="src-key">as </span><span class="src-var">$field</span><span class="src-sym">) </span><span class="src-key">if </span><span class="src-sym">(</span><span class="src-var">$field</span><span class="src-sym">-></span><span class="src-id">pkey</span><span class="src-sym">) </span><span class="src-str"></span><span class="src-sym">{</span></span></li> ! <li><a name="a403"></a></span><span class="src-str"> echo <span class="src-str">"</span><<span class="src-id">input</span> <span class="src-id">type</span>='<span class="src-id">hidden</span>' <span class="src-id">name</span>='</span>{<span class="src-var">$field</span><span class="src-sym">-></span><span class="src-id">name_db</span><span class="src-str"></span><span class="src-sym">}</span>' <span class="src-id">value</span>='<span class="src-str">"</span>.<span class="src-sym">(</span><span class="src-key">empty</span><span class="src-sym">(</span><span class="src-var">$this</span></span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$data">data</a><span class="src-sym">)</span>?<span class="src-str">'-1'</span>:<span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$data">data</a><span class="src-sym">[</span><span class="src-var">$field</span><span class="src-sym">-></span><span class="src-id">name_db</span><span class="src-sym">]</span><span class="src-sym">)</span>.<span class="src-str">"' />\n"</span><span class="src-sym">;</span></li> ! <li><a name="a404"></a> </span><span class="src-str"><span class="src-sym">}</span></span></li> ! <li><a name="a405"></a></span><span class="src-str"> <span class="src-key">foreach</span> <span class="src-sym">(</span><span class="src-var">$this</span></span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$fields_form">fields_form</a> <span class="src-key">as </span><span class="src-var">$field</span><span class="src-sym">) </span><span class="src-str"></span><span class="src-sym">{</span></span></li> ! <li><a name="a406"></a></span><span class="src-str"> <span class="src-var">$field</span></span><span class="src-sym">-></span><span class="src-id">Show</span><span class="src-sym">(</span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$data">data</a><span class="src-sym">)</span><span class="src-sym">;</span></li> ! <li><a name="a407"></a> </span><span class="src-str"><span class="src-sym">}</span></span></li> ! <li><a name="a408"></a></span><span class="src-str"> <span class="src-key">if</span> <span class="src-sym">(</span><span class="src-key">empty</span><span class="src-sym">(</span><span class="src-var">$submit</span><span class="src-sym">))</span> <span class="src-sym">{</span></span></li> ! <li><a name="a409"></a></span><span class="src-str"> echo <span class="src-str">"</span><<span class="src-id">tr</span> <span class="src-id">class</span>='<span class="src-id">submit</span>' <span class="src-id">id</span>='<span class="src-id">submit_</span><span class="src-var">$name</span>'><<span class="src-id">td</span> <span class="src-id">colspan</span>='2'><<span class="src-id">input</span> <span class="src-id">type</span>='<span class="src-id">submit</span>' /></<span class="src-id">td</span>></<span class="src-id">tr</span>><span class="src-str">"</span><span class="src-sym">;</span></span></li> ! <li><a name="a410"></a></span><span class="src-str"> <span class="src-sym">}</span> <span class="src-key">else</span> <span class="src-sym">{</span></span></li> ! <li><a name="a411"></a></span><span class="src-str"> echo <span class="src-str">"</span><<span class="src-id">tr</span> <span class="src-id">class</span>='<span class="src-id">submit</span>' <span class="src-id">id</span>='<span class="src-id">submit_</span><span class="src-var">$name</span>'><<span class="src-id">td</span> <span class="src-id">colspan</span>='2'><span class="src-var">$submit</span></<span class="src-id">td</span>></<span class="src-id">tr</span>><span class="src-str">"</span><span class="src-sym">;</span></span></li> ! <li><a name="a412"></a></span><span class="src-str"> <span class="src-sym">}</span></span></li> ! <li><a name="a413"></a></span><span class="src-str"> echo <span class="src-str">"</tbody>\n</form>\n</table></div>\n"</span><span class="src-sym">;</span></span></li> ! <li><a name="a414"></a></span><span class="src-str"> <span class="src-sym">}</span></span></li> ! <li><a name="a415"></a></span><span class="src-str"><span class="src-sym">}</span></span></li> ! <li><a name="a416"></a> </li> </ol></pre> </div> <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:49 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> --- 331,435 ---- <li><a name="a317"></a></span><span class="src-str"> echo <span class="src-str">"<tr>\n"</span><span class="src-sym">;</span></span></li> <li><a name="a318"></a></span><span class="src-str"> <span class="src-key">if</span> <span class="src-sym">(</span><span class="src-sym">!</span><span class="src-key">empty</span><span class="src-sym">(</span><span class="src-var">$url</span><span class="src-sym">))</span> <span class="src-sym">{</span></span></li> ! <li><a name="a319"></a></span><span class="src-str"> <span class="src-key">foreach</span> <span class="src-sym">(</span><span class="src-var">$this</span></span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$fields">fields</a> <span class="src-key">as </span><span class="src-var">$field</span><span class="src-sym">) </span><span class="src-key">if </span><span class="src-sym">(</span><span class="src-var">$field</span><span class="src-sym">-></span><span class="src-id">pkey</span><span class="src-sym">) </span><span class="src-str"></span><span class="src-sym">{</span></span></li> ! <li><a name="a320"></a></span><span class="src-str"> <span class="src-var">$url</span></span><span class="src-sym">-></span><span class="src-id">parameters</span><span class="src-sym">[</span><span class="src-var">$field</span><span class="src-sym">-></span><span class="src-id">name_db</span><span class="src-sym">] </span>= <span class="src-var">$row</span><span class="src-sym">[</span><span class="src-var">$field</span><span class="src-sym">-></span><span class="src-id">name_db</span><span class="src-sym">]</span><span class="src-sym">;</span></li> ! <li><a name="a321"></a> </span><span class="src-str"><span class="src-sym">}</span></span></li> ! <li><a name="a322"></a></span><span class="src-str"> <span class="src-sym">}</span></span></li> ! <li><a name="a323"></a></span><span class="src-str"> <span class="src-key">foreach</span> <span class="src-sym">(</span><span class="src-var">$this</span></span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$fields_list">fields_list</a> <span class="src-key">as </span><span class="src-var">$field</span><span class="src-sym">) </span><span class="src-str"></span><span class="src-sym">{</span></span></li> ! <li><a name="a324"></a></span><span class="src-str"> echo <span class="src-str">"</span><<span class="src-id">td</span> <span class="src-id">class</span>='<span class="src-id">fd_</span></span>{<span class="src-var">$field</span><span class="src-sym">-></span><span class="src-id">name</span><span class="src-str"></span><span class="src-sym">}</span>'><span class="src-str">"</span><span class="src-sym">;</span></span></li> ! <li><a name="a325"></a></span><span class="src-str"> <span class="src-key">if</span> <span class="src-sym">(</span><span class="src-sym">!</span><span class="src-key">empty</span><span class="src-sym">(</span><span class="src-var">$url</span><span class="src-sym">))</span> echo <span class="src-str">"<a href='"</span>.<span class="src-var">$url</span></span><span class="src-sym">-></span><span class="src-id">Get</span><span class="src-sym">(</span><span class="src-sym">)</span>.<span class="src-str">"'>"</span><span class="src-sym">;</span></li> ! <li><a name="a326"></a> <span class="src-var">$field</span><span class="src-sym">-></span><span class="src-id">ShowPlain</span><span class="src-sym">(</span><span class="src-var">$row</span><span class="src-sym">[</span><span class="src-var">$field</span><span class="src-sym">-></span><span class="src-id">name_db</span><span class="src-sym">]</span><span class="src-sym">)</span><span class="src-sym">;</span></li> ! <li><a name="a327"></a> <span class="src-key">if </span><span class="src-sym">(</span><span class="src-sym">!</span><span class="src-key">empty</span><span class="src-sym">(</span><span class="src-var">$url</span><span class="src-sym">)) </span>echo <span class="src-str">'</a>'</span><span class="src-sym">;</span></li> ! <li><a name="a328"></a> echo <span class="src-str">"</td>\n"</span><span class="src-sym">;</span></li> ! <li><a name="a329"></a> </span><span class="src-str"><span class="src-sym">}</span></span></li> ! <li><a name="a330"></a></span><span class="src-str"> echo <span class="src-str">"</tr>\n"</span><span class="src-sym">;</span></span></li> ! <li><a name="a331"></a></span><span class="src-str"> <span class="src-sym">}</span></span></li> ! <li><a name="a332"></a></span><span class="src-str"> echo <span class="src-str">"</tbody>\n</table></div>\n"</span><span class="src-sym">;</span></span></li> ! <li><a name="a333"></a></span><span class="src-str"> <span class="src-key">return</span> <span class="src-id">TRUE</span><span class="src-sym">;</span></span></li> ! <li><a name="a334"></a></span><span class="src-str"> <span class="src-sym">}</span></span></li> ! <li><a name="a335"></a> </li> ! <li><a name="a336"></a></span><span class="src-str"> /**</span></li> ! <li><a name="a337"></a></span><span class="src-str"> * Gets the number of pages of a list.</span></li> ! <li><a name="a338"></a></span><span class="src-str"> *</span></li> ! <li><a name="a339"></a></span><span class="src-str"> * @param array $data Array containing the data to seek as 'field' => 'value'.</span></li> ! <li><a name="a340"></a></span><span class="src-str"> * @return int Returns the number of pages in a list or FALSE on error.</span></li> ! <li><a name="a341"></a></span><span class="src-str"> */</span></li> ! <li><a name="a342"></a></span><span class="src-str"> <span class="src-key">function</span> <span class="src-id">NumPages</span><span class="src-sym">(</span><span class="src-var">$data</span> = <span class="src-id">NULL</span><span class="src-sym">)</span></span></li> ! <li><a name="a343"></a></span><span class="src-str"> <span class="src-sym">{</span></span></li> ! <li><a name="a344"></a></span><span class="src-str"> <span class="src-var">$sql</span> = <span class="src-str">"</span><span class="src-id">SELECT</span> <span class="src-id">COUNT</span>(*) <span class="src-id">as</span> <span class="src-id">cnt</span> <span class="src-id">FROM</span> </span>{<span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$name_db">name_db</a><span class="src-sym">}</span><span class="src-str"></span><span class="src-str">"</span><span class="src-sym">;</span></span></li> ! <li><a name="a345"></a></span><span class="src-str"> <span class="src-key">if</span> <span class="src-sym">(</span><span class="src-sym">!</span><span class="src-key">empty</span><span class="src-sym">(</span><span class="src-var">$data</span><span class="src-sym">))</span> <span class="src-sym">{</span></span></li> ! <li><a name="a346"></a></span><span class="src-str"> <span class="src-var">$where</span> = <span class="src-str">''</span><span class="src-sym">;</span></span></li> ! <li><a name="a347"></a></span><span class="src-str"> <span class="src-key">foreach</span> <span class="src-sym">(</span><span class="src-var">$this</span></span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$fields">fields</a> <span class="src-key">as </span><span class="src-var">$field</span><span class="src-sym">) </span><span class="src-str"></span><span class="src-sym">{</span></span></li> ! <li><a name="a348"></a></span><span class="src-str"> <span class="src-key">if</span> <span class="src-sym">(</span>isset<span class="src-sym">(</span><span class="src-var">$data</span><span class="src-sym">[</span><span class="src-var">$field</span></span><span class="src-sym">-></span><span class="src-id">name_form</span><span class="src-sym">]</span><span class="src-sym">)) </span><span class="src-var">$where </span>.= <span class="src-sym">(</span><span class="src-id">strlen</span><span class="src-sym">(</span><span class="src-var">$where</span><span class="src-sym">)</span>?<span class="src-str">' AND '</span>:<span class="src-str">''</span><span class="src-sym">)</span>.<span class="src-var">$field</span><span class="src-sym">-></span><span class="src-id">Where</span><span class="src-sym">(</span><span class="src-var">$data</span><span class="src-sym">[</span><span class="src-var">$field</span><span class="src-sym">-></span><span class="src-id">name_form</span><span class="src-sym">]</span><span class="src-sym">)</span><span class="src-sym">;</span></li> ! <li><a name="a349"></a> </span><span class="src-str"><span class="src-sym">}</span></span></li> ! <li><a name="a350"></a></span><span class="src-str"> <span class="src-key">if</span> <span class="src-sym">(</span><span class="src-id">strlen</span><span class="src-sym">(</span><span class="src-var">$where</span><span class="src-sym">))</span> <span class="src-var">$sql</span> .= <span class="src-str">"</span> <span class="src-id">WHERE</span> <span class="src-var">$where</span><span class="src-str">"</span><span class="src-sym">;</span></span></li> ! <li><a name="a351"></a></span><span class="src-str"> <span class="src-sym">}</span></span></li> ! <li><a name="a352"></a></span><span class="src-str"> <span class="src-key">if</span> <span class="src-sym">(</span><span class="src-sym">!</span><span class="src-key">empty</span><span class="src-sym">(</span><span class="src-var">$debug</span><span class="src-sym">))</span> <span class="src-id">dv</span><span class="src-sym">(</span><span class="src-num">3</span><span class="src-sym">,</span> <span class="src-str">"NumPages SELECT"</span><span class="src-sym">,</span> <span class="src-var">$sql</span><span class="src-sym">)</span><span class="src-sym">;</span></span></li> ! <li><a name="a353"></a></span><span class="src-str"> <span class="src-key">if</span> <span class="src-sym">(</span><span class="src-sym">!</span><span class="src-sym">(</span><span class="src-var">$rs</span> = <span class="src-var">$this</span></span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$db">db</a><span class="src-sym">-></span><a href="../Vortex/DB/DB_Base.html#methodQuery">Query</a><span class="src-sym">(</span><span class="src-var">$sql</span><span class="src-sym">))) </span><span class="src-str"></span><span class="src-sym">{</span></span></li> ! <li><a name="a354"></a></span><span class="src-str"> <span class="src-var">$this</span></span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$error">error</a> = <span class="src-id">TB_ERR_DB</span><span class="src-sym">;</span></li> ! <li><a name="a355"></a> <span class="src-key">return </span><span class="src-id">FALSE</span><span class="src-sym">;</span></li> ! <li><a name="a356"></a> </span><span class="src-str"><span class="src-sym">}</span></span></li> ! <li><a name="a357"></a></span><span class="src-str"> <span class="src-key">if</span> <span class="src-sym">((</span><span class="src-var">$row</span> = <span class="src-var">$rs</span></span><span class="src-sym">-></span><span class="src-id">Row</span><span class="src-sym">(</span><span class="src-sym">)) </span>=== <span class="src-id">FALSE</span><span class="src-sym">) </span><span class="src-str"></span><span class="src-sym">{</span></span></li> ! <li><a name="a358"></a></span><span class="src-str"> <span class="src-var">$this</span></span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$error">error</a> = <span class="src-id">TB_ERR_DB</span><span class="src-sym">;</span></li> ! <li><a name="a359"></a> <span class="src-key">return </span><span class="src-id">FALSE</span><span class="src-sym">;</span></li> ! <li><a name="a360"></a> </span><span class="src-str"><span class="src-sym">}</span></span></li> ! <li><a name="a361"></a></span><span class="src-str"> <span class="src-var">$rs</span></span><span class="src-sym">-></span><span class="src-id">Close</span><span class="src-sym">(</span><span class="src-sym">)</span><span class="src-sym">;</span></li> ! <li><a name="a362"></a> <span class="src-key">return </span>(int)<span class="src-id">ceil</span><span class="src-sym">(</span><span class="src-var">$row</span><span class="src-sym">[</span><span class="src-str">'cnt'</span><span class="src-sym">] </span>/ <span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$list_recspage">list_recspage</a><span class="src-sym">)</span><span class="src-sym">;</span></li> ! <li><a name="a363"></a> </span><span class="src-str"><span class="src-sym">}</span></span></li> ! <li><a name="a364"></a> </li> ! <li><a name="a365"></a></span><span class="src-str"> /**</span></li> ! <li><a name="a366"></a></span><span class="src-str"> * Outputs a form for inserting/editing records.</span></li> ! <li><a name="a367"></a></span><span class="src-str"> *</span></li> ! <li><a name="a368"></a></span><span class="src-str"> * @param string $name The HTML FORM name.</span></li> ! <li><a name="a369"></a></span><span class="src-str"> * @param string $action Where to submit the data to.</span></li> ! <li><a name="a370"></a></span><span class="src-str"> * @param string $submit HTML containing the last line in a form, leave NULL to use a normal submit button.</span></li> ! <li><a name="a371"></a></span><span class="src-str"> * @param array $data Array containing the data to seek as 'field' => 'value'.</span></li> ! <li><a name="a372"></a></span><span class="src-str"> * @return bool Returns TRUE on success, FALSE on error.</span></li> ! <li><a name="a373"></a></span><span class="src-str"> */</span></li> ! <li><a name="a374"></a></span><span class="src-str"> <span class="src-key">function</span> <span class="src-id">ShowForm</span><span class="src-sym">(</span><span class="src-var">$name</span><span class="src-sym">,</span> <span class="src-var">$action</span><span class="src-sym">,</span> <span class="src-var">$image</span> = <span class="src-id">NULL</span><span class="src-sym">,</span> <span class="src-var">$data</span> = <span class="src-id">NULL</span><span class="src-sym">)</span></span></li> ! <li><a name="a375"></a></span><span class="src-str"> <span class="src-sym">{</span></span></li> ! <li><a name="a376"></a></span><span class="src-str"> <span class="src-key">global</span> <span class="src-var">$vortex_msgs</span><span class="src-sym">;</span></span></li> ! <li><a name="a377"></a></span><span class="src-str"> <span class="src-key">if</span> <span class="src-sym">(</span><span class="src-sym">!</span><span class="src-key">empty</span><span class="src-sym">(</span><span class="src-var">$data</span><span class="src-sym">))</span> <span class="src-key">if</span> <span class="src-sym">(</span><span class="src-sym">!</span><span class="src-var">$this</span></span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#methodSeek">Seek</a><span class="src-sym">(</span><span class="src-var">$data</span><span class="src-sym">)) </span><span class="src-key">return </span><span class="src-id">FALSE</span><span class="src-sym">;</span></li> ! <li><a name="a378"></a> echo <<<END</li> ! <li><a name="a379"></a><<span class="src-id">div class</span>="<span class="src-id">div_form</span>"></li> ! <li><a name="a380"></a><<span class="src-id">script language</span>="<span class="src-id">javascript</span>"></li> ! <li><a name="a381"></a><span class="src-id">function Submit_</span>{<span class="src-var">$name</span><span class="src-str"></span><span class="src-sym">}</span>(<span class="src-id">frm</span>)</span></li> ! <li><a name="a382"></a></span><span class="src-str"><span class="src-sym">{</span></span></li> ! <li><a name="a383"></a></span><span class="src-str"> <span class="src-id">var</span> <span class="src-id">errors</span> = '';</span></li> ! <li><a name="a384"></a> </li> <li><a name="a385"></a> </li> ! <li><a name="a386"></a></span><span class="src-str">END<span class="src-sym">;</span> <span class="src-key">foreach</span> <span class="src-sym">(</span><span class="src-var">$this</span></span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$fields_form">fields_form</a> <span class="src-key">as </span><span class="src-var">$field</span><span class="src-sym">) </span><span class="src-str"></span><span class="src-sym">{</span></span></li> ! <li><a name="a387"></a></span><span class="src-str"> <span class="src-var">$field</span></span><span class="src-sym">-></span><span class="src-id">JSConsist</span><span class="src-sym">(</span><span class="src-sym">)</span><span class="src-sym">;</span></li> ! <li><a name="a388"></a> </span><span class="src-str"><span class="src-sym">}</span></span></li> ! <li><a name="a389"></a></span><span class="src-str"> echo <<<END</span></li> ! <li><a name="a390"></a> </li> ! <li><a name="a391"></a></span><span class="src-str"> <span class="src-id">if</span> (<span class="src-id">errors</span> != '') <span class="src-sym">{</span></span></li> ! <li><a name="a392"></a></span><span class="src-str"> <span class="src-id">alert</span>("</span>{<span class="src-var">$vortex_msgs</span><span class="src-sym">[</span><span class="src-str">'consist_error'</span><span class="src-sym">]</span><span class="src-str"></span><span class="src-sym">}</span>\\<span class="src-id">n</span>\\<span class="src-id">n</span>"+<span class="src-id">errors</span>);</span></li> ! <li><a name="a393"></a></span><span class="src-str"> <span class="src-id">return</span> <span class="src-id">false</span>;</span></li> ! <li><a name="a394"></a></span><span class="src-str"> <span class="src-sym">}</span></span></li> ! <li><a name="a395"></a></span><span class="src-str"> <span class="src-id">return</span> <span class="src-id">true</span>;</span></li> ! <li><a name="a396"></a></span><span class="src-str"><span class="src-sym">}</span></span></li> ! <li><a name="a397"></a></span><span class="src-str"></<span class="src-id">script</span>></span></li> ! <li><a name="a398"></a></span><span class="src-str"><<span class="src-id">table</span>></span></li> ! <li><a name="a399"></a></span><span class="src-str"><<span class="src-id">form</span> <span class="src-id">name</span>="</span>{<span class="src-var">$name</span><span class="src-str"></span><span class="src-sym">}</span>" <span class="src-id">action</span>="</span>{<span class="src-var">$action</span><span class="src-str"></span><span class="src-sym">}</span>" <span class="src-id">method</span>="<span class="src-id">post</span>" <span class="src-id">onSubmit</span>="<span class="src-id">return</span> <span class="src-id">Submit_</span></span>{<span class="src-var">$name</span><span class="src-str"></span><span class="src-sym">}</span>(<span class="src-id">this</span>);"></span></li> ! <li><a name="a400"></a></span><span class="src-str"><<span class="src-id">tbody</span>></span></li> ! <li><a name="a401"></a></span><span class="src-str">END<span class="src-sym">;</span> <span class="src-key">foreach</span> <span class="src-sym">(</span><span class="src-var">$this</span></span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$fields">fields</a> <span class="src-key">as </span><span class="src-var">$field</span><span class="src-sym">) </span><span class="src-key">if </span><span class="src-sym">(</span><span class="src-var">$field</span><span class="src-sym">-></span><span class="src-id">pkey</span><span class="src-sym">) </span><span class="src-str"></span><span class="src-sym">{</span></span></li> ! <li><a name="a402"></a></span><span class="src-str"> echo <span class="src-str">"</span><<span class="src-id">input</span> <span class="src-id">type</span>='<span class="src-id">hidden</span>' <span class="src-id">name</span>='</span>{<span class="src-var">$field</span><span class="src-sym">-></span><span class="src-id">name_db</span><span class="src-str"></span><span class="src-sym">}</span>' <span class="src-id">value</span>='<span class="src-str">"</span>.<span class="src-sym">(</span><span class="src-key">empty</span><span class="src-sym">(</span><span class="src-var">$this</span></span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$data">data</a><span class="src-sym">)</span>?<span class="src-str">'-1'</span>:<span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$data">data</a><span class="src-sym">[</span><span class="src-var">$field</span><span class="src-sym">-></span><span class="src-id">name_db</span><span class="src-sym">]</span><span class="src-sym">)</span>.<span class="src-str">"' />\n"</span><span class="src-sym">;</span></li> ! <li><a name="a403"></a> </span><span class="src-str"><span class="src-sym">}</span></span></li> ! <li><a name="a404"></a></span><span class="src-str"> <span class="src-key">foreach</span> <span class="src-sym">(</span><span class="src-var">$this</span></span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$fields_form">fields_form</a> <span class="src-key">as </span><span class="src-var">$field</span><span class="src-sym">) </span><span class="src-str"></span><span class="src-sym">{</span></span></li> ! <li><a name="a405"></a></span><span class="src-str"> <span class="src-var">$field</span></span><span class="src-sym">-></span><span class="src-id">Show</span><span class="src-sym">(</span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$data">data</a><span class="src-sym">)</span><span class="src-sym">;</span></li> ! <li><a name="a406"></a> </span><span class="src-str"><span class="src-sym">}</span></span></li> ! <li><a name="a407"></a></span><span class="src-str"> <span class="src-key">if</span> <span class="src-sym">(</span><span class="src-key">empty</span><span class="src-sym">(</span><span class="src-var">$submit</span><span class="src-sym">))</span> <span class="src-sym">{</span></span></li> ! <li><a name="a408"></a></span><span class="src-str"> echo <span class="src-str">"</span><<span class="src-id">tr</span> <span class="src-id">class</span>='<span class="src-id">submit</span>' <span class="src-id">id</span>='<span class="src-id">submit_</span><span class="src-var">$name</span>'><<span class="src-id">td</span> <span class="src-id">colspan</span>='2'><<span class="src-id">input</span> <span class="src-id">type</span>='<span class="src-id">submit</span>' /></<span class="src-id">td</span>></<span class="src-id">tr</span>><span class="src-str">"</span><span class="src-sym">;</span></span></li> ! <li><a name="a409"></a></span><span class="src-str"> <span class="src-sym">}</span> <span class="src-key">else</span> <span class="src-sym">{</span></span></li> ! <li><a name="a410"></a></span><span class="src-str"> echo <span class="src-str">"</span><<span class="src-id">tr</span> <span class="src-id">class</span>='<span class="src-id">submit</span>' <span class="src-id">id</span>='<span class="src-id">submit_</span><span class="src-var">$name</span>'><<span class="src-id">td</span> <span class="src-id">colspan</span>='2'><span class="src-var">$submit</span></<span class="src-id">td</span>></<span class="src-id">tr</span>><span class="src-str">"</span><span class="src-sym">;</span></span></li> ! <li><a name="a411"></a></span><span class="src-str"> <span class="src-sym">}</span></span></li> ! <li><a name="a412"></a></span><span class="src-str"> echo <span class="src-str">"</tbody>\n</form>\n</table></div>\n"</span><span class="src-sym">;</span></span></li> ! <li><a name="a413"></a></span><span class="src-str"> <span class="src-sym">}</span></span></li> ! <li><a name="a414"></a></span><span class="src-str"><span class="src-sym">}</span></span></li> ! <li><a name="a415"></a> </li> </ol></pre> </div> <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:58:16 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> Index: fsource_Vortex_Util_confconf.php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/__filesource/fsource_Vortex_Util_confconf.php.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** fsource_Vortex_Util_confconf.php.html 6 Oct 2004 13:59:00 -0000 1.1 --- fsource_Vortex_Util_confconf.php.html 6 Oct 2004 20:59:29 -0000 1.2 *************** *** 32,36 **** </div> <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:33 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> --- 32,36 ---- </div> <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:57:57 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> Index: fsource_Vortex_Util_Class Template.php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/__filesource/fsource_Vortex_Util_Class Template.php.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** fsource_Vortex_Util_Class Template.php.html 6 Oct 2004 13:59:00 -0000 1.3 --- fsource_Vortex_Util_Class Template.php.html 6 Oct 2004 20:59:29 -0000 1.4 *************** *** 59,63 **** </div> <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:32 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> --- 59,63 ---- </div> <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:57:56 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> --- NEW FILE: fsource_Vortex_Util_URL.class.php.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <!-- template designed by Marco Von Ballmoos --> <title>File Source for URL.class.php</title> <link rel="stylesheet" href="../media/stylesheet.css" /> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> </head> <body> <h1>Source for file URL.class.php</h1> <p>Documentation is available at <a href="../Vortex/Util/_URL_class_php.html">URL.class.php</a></p> <div class="src-code"> <pre><ol><li><a name="a1"></a><span class="src-php"><?php</span></li> <li><a name="a2"></a><span class="src-doc">/**</span></li> <li><a name="a3"></a><span class="src-doc"> * File for class URL.</span></li> <li><a name="a4"></a><span class="src-doc"> *</span></li> <li><a name="a5"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@package</span><span class="src-doc"> Vortex</span></li> <li><a name="a6"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@subpackage</span><span class="src-doc"> Util</span></li> <li><a name="a7"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@author</span><span class="src-doc"> Thiago Ramon Gonçalves Montoya</span></li> <li><a name="a8"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@copyright</span><span class="src-doc"> Copy... [truncated message content] |
From: Thiago R. <nop...@us...> - 2004-10-06 20:59:56
|
Update of /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8958/doc/html/Vortex/Page Modified Files: SEC_Base.html SEC_Header.html SEC_Page.html SEC_Static.html _SEC_Base_class_php.html _SEC_Header_class_php.html _SEC_Page_class_php.html _SEC_Static_class_php.html Added Files: SEC_List.html SEC_ListNavigator.html _SEC_ListNavigator_class_php.html _SEC_List_class_php.html Log Message: Updating documentation Index: SEC_Base.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page/SEC_Base.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** SEC_Base.html 6 Oct 2004 13:58:59 -0000 1.3 --- SEC_Base.html 6 Oct 2004 20:59:26 -0000 1.4 *************** *** 58,61 **** --- 58,73 ---- </tr> <tr> + <td style="padding-right: 2em"><a href="../../Vortex/Page/SEC_List.html">SEC_List</a></td> + <td> + Class for Table lists sections. + </td> + </tr> + <tr> + <td style="padding-right: 2em"><a href="../../Vortex/Page/SEC_ListNavigator.html">SEC_ListNavigator</a></td> + <td> + Class for Table lists navigators. + </td> + </tr> + <tr> <td style="padding-right: 2em"><a href="../../Vortex/Page/SEC_Page.html">SEC_Page</a></td> <td> *************** *** 301,304 **** --- 313,324 ---- </li> <li> + <a href="../../Vortex/Page/SEC_List.html#methodShow">SEC_List::Show()</a> + : Outputs the section to the client. + </li> + <li> + <a href="../../Vortex/Page/SEC_ListNavigator.html#methodShow">SEC_ListNavigator::Show()</a> + : Outputs the section to the client. + </li> + <li> <a href="../../Vortex/Page/SEC_Page.html#methodShow">SEC_Page::Show()</a> : Outputs the section to the client. *************** *** 316,320 **** <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:45 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 336,340 ---- <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:58:09 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: SEC_Static.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page/SEC_Static.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** SEC_Static.html 6 Oct 2004 13:59:00 -0000 1.3 --- SEC_Static.html 6 Oct 2004 20:59:27 -0000 1.4 *************** *** 98,102 **** <div class="info-box-body"> <a name="var$code" id="$code"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 98,102 ---- <div class="info-box-body"> <a name="var$code" id="$code"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 117,121 **** </div> <a name="var$file" id="$file"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 117,121 ---- </div> <a name="var$file" id="$file"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 159,163 **** <A NAME='method_detail'></A> <a name="methodShow" id="Show"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> --- 159,163 ---- <A NAME='method_detail'></A> <a name="methodShow" id="Show"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> *************** *** 202,206 **** <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:47 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 202,206 ---- <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:58:14 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: SEC_Page.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page/SEC_Page.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** SEC_Page.html 6 Oct 2004 13:59:00 -0000 1.1 --- SEC_Page.html 6 Oct 2004 20:59:27 -0000 1.2 *************** *** 17,21 **** <div class="nav-bar"> <span class="disabled">Description</span> | ! <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) | <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) --- 17,22 ---- <div class="nav-bar"> <span class="disabled">Description</span> | ! <a href="#sec-descendents">Descendents</a> ! | <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) | <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) *************** *** 36,39 **** --- 37,65 ---- </div> + <a name="sec-descendents"></a> + <div class="info-box"> + <div class="info-box-title">Direct descendents</div> + <div class="nav-bar"> + <a href="#sec-description">Description</a> | + <span class="disabled">Descendents</span> + | <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) + | <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) + + </div> + <div class="info-box-body"> + <table cellpadding="2" cellspacing="0" class="class-table"> + <tr> + <th class="class-table-header">Class</th> + <th class="class-table-header">Description</th> + </tr> + <tr> + <td style="padding-right: 2em"><a href="../../Vortex/Debug/Test_Page.html">Test_Page</a></td> + <td> + Testing class. + </td> + </tr> + </table> + </div> + </div> *************** *** 43,46 **** --- 69,73 ---- <div class="nav-bar"> <a href="#sec-description">Description</a> | + <a href="#sec-descendents">Descendents</a> | <span class="disabled">Vars</span> (<a href="#sec-vars">details</a>) | *************** *** 56,61 **** --- 83,96 ---- <div class="var-title"> <span class="var-type">array</span> + <a href="#$header" title="details" class="var-name">$header</a> + </div> + <div class="var-title"> + <span class="var-type">array</span> <a href="#$layout" title="details" class="var-name">$layout</a> </div> + <div class="var-title"> + <span class="var-type">string</span> + <a href="#$onload" title="details" class="var-name">$onload</a> + </div> </div> </div> *************** *** 67,70 **** --- 102,106 ---- <div class="nav-bar"> <a href="#sec-description">Description</a> | + <a href="#sec-descendents">Descendents</a> | <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) *************** *** 95,98 **** --- 131,135 ---- <div class="nav-bar"> <a href="#sec-description">Description</a> | + <a href="#sec-descendents">Descendents</a> | <a href="#sec-var-summary">Vars</a> (<span class="disabled">details</span>) *************** *** 104,108 **** <div class="info-box-body"> <a name="var$content" id="$content"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 141,145 ---- <div class="info-box-body"> <a name="var$content" id="$content"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 110,114 **** <span class="var-type">array</span> <span class="var-name">$content</span> ! = <span class="var-default">array()</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Page.class.php.html#a49">49</a></span>) </span> </div> --- 147,151 ---- <span class="var-type">array</span> <span class="var-name">$content</span> ! = <span class="var-default">array()</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Page.class.php.html#a70">70</a></span>) </span> </div> *************** *** 124,127 **** --- 161,185 ---- </div> + <a name="var$header" id="$header"><!-- --></A> + <div class="evenrow"> + + <div class="var-header"> + <span class="var-title"> + <span class="var-type">array</span> + <span class="var-name">$header</span> + = <span class="var-default">array()</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Page.class.php.html#a35">35</a></span>) + </span> + </div> + + <!-- ========== Info from phpDoc block ========= --> + <p class="short-description">Array with the header of the page.</p> + <p class="description"><p>The header is an array containing the section to use as header of the page in the following form: <pre> array( 'class' => 'Section Class', // Usually SEC_Header or a descendant + 'opts' => array('Section options') );</pre> It is always sent before the BODY and all layout.</p></p> + + + + + + </div> <a name="var$layout" id="$layout"><!-- --></A> <div class="oddrow"> *************** *** 131,135 **** <span class="var-type">array</span> <span class="var-name">$layout</span> ! = <span class="var-default">array()</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Page.class.php.html#a35">35</a></span>) </span> </div> --- 189,193 ---- <span class="var-type">array</span> <span class="var-name">$layout</span> ! = <span class="var-default">array()</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Page.class.php.html#a56">56</a></span>) </span> </div> *************** *** 146,149 **** --- 204,226 ---- </div> + <a name="var$onload" id="$onload"><!-- --></A> + <div class="evenrow"> + + <div class="var-header"> + <span class="var-title"> + <span class="var-type">string</span> + <span class="var-name">$onload</span> + = <span class="var-default"> ''</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Page.class.php.html#a42">42</a></span>) + </span> + </div> + + <!-- ========== Info from phpDoc block ========= --> + <p class="short-description">JavaScript to run on the onLoad event of the BODY tag.</p> + + + + + + </div> <h4>Inherited Variables</h4> <A NAME='inherited_vars'><!-- --></A> *************** *** 163,166 **** --- 240,244 ---- <div class="nav-bar"> <a href="#sec-description">Description</a> | + <a href="#sec-descendents">Descendents</a> | <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) <a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>) *************** *** 170,177 **** <A NAME='method_detail'></A> <a name="methodSEC_Page" id="SEC_Page"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> ! <span class="method-title">Constructor SEC_Page</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Page.class.php.html#a56">56</a></span>) </div> --- 248,255 ---- <A NAME='method_detail'></A> <a name="methodSEC_Page" id="SEC_Page"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> ! <span class="method-title">Constructor SEC_Page</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Page.class.php.html#a77">77</a></span>) </div> *************** *** 196,203 **** </div> <a name="methodShow" id="Show"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> ! <span class="method-title">Show</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Page.class.php.html#a74">74</a></span>) </div> --- 274,281 ---- </div> <a name="methodShow" id="Show"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> ! <span class="method-title">Show</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Page.class.php.html#a100">100</a></span>) </div> *************** *** 239,243 **** <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:46 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 317,321 ---- <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:58:13 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- NEW FILE: SEC_List.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <!-- template designed by Marco Von Ballmoos --> <title>Docs For Class SEC_List</title> <link rel="stylesheet" href="../../media/stylesheet.css" /> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> </head> <body> <div class="page-body"> <h2 class="class-name">Class SEC_List</h2> <a name="sec-description"></a> <div class="info-box"> <div class="info-box-title">Description</div> <div class="nav-bar"> <span class="disabled">Description</span> | <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) | <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) </div> <div class="info-box-body"> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Class for Table lists sections.</p> <p class="notes"> Located in <a class="field" href="_SEC_List_class_php.html">/SEC_List.class.php</a> (line <span class="field"><a href="../..//__filesource/fsource_Vortex_Page_SEC_List.class.php.html#a21">21</a></span>) </p> <pre><a href="../../Vortex/Page/SEC_Base.html">SEC_Base</a> | --SEC_List</pre> </div> </div> <a name="sec-var-summary"></a> <div class="info-box"> <div class="info-box-title">Variable Summary</span></div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <span class="disabled">Vars</span> (<a href="#sec-vars">details</a>) | <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) </div> <div class="info-box-body"> <div class="var-summary"> <div class="var-title"> <span class="var-type">array</span> <a href="#$data" title="details" class="var-name">$data</a> </div> <div class="var-title"> <span class="var-type">array</span> <a href="#$navigator" title="details" class="var-name">$navigator</a> </div> <div class="var-title"> <span class="var-type">int</span> <a href="#$recspage" title="details" class="var-name">$recspage</a> </div> <div class="var-title"> <span class="var-type"><a href="../../Vortex/DB/TB_Base.html">TB_Base</a></span> <a href="#$table" title="details" class="var-name">$table</a> </div> <div class="var-title"> <span class="var-type"><a href="../../Vortex/Util/URL.html">URL</a></span> <a href="#$url" title="details" class="var-name">$url</a> </div> </div> </div> </div> <a name="sec-method-summary"></a> <div class="info-box"> <div class="info-box-title">Method Summary</span></div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) | <span class="disabled">Methods</span> (<a href="#sec-methods">details</a>) </div> <div class="info-box-body"> <div class="method-summary"> <div class="method-definition"> <span class="method-result">SEC_List</span> <a href="#SEC_List" title="details" class="method-name">SEC_List</a> ([<span class="var-type">array</span> <span class="var-name">$opts</span> = <span class="var-default">array()</span>], <span class="var-type"><a href="../../Vortex/DB/TB_Base.html">TB_Base</a></span> <span class="var-name">$table</span>) </div> <div class="method-definition"> <span class="method-result">void</span> <a href="#Show" title="details" class="method-name">Show</a> () </div> </div> </div> </div> <a name="sec-vars"></a> <div class="info-box"> <div class="info-box-title">Variables</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-var-summary">Vars</a> (<span class="disabled">details</span>) | <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) </div> <div class="info-box-body"> <a name="var$data" id="$data"><!-- --></A> <div class="oddrow"> <div class="var-header"> <span class="var-title"> <span class="var-type">array</span> <span class="var-name">$data</span> = <span class="var-default"> NULL</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_List.class.php.html#a63">63</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Array containing the data to seek as 'field' => 'value', used only in searches and the like.</p> </div> <a name="var$navigator" id="$navigator"><!-- --></A> <div class="evenrow"> <div class="var-header"> <span class="var-title"> <span class="var-type">array</span> <span class="var-name">$navigator</span> = <span class="var-default">array()</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_List.class.php.html#a49">49</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Array with the navigator of the list.</p> <p class="description"><p>The navigator is an array containing the section to use as navigator of the page in the following form: <pre> array( 'class' => 'Section Class', // Usually SEC_ListNavigator or a descendant 'opts' => array('Section options') );</pre> It is always sent after the list.</p></p> </div> <a name="var$recspage" id="$recspage"><!-- --></A> <div class="oddrow"> <div class="var-header"> <span class="var-title"> <span class="var-type">int</span> <span class="var-name">$recspage</span> = <span class="var-default"> -1</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_List.class.php.html#a56">56</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Number of records per page to display.</p> </div> <a name="var$table" id="$table"><!-- --></A> <div class="evenrow"> <div class="var-header"> <span class="var-title"> <span class="var-type"><a href="../../Vortex/DB/TB_Base.html">TB_Base</a></span> <span class="var-name">$table</span> = <span class="var-default"> NULL</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_List.class.php.html#a28">28</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Table to show the list from.</p> </div> <a name="var$url" id="$url"><!-- --></A> <div class="oddrow"> <div class="var-header"> <span class="var-title"> <span class="var-type"><a href="../../Vortex/Util/URL.html">URL</a></span> <span class="var-name">$url</span> = <span class="var-default"> NULL</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_List.class.php.html#a35">35</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">URL to link the table items to.</p> </div> <h4>Inherited Variables</h4> <A NAME='inherited_vars'><!-- --></A> <p>Inherited from <span class="classname"><a href="../../Vortex/Page/SEC_Base.html">SEC_Base</a></span></p> <blockquote> <span class="var-title"> <span class="var-name"><a href="../../Vortex/Page/SEC_Base.html#var$sections">SEC_Base::$sections</a></span><br> </span> </blockquote> </div> </div> <a name="sec-methods"></a> <div class="info-box"> <div class="info-box-title">Methods</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) <a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>) </div> <div class="info-box-body"> <A NAME='method_detail'></A> <a name="methodSEC_List" id="SEC_List"><!-- --></a> <div class="evenrow"> <div class="method-header"> <span class="method-title">Constructor SEC_List</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_List.class.php.html#a71">71</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Constructor: Load all parameters into member variables.</p> <div class="method-signature"> <span class="method-result">SEC_List</span> <span class="method-name"> SEC_List </span> ([<span class="var-type">array</span> <span class="var-name">$opts</span> = <span class="var-default">array()</span>], <span class="var-type"><a href="../../Vortex/DB/TB_Base.html">TB_Base</a></span> <span class="var-name">$table</span>) </div> <ul class="parameters"> <li> <span class="var-type"><a href="../../Vortex/DB/TB_Base.html">TB_Base</a></span> <span class="var-name">$table</span><span class="var-description">: Table to show the list from.</span> </li> <li> <span class="var-type">array</span> <span class="var-name">$opts</span><span class="var-description">: Parameters for the object, as 'var' => 'value'.</span> </li> </ul> </div> <a name="methodShow" id="Show"><!-- --></a> <div class="oddrow"> <div class="method-header"> <span class="method-title">Show</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_List.class.php.html#a83">83</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Outputs the section to the client.</p> <div class="method-signature"> <span class="method-result">void</span> <span class="method-name"> Show </span> () </div> <hr class="separator" /> <div class="notes">Redefinition of:</div> <dl> <dt><a href="../../Vortex/Page/SEC_Base.html#methodShow">SEC_Base::Show()</a></dt> <dd>Outputs the section to the client.</dd> </dl> </div> <h4>Inherited Methods</h4> <a name='inherited_methods'><!-- --></a> <!-- =========== Summary =========== --> <p>Inherited From <span class="classname"><a href="../../Vortex/Page/SEC_Base.html">SEC_Base</a></span></p> <blockquote> <span class="method-name"><a href="../../Vortex/Page/SEC_Base.html#methodSEC_Base">SEC_Base::SEC_Base()</a></span><br> <span class="method-name"><a href="../../Vortex/Page/SEC_Base.html#methodAddSection">SEC_Base::AddSection()</a></span><br> <span class="method-name"><a href="../../Vortex/Page/SEC_Base.html#methodDelSection">SEC_Base::DelSection()</a></span><br> <span class="method-name"><a href="../../Vortex/Page/SEC_Base.html#methodShow">SEC_Base::Show()</a></span><br> </blockquote> </div> </div> <p class="notes" id="credit"> Documentation generated on Wed, 6 Oct 2004 17:58:11 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> </html> Index: _SEC_Base_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page/_SEC_Base_class_php.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** _SEC_Base_class_php.html 6 Oct 2004 13:59:00 -0000 1.3 --- _SEC_Base_class_php.html 6 Oct 2004 20:59:27 -0000 1.4 *************** *** 62,66 **** <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:44 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 62,66 ---- <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:58:08 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: _SEC_Page_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page/_SEC_Page_class_php.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** _SEC_Page_class_php.html 6 Oct 2004 13:59:00 -0000 1.1 --- _SEC_Page_class_php.html 6 Oct 2004 20:59:27 -0000 1.2 *************** *** 69,73 **** <div class="info-box-body"> <a name="_SEC_Base_class_php"><!-- --></a> ! <div class="evenrow"> <div> --- 69,73 ---- <div class="info-box-body"> <a name="_SEC_Base_class_php"><!-- --></a> ! <div class="oddrow"> <div> *************** *** 90,94 **** <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:46 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 90,94 ---- <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:58:12 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: SEC_Header.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page/SEC_Header.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** SEC_Header.html 6 Oct 2004 13:59:00 -0000 1.1 --- SEC_Header.html 6 Oct 2004 20:59:27 -0000 1.2 *************** *** 51,54 **** --- 51,58 ---- <div class="var-summary"> <div class="var-title"> + <span class="var-type">array</span> + <a href="#$styles" title="details" class="var-name">$styles</a> + </div> + <div class="var-title"> <span class="var-type">string</span> <a href="#$title" title="details" class="var-name">$title</a> *************** *** 93,101 **** </div> <div class="info-box-body"> ! <a name="var$title" id="$title"><!-- --></A> <div class="oddrow"> <div class="var-header"> <span class="var-title"> <span class="var-type">string</span> <span class="var-name">$title</span> --- 97,124 ---- </div> <div class="info-box-body"> ! <a name="var$styles" id="$styles"><!-- --></A> <div class="oddrow"> <div class="var-header"> <span class="var-title"> + <span class="var-type">array</span> + <span class="var-name">$styles</span> + = <span class="var-default">array()</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Header.class.php.html#a35">35</a></span>) + </span> + </div> + + <!-- ========== Info from phpDoc block ========= --> + <p class="short-description">Array containing URLs to style sheets.</p> + + + + + + </div> + <a name="var$title" id="$title"><!-- --></A> + <div class="evenrow"> + + <div class="var-header"> + <span class="var-title"> <span class="var-type">string</span> <span class="var-name">$title</span> *************** *** 136,143 **** <A NAME='method_detail'></A> <a name="methodShow" id="Show"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> ! <span class="method-title">Show</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Header.class.php.html#a35">35</a></span>) </div> --- 159,166 ---- <A NAME='method_detail'></A> <a name="methodShow" id="Show"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> ! <span class="method-title">Show</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Header.class.php.html#a42">42</a></span>) </div> *************** *** 179,183 **** <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:45 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 202,206 ---- <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:58:09 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- NEW FILE: SEC_ListNavigator.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <!-- template designed by Marco Von Ballmoos --> <title>Docs For Class SEC_ListNavigator</title> <link rel="stylesheet" href="../../media/stylesheet.css" /> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> </head> <body> <div class="page-body"> <h2 class="class-name">Class SEC_ListNavigator</h2> <a name="sec-description"></a> <div class="info-box"> <div class="info-box-title">Description</div> <div class="nav-bar"> <span class="disabled">Description</span> | <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) | <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) </div> <div class="info-box-body"> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Class for Table lists navigators.</p> <p class="notes"> Located in <a class="field" href="_SEC_ListNavigator_class_php.html">/SEC_ListNavigator.class.php</a> (line <span class="field"><a href="../..//__filesource/fsource_Vortex_Page_SEC_ListNavigator.class.php.html#a21">21</a></span>) </p> <pre><a href="../../Vortex/Page/SEC_Base.html">SEC_Base</a> | --SEC_ListNavigator</pre> </div> </div> <a name="sec-var-summary"></a> <div class="info-box"> <div class="info-box-title">Variable Summary</span></div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <span class="disabled">Vars</span> (<a href="#sec-vars">details</a>) | <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) </div> <div class="info-box-body"> <div class="var-summary"> <div class="var-title"> <span class="var-type">string</span> <a href="#$key" title="details" class="var-name">$key</a> </div> <div class="var-title"> <span class="var-type">int</span> <a href="#$page" title="details" class="var-name">$page</a> </div> <div class="var-title"> <span class="var-type">int</span> <a href="#$pages" title="details" class="var-name">$pages</a> </div> <div class="var-title"> <span class="var-type"><a href="../../Vortex/Util/URL.html">URL</a></span> <a href="#$url" title="details" class="var-name">$url</a> </div> </div> </div> </div> <a name="sec-method-summary"></a> <div class="info-box"> <div class="info-box-title">Method Summary</span></div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) | <span class="disabled">Methods</span> (<a href="#sec-methods">details</a>) </div> <div class="info-box-body"> <div class="method-summary"> <div class="method-definition"> <span class="method-result">void</span> <a href="#Show" title="details" class="method-name">Show</a> () </div> </div> </div> </div> <a name="sec-vars"></a> <div class="info-box"> <div class="info-box-title">Variables</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-var-summary">Vars</a> (<span class="disabled">details</span>) | <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) </div> <div class="info-box-body"> <a name="var$key" id="$key"><!-- --></A> <div class="oddrow"> <div class="var-header"> <span class="var-title"> <span class="var-type">string</span> <span class="var-name">$key</span> = <span class="var-default"> 'page'</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_ListNavigator.class.php.html#a35">35</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Key to add the page number to into the URL.</p> </div> <a name="var$page" id="$page"><!-- --></A> <div class="evenrow"> <div class="var-header"> <span class="var-title"> <span class="var-type">int</span> <span class="var-name">$page</span> = <span class="var-default"> 0</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_ListNavigator.class.php.html#a42">42</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Current page.</p> </div> <a name="var$pages" id="$pages"><!-- --></A> <div class="oddrow"> <div class="var-header"> <span class="var-title"> <span class="var-type">int</span> <span class="var-name">$pages</span> = <span class="var-default"> 0</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_ListNavigator.class.php.html#a49">49</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Number of pages.</p> </div> <a name="var$url" id="$url"><!-- --></A> <div class="evenrow"> <div class="var-header"> <span class="var-title"> <span class="var-type"><a href="../../Vortex/Util/URL.html">URL</a></span> <span class="var-name">$url</span> = <span class="var-default"> NULL</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_ListNavigator.class.php.html#a28">28</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">URL to link the page jumps to.</p> </div> <h4>Inherited Variables</h4> <A NAME='inherited_vars'><!-- --></A> <p>Inherited from <span class="classname"><a href="../../Vortex/Page/SEC_Base.html">SEC_Base</a></span></p> <blockquote> <span class="var-title"> <span class="var-name"><a href="../../Vortex/Page/SEC_Base.html#var$sections">SEC_Base::$sections</a></span><br> </span> </blockquote> </div> </div> <a name="sec-methods"></a> <div class="info-box"> <div class="info-box-title">Methods</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) <a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>) </div> <div class="info-box-body"> <A NAME='method_detail'></A> <a name="methodShow" id="Show"><!-- --></a> <div class="oddrow"> <div class="method-header"> <span class="method-title">Show</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_ListNavigator.class.php.html#a56">56</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Outputs the section to the client.</p> <p class="description"><p>Outputs the HTML opening tags, then the content, then the HTML closing tags.</p></p> <div class="method-signature"> <span class="method-result">void</span> <span class="method-name"> Show </span> () </div> <hr class="separator" /> <div class="notes">Redefinition of:</div> <dl> <dt><a href="../../Vortex/Page/SEC_Base.html#methodShow">SEC_Base::Show()</a></dt> <dd>Outputs the section to the client.</dd> </dl> </div> <h4>Inherited Methods</h4> <a name='inherited_methods'><!-- --></a> <!-- =========== Summary =========== --> <p>Inherited From <span class="classname"><a href="../../Vortex/Page/SEC_Base.html">SEC_Base</a></span></p> <blockquote> <span class="method-name"><a href="../../Vortex/Page/SEC_Base.html#methodSEC_Base">SEC_Base::SEC_Base()</a></span><br> <span class="method-name"><a href="../../Vortex/Page/SEC_Base.html#methodAddSection">SEC_Base::AddSection()</a></span><br> <span class="method-name"><a href="../../Vortex/Page/SEC_Base.html#methodDelSection">SEC_Base::DelSection()</a></span><br> <span class="method-name"><a href="../../Vortex/Page/SEC_Base.html#methodShow">SEC_Base::Show()</a></span><br> </blockquote> </div> </div> <p class="notes" id="credit"> Documentation generated on Wed, 6 Oct 2004 17:58:12 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> </html> Index: _SEC_Header_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page/_SEC_Header_class_php.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** _SEC_Header_class_php.html 6 Oct 2004 13:59:00 -0000 1.1 --- _SEC_Header_class_php.html 6 Oct 2004 20:59:27 -0000 1.2 *************** *** 69,73 **** <div class="info-box-body"> <a name="_SEC_Base_class_php"><!-- --></a> ! <div class="oddrow"> <div> --- 69,73 ---- <div class="info-box-body"> <a name="_SEC_Base_class_php"><!-- --></a> ! <div class="evenrow"> <div> *************** *** 90,94 **** <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:45 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 90,94 ---- <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:58:09 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- NEW FILE: _SEC_List_class_php.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <!-- template designed by Marco Von Ballmoos --> <title>Docs for page SEC_List.class.php</title> <link rel="stylesheet" href="../../media/stylesheet.css" /> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> </head> <body> <div class="page-body"> <h2 class="file-name">/SEC_List.class.php</h2> <a name="sec-description"></a> <div class="info-box"> <div class="info-box-title">Description</div> <div class="nav-bar"> <span class="disabled">Description</span> | <a href="#sec-classes">Classes</a> | <a href="#sec-includes">Includes</a> </div> <div class="info-box-body"> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">File for class SEC_List.</p> <ul class="tags"> <li><span class="field">filesource:</span> <a href="../..//__filesource/fsource_Vortex_Page_SEC_List.class.php.html">Source Code for this file</a></li> <li><span class="field">license:</span> <a href="http://opensource.org/licenses/lgpl-license.php">GNU Lesser General Public License</a></li> <li><span class="field">copyright:</span> Copyright 2004, Thiago Ramon Gonçalves Montoya</li> <li><span class="field">author:</span> Thiago Ramon Gonçalves Montoya</li> </ul> </div> </div> <a name="sec-classes"></a> <div class="info-box"> <div class="info-box-title">Classes</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <span class="disabled">Classes</span> | <a href="#sec-includes">Includes</a> </div> <div class="info-box-body"> <table cellpadding="2" cellspacing="0" class="class-table"> <tr> <th class="class-table-header">Class</th> <th class="class-table-header">Description</th> </tr> <tr> <td style="padding-right: 2em; vertical-align: top"> <a href="../../Vortex/Page/SEC_List.html">SEC_List</a> </td> <td> Class for Table lists sections. </td> </tr> </table> </div> </div> <a name="sec-includes"></a> <div class="info-box"> <div class="info-box-title">Includes</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-classes">Classes</a> | <span class="disabled">Includes</span> </div> <div class="info-box-body"> <a name="_SEC_Base_class_php"><!-- --></a> <div class="evenrow"> <div> <span class="include-title"> <span class="include-type">require_once</span> (<span class="include-name"><a href="../../Vortex/Page/_SEC_Base_class_php.html">'SEC_Base.class.php'</a></span>) (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_List.class.php.html#a13">13</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Require the base class</p> </div> </div> </div> <p class="notes" id="credit"> Documentation generated on Wed, 6 Oct 2004 17:58:10 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> </html> --- NEW FILE: _SEC_ListNavigator_class_php.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <!-- template designed by Marco Von Ballmoos --> <title>Docs for page SEC_ListNavigator.class.php</title> <link rel="stylesheet" href="../../media/stylesheet.css" /> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> </head> <body> <div class="page-body"> <h2 class="file-name">/SEC_ListNavigator.class.php</h2> <a name="sec-description"></a> <div class="info-box"> <div class="info-box-title">Description</div> <div class="nav-bar"> <span class="disabled">Description</span> | <a href="#sec-classes">Classes</a> | <a href="#sec-includes">Includes</a> </div> <div class="info-box-body"> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">File for class SEC_ListNavigator.</p> <ul class="tags"> <li><span class="field">filesource:</span> <a href="../..//__filesource/fsource_Vortex_Page_SEC_ListNavigator.class.php.html">Source Code for this file</a></li> <li><span class="field">license:</span> <a href="http://opensource.org/licenses/lgpl-license.php">GNU Lesser General Public License</a></li> <li><span class="field">copyright:</span> Copyright 2004, Thiago Ramon Gonçalves Montoya</li> <li><span class="field">author:</span> Thiago Ramon Gonçalves Montoya</li> </ul> </div> </div> <a name="sec-classes"></a> <div class="info-box"> <div class="info-box-title">Classes</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <span class="disabled">Classes</span> | <a href="#sec-includes">Includes</a> </div> <div class="info-box-body"> <table cellpadding="2" cellspacing="0" class="class-table"> <tr> <th class="class-table-header">Class</th> <th class="class-table-header">Description</th> </tr> <tr> <td style="padding-right: 2em; vertical-align: top"> <a href="../../Vortex/Page/SEC_ListNavigator.html">SEC_ListNavigator</a> </td> <td> Class for Table lists navigators. </td> </tr> </table> </div> </div> <a name="sec-includes"></a> <div class="info-box"> <div class="info-box-title">Includes</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-classes">Classes</a> | <span class="disabled">Includes</span> </div> <div class="info-box-body"> <a name="_SEC_Base_class_php"><!-- --></a> <div class="evenrow"> <div> <span class="include-title"> <span class="include-type">require_once</span> (<span class="include-name"><a href="../../Vortex/Page/_SEC_Base_class_php.html">'SEC_Base.class.php'</a></span>) (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_ListNavigator.class.php.html#a13">13</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Require the base class</p> </div> </div> </div> <p class="notes" id="credit"> Documentation generated on Wed, 6 Oct 2004 17:58:11 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> </html> Index: _SEC_Static_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page/_SEC_Static_class_php.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** _SEC_Static_class_php.html 6 Oct 2004 13:59:00 -0000 1.3 --- _SEC_Static_class_php.html 6 Oct 2004 20:59:27 -0000 1.4 *************** *** 69,73 **** <div class="info-box-body"> <a name="_SEC_Base_class_php"><!-- --></a> ! <div class="evenrow"> <div> --- 69,73 ---- <div class="info-box-body"> <a name="_SEC_Base_class_php"><!-- --></a> ! <div class="oddrow"> <div> *************** *** 90,94 **** <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:47 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 90,94 ---- <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:58:13 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> |
From: Thiago R. <nop...@us...> - 2004-10-06 20:59:55
|
Update of /cvsroot/phpvortex/phpvortex/doc/html In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8958/doc/html Modified Files: classtrees_Vortex.html elementindex.html elementindex_Vortex.html errors.html index.html li_Vortex.html Log Message: Updating documentation Index: elementindex.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/elementindex.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** elementindex.html 6 Oct 2004 13:59:01 -0000 1.3 --- elementindex.html 6 Oct 2004 20:59:29 -0000 1.4 *************** *** 23,30 **** --- 23,34 ---- <a class="index-letter" href="elementindex.html#e">e</a> <a class="index-letter" href="elementindex.html#f">f</a> + <a class="index-letter" href="elementindex.html#g">g</a> + <a class="index-letter" href="elementindex.html#h">h</a> <a class="index-letter" href="elementindex.html#i">i</a> <a class="index-letter" href="elementindex.html#j">j</a> + <a class="index-letter" href="elementindex.html#k">k</a> <a class="index-letter" href="elementindex.html#l">l</a> <a class="index-letter" href="elementindex.html#n">n</a> + <a class="index-letter" href="elementindex.html#o">o</a> <a class="index-letter" href="elementindex.html#p">p</a> <a class="index-letter" href="elementindex.html#q">q</a> *************** *** 88,91 **** --- 92,102 ---- <dl> <dt class="field"> + <span class="var-title">$base</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Util/URL.html#var$base">URL::$base</a> in URL.class.php</div> + <div class="index-item-description">Base URL (everything before the ?).</div> + </dd> + <dt class="field"> <span class="method-title">Begin</span> </dt> *************** *** 238,241 **** --- 249,259 ---- </dt> <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_List.html#var$data">SEC_List::$data</a> in SEC_List.class.php</div> + <div class="index-item-description">Array containing the data to seek as 'field' => 'value', used only in searches and the like.</div> + </dd> + <dt class="field"> + <span class="var-title">$data</span> + </dt> + <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/TB_Base.html#var$data">TB_Base::$data</a> in TB_Base.class.php</div> <div class="index-item-description">Array with the current row of the table, for output, edit or search.</div> *************** *** 245,250 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_Base.html#var$db">RS_Base::$db</a> in RS_Base.class.php</div> ! <div class="index-item-description">Database.</div> </dd> <dt class="field"> --- 263,268 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/TB_Base.html#var$db">TB_Base::$db</a> in TB_Base.class.php</div> ! <div class="index-item-description">Database where the table is.</div> </dd> <dt class="field"> *************** *** 252,257 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/DB_Base.html#var$db">DB_Base::$db</a> in DB_Base.class.php</div> ! <div class="index-item-description">Database.</div> </dd> <dt class="field"> --- 270,275 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/FT_Base.html#var$db">FT_Base::$db</a> in FT_Base.class.php</div> ! <div class="index-item-description">Database where the field is.</div> </dd> <dt class="field"> *************** *** 259,264 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/FT_Base.html#var$db">FT_Base::$db</a> in FT_Base.class.php</div> ! <div class="index-item-description">Database where the field is.</div> </dd> <dt class="field"> --- 277,282 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_Base.html#var$db">RS_Base::$db</a> in RS_Base.class.php</div> ! <div class="index-item-description">Database.</div> </dd> <dt class="field"> *************** *** 266,271 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/TB_Base.html#var$db">TB_Base::$db</a> in TB_Base.class.php</div> ! <div class="index-item-description">Database where the table is.</div> </dd> <dt class="field"> --- 284,289 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/DB_Base.html#var$db">DB_Base::$db</a> in DB_Base.class.php</div> ! <div class="index-item-description">Database.</div> </dd> <dt class="field"> *************** *** 284,299 **** </dd> <dt class="field"> ! <span class="method-title">DB_Base</span> </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/DB_Base.html#methodDB_Base">DB_Base::DB_Base()</a> in DB_Base.class.php</div> ! <div class="index-item-description">Constructor: Init the object and set the parameters.</div> </dd> <dt class="field"> ! DB_Base </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/DB_Base.html">DB_Base</a> in DB_Base.class.php</div> ! <div class="index-item-description">Base class for database connections.</div> </dd> <dt class="field"> --- 302,317 ---- </dd> <dt class="field"> ! DB_Base </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/DB_Base.html">DB_Base</a> in DB_Base.class.php</div> ! <div class="index-item-description">Base class for database connections.</div> </dd> <dt class="field"> ! <span class="method-title">DB_Base</span> </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/DB_Base.html#methodDB_Base">DB_Base::DB_Base()</a> in DB_Base.class.php</div> ! <div class="index-item-description">Constructor: Init the object and set the parameters.</div> </dd> <dt class="field"> *************** *** 326,331 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/TB_Base.html#methodDelete">TB_Base::Delete()</a> in TB_Base.class.php</div> ! <div class="index-item-description">Delete a record from the table.</div> </dd> <dt class="field"> --- 344,349 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/DB_Base.html#methodDelete">DB_Base::Delete()</a> in DB_Base.class.php</div> ! <div class="index-item-description">Execute a DELETE query at the database.</div> </dd> <dt class="field"> *************** *** 333,338 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/DB_Base.html#methodDelete">DB_Base::Delete()</a> in DB_Base.class.php</div> ! <div class="index-item-description">Execute a DELETE query at the database.</div> </dd> <dt class="field"> --- 351,356 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/TB_Base.html#methodDelete">TB_Base::Delete()</a> in TB_Base.class.php</div> ! <div class="index-item-description">Delete a record from the table.</div> </dd> <dt class="field"> *************** *** 496,499 **** --- 514,547 ---- </dd> </dl> + <a name="g"></a> + <div class="index-letter-section"> + <div style="float: left" class="index-letter-title">g</div> + <div style="float: right"><a href="#top">top</a></div> + <div style="clear: both"></div> + </div> + <dl> + <dt class="field"> + <span class="method-title">Get</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Util/URL.html#methodGet">URL::Get()</a> in URL.class.php</div> + <div class="index-item-description">Gets the full URL.</div> + </dd> + </dl> + <a name="h"></a> + <div class="index-letter-section"> + <div style="float: left" class="index-letter-title">h</div> + <div style="float: right"><a href="#top">top</a></div> + <div style="clear: both"></div> + </div> + <dl> + <dt class="field"> + <span class="var-title">$header</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_Page.html#var$header">SEC_Page::$header</a> in SEC_Page.class.php</div> + <div class="index-item-description">Array with the header of the page.</div> + </dd> + </dl> <a name="i"></a> <div class="index-letter-section"> *************** *** 533,536 **** --- 581,599 ---- </dd> </dl> + <a name="k"></a> + <div class="index-letter-section"> + <div style="float: left" class="index-letter-title">k</div> + <div style="float: right"><a href="#top">top</a></div> + <div style="clear: both"></div> + </div> + <dl> + <dt class="field"> + <span class="var-title">$key</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_ListNavigator.html#var$key">SEC_ListNavigator::$key</a> in SEC_ListNavigator.class.php</div> + <div class="index-item-description">Key to add the page number to into the URL.</div> + </dd> + </dl> <a name="l"></a> <div class="index-letter-section"> *************** *** 652,655 **** --- 715,725 ---- </dd> <dt class="field"> + <span class="var-title">$navigator</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_List.html#var$navigator">SEC_List::$navigator</a> in SEC_List.class.php</div> + <div class="index-item-description">Array with the navigator of the list.</div> + </dd> + <dt class="field"> <span class="method-title">NumPages</span> </dt> *************** *** 659,662 **** --- 729,747 ---- </dd> </dl> + <a name="o"></a> + <div class="index-letter-section"> + <div style="float: left" class="index-letter-title">o</div> + <div style="float: right"><a href="#top">top</a></div> + <div style="clear: both"></div> + </div> + <dl> + <dt class="field"> + <span class="var-title">$onload</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_Page.html#var$onload">SEC_Page::$onload</a> in SEC_Page.class.php</div> + <div class="index-item-description">JavaScript to run on the onLoad event of the BODY tag.</div> + </dd> + </dl> <a name="p"></a> <div class="index-letter-section"> *************** *** 667,670 **** --- 752,776 ---- <dl> <dt class="field"> + <span class="var-title">$page</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_ListNavigator.html#var$page">SEC_ListNavigator::$page</a> in SEC_ListNavigator.class.php</div> + <div class="index-item-description">Current page.</div> + </dd> + <dt class="field"> + <span class="var-title">$pages</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_ListNavigator.html#var$pages">SEC_ListNavigator::$pages</a> in SEC_ListNavigator.class.php</div> + <div class="index-item-description">Number of pages.</div> + </dd> + <dt class="field"> + <span class="var-title">$parameters</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Util/URL.html#var$parameters">URL::$parameters</a> in URL.class.php</div> + <div class="index-item-description">URL Parameters (everything after the ?) as 'name' => 'value'.</div> + </dd> + <dt class="field"> <span class="var-title">$pkey</span> </dt> *************** *** 680,683 **** --- 786,796 ---- <div class="index-item-description">Password.</div> </dd> + <dt class="field"> + <span class="method-title">Parse</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Util/URL.html#methodParse">URL::Parse()</a> in URL.class.php</div> + <div class="index-item-description">Parse a URL into it's parts.</div> + </dd> </dl> <a name="q"></a> *************** *** 711,714 **** --- 824,834 ---- <dl> <dt class="field"> + <span class="var-title">$recspage</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_List.html#var$recspage">SEC_List::$recspage</a> in SEC_List.class.php</div> + <div class="index-item-description">Number of records per page to display.</div> + </dd> + <dt class="field"> <span class="var-title">$required</span> </dt> *************** *** 742,746 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/DB_MySQL.html#methodRollback">DB_MySQL::Rollback()</a> in DB_MySQL.class.php</div> <div class="index-item-description">Transactions: Rollback a transaction.</div> </dd> --- 862,866 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/DB_Base.html#methodRollback">DB_Base::Rollback()</a> in DB_Base.class.php</div> <div class="index-item-description">Transactions: Rollback a transaction.</div> </dd> *************** *** 749,753 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/DB_Base.html#methodRollback">DB_Base::Rollback()</a> in DB_Base.class.php</div> <div class="index-item-description">Transactions: Rollback a transaction.</div> </dd> --- 869,873 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/DB_MySQL.html#methodRollback">DB_MySQL::Rollback()</a> in DB_MySQL.class.php</div> <div class="index-item-description">Transactions: Rollback a transaction.</div> </dd> *************** *** 756,760 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_MySQL.html#methodRow">RS_MySQL::Row()</a> in RS_MySQL.class.php</div> <div class="index-item-description">Get a row from the RecordSet.</div> </dd> --- 876,880 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_Base.html#methodRow">RS_Base::Row()</a> in RS_Base.class.php</div> <div class="index-item-description">Get a row from the RecordSet.</div> </dd> *************** *** 763,767 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_Base.html#methodRow">RS_Base::Row()</a> in RS_Base.class.php</div> <div class="index-item-description">Get a row from the RecordSet.</div> </dd> --- 883,887 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_MySQL.html#methodRow">RS_MySQL::Row()</a> in RS_MySQL.class.php</div> <div class="index-item-description">Get a row from the RecordSet.</div> </dd> *************** *** 770,774 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_MySQL.html#methodRowCount">RS_MySQL::RowCount()</a> in RS_MySQL.class.php</div> <div class="index-item-description">Get the count of rows in the RecordSet.</div> </dd> --- 890,894 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_Base.html#methodRowCount">RS_Base::RowCount()</a> in RS_Base.class.php</div> <div class="index-item-description">Get the count of rows in the RecordSet.</div> </dd> *************** *** 777,796 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_Base.html#methodRowCount">RS_Base::RowCount()</a> in RS_Base.class.php</div> <div class="index-item-description">Get the count of rows in the RecordSet.</div> </dd> <dt class="field"> ! <span class="method-title">RS_Base</span> </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_Base.html#methodRS_Base">RS_Base::RS_Base()</a> in RS_Base.class.php</div> ! <div class="index-item-description">Constructor: Init the RecordSet from the result of a query.</div> </dd> <dt class="field"> ! RS_Base </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_Base.html">RS_Base</a> in RS_Base.class.php</div> ! <div class="index-item-description">Base class for RecordSets.</div> </dd> <dt class="field"> --- 897,916 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_MySQL.html#methodRowCount">RS_MySQL::RowCount()</a> in RS_MySQL.class.php</div> <div class="index-item-description">Get the count of rows in the RecordSet.</div> </dd> <dt class="field"> ! RS_Base </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_Base.html">RS_Base</a> in RS_Base.class.php</div> ! <div class="index-item-description">Base class for RecordSets.</div> </dd> <dt class="field"> ! <span class="method-title">RS_Base</span> </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_Base.html#methodRS_Base">RS_Base::RS_Base()</a> in RS_Base.class.php</div> ! <div class="index-item-description">Constructor: Init the RecordSet from the result of a query.</div> </dd> <dt class="field"> *************** *** 864,867 **** --- 984,994 ---- </dd> <dt class="field"> + <span class="var-title">$styles</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_Header.html#var$styles">SEC_Header::$styles</a> in SEC_Header.class.php</div> + <div class="index-item-description">Array containing URLs to style sheets.</div> + </dd> + <dt class="field"> <span class="method-title">Save</span> </dt> *************** *** 904,907 **** --- 1031,1067 ---- </dd> <dt class="field"> + <span class="method-title">SEC_List</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_List.html#methodSEC_List">SEC_List::SEC_List()</a> in SEC_List.class.php</div> + <div class="index-item-description">Constructor: Load all parameters into member variables.</div> + </dd> + <dt class="field"> + SEC_List + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_List.html">SEC_List</a> in SEC_List.class.php</div> + <div class="index-item-description">Class for Table lists sections.</div> + </dd> + <dt class="field"> + SEC_ListNavigator + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_ListNavigator.html">SEC_ListNavigator</a> in SEC_ListNavigator.class.php</div> + <div class="index-item-description">Class for Table lists navigators.</div> + </dd> + <dt class="field"> + <span class="include-title">SEC_ListNavigator.class.php</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/_SEC_ListNavigator_class_php.html">SEC_ListNavigator.class.php</a> in SEC_ListNavigator.class.php</div> + </dd> + <dt class="field"> + <span class="include-title">SEC_List.class.php</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/_SEC_List_class_php.html">SEC_List.class.php</a> in SEC_List.class.php</div> + </dd> + <dt class="field"> <span class="method-title">SEC_Page</span> </dt> *************** *** 947,951 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_MySQL.html#methodSetRow">RS_MySQL::SetRow()</a> in RS_MySQL.class.php</div> <div class="index-item-description">Go to a row int the RecordSet.</div> </dd> --- 1107,1111 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_Base.html#methodSetRow">RS_Base::SetRow()</a> in RS_Base.class.php</div> <div class="index-item-description">Go to a row int the RecordSet.</div> </dd> *************** *** 954,958 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_Base.html#methodSetRow">RS_Base::SetRow()</a> in RS_Base.class.php</div> <div class="index-item-description">Go to a row int the RecordSet.</div> </dd> --- 1114,1118 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_MySQL.html#methodSetRow">RS_MySQL::SetRow()</a> in RS_MySQL.class.php</div> <div class="index-item-description">Go to a row int the RecordSet.</div> </dd> *************** *** 975,979 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/SEC_Base.html#methodShow">SEC_Base::Show()</a> in SEC_Base.class.php</div> <div class="index-item-description">Outputs the section to the client.</div> </dd> --- 1135,1139 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/SEC_Header.html#methodShow">SEC_Header::Show()</a> in SEC_Header.class.php</div> <div class="index-item-description">Outputs the section to the client.</div> </dd> *************** *** 982,986 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/SEC_Header.html#methodShow">SEC_Header::Show()</a> in SEC_Header.class.php</div> <div class="index-item-description">Outputs the section to the client.</div> </dd> --- 1142,1153 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/FT_Base.html#methodShow">FT_Base::Show()</a> in FT_Base.class.php</div> ! <div class="index-item-description">Output the field as a HTML Form or just for display.</div> ! </dd> ! <dt class="field"> ! <span class="method-title">Show</span> ! </dt> ! <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/SEC_ListNavigator.html#methodShow">SEC_ListNavigator::Show()</a> in SEC_ListNavigator.class.php</div> <div class="index-item-description">Outputs the section to the client.</div> </dd> *************** *** 989,1001 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/FT_Base.html#methodShow">FT_Base::Show()</a> in FT_Base.class.php</div> ! <div class="index-item-description">Output the field as a HTML Form or just for display.</div> </dd> <dt class="field"> ! <span class="method-title">ShowForm</span> </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/FT_Base.html#methodShowForm">FT_Base::ShowForm()</a> in FT_Base.class.php</div> ! <div class="index-item-description">Output the field as a HTML Form.</div> </dd> <dt class="field"> --- 1156,1168 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/SEC_Base.html#methodShow">SEC_Base::Show()</a> in SEC_Base.class.php</div> ! <div class="index-item-description">Outputs the section to the client.</div> </dd> <dt class="field"> ! <span class="method-title">Show</span> </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/SEC_List.html#methodShow">SEC_List::Show()</a> in SEC_List.class.php</div> ! <div class="index-item-description">Outputs the section to the client.</div> </dd> <dt class="field"> *************** *** 1003,1007 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/FT_Text.html#methodShowForm">FT_Text::ShowForm()</a> in FT_Text.class.php</div> <div class="index-item-description">Output the field as a HTML Form.</div> </dd> --- 1170,1174 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/FT_Base.html#methodShowForm">FT_Base::ShowForm()</a> in FT_Base.class.php</div> <div class="index-item-description">Output the field as a HTML Form.</div> </dd> *************** *** 1014,1017 **** --- 1181,1191 ---- </dd> <dt class="field"> + <span class="method-title">ShowForm</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/DB/FT_Text.html#methodShowForm">FT_Text::ShowForm()</a> in FT_Text.class.php</div> + <div class="index-item-description">Output the field as a HTML Form.</div> + </dd> + <dt class="field"> <span class="method-title">ShowList</span> </dt> *************** *** 1024,1028 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/FT_Base.html#methodShowPlain">FT_Base::ShowPlain()</a> in FT_Base.class.php</div> <div class="index-item-description">Output the field as plain text.</div> </dd> --- 1198,1202 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/FT_Text.html#methodShowPlain">FT_Text::ShowPlain()</a> in FT_Text.class.php</div> <div class="index-item-description">Output the field as plain text.</div> </dd> *************** *** 1031,1035 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/FT_Text.html#methodShowPlain">FT_Text::ShowPlain()</a> in FT_Text.class.php</div> <div class="index-item-description">Output the field as plain text.</div> </dd> --- 1205,1209 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/FT_Base.html#methodShowPlain">FT_Base::ShowPlain()</a> in FT_Base.class.php</div> <div class="index-item-description">Output the field as plain text.</div> </dd> *************** *** 1043,1058 **** <dl> <dt class="field"> ! <span class="var-title">$title</span> </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/SEC_Header.html#var$title">SEC_Header::$title</a> in SEC_Header.class.php</div> ! <div class="index-item-description">Title of the page.</div> </dd> <dt class="field"> ! TB_Base </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/TB_Base.html">TB_Base</a> in TB_Base.class.php</div> ! <div class="index-item-description">Base class for tables in databases.</div> </dd> <dt class="field"> --- 1217,1232 ---- <dl> <dt class="field"> ! <span class="var-title">$table</span> </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/SEC_List.html#var$table">SEC_List::$table</a> in SEC_List.class.php</div> ! <div class="index-item-description">Table to show the list from.</div> </dd> <dt class="field"> ! <span class="var-title">$title</span> </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/SEC_Header.html#var$title">SEC_Header::$title</a> in SEC_Header.class.php</div> ! <div class="index-item-description">Title of the page.</div> </dd> <dt class="field"> *************** *** 1064,1067 **** --- 1238,1248 ---- </dd> <dt class="field"> + TB_Base + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/DB/TB_Base.html">TB_Base</a> in TB_Base.class.php</div> + <div class="index-item-description">Base class for tables in databases.</div> + </dd> + <dt class="field"> <span class="include-title">TB_Base.class.php</span> </dt> *************** *** 1105,1108 **** --- 1286,1296 ---- </dd> <dt class="field"> + TB_Test + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Debug/TB_Test.html">TB_Test</a> in vortex_test.php</div> + <div class="index-item-description">Testing class.</div> + </dd> + <dt class="field"> <span class="method-title">TB_Test</span> </dt> *************** *** 1111,1119 **** </dd> <dt class="field"> ! TB_Test </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Debug/TB_Test.html">TB_Test</a> in vortex_test.php</div> ! <div class="index-item-description">Testing class.</div> </dd> <dt class="field"> --- 1299,1307 ---- </dd> <dt class="field"> ! <span class="method-title">Template</span> </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Util/Template.html#methodTemplate">Template::Template()</a> in Class Template.php</div> ! <div class="index-item-description">Constructor: .</div> </dd> <dt class="field"> *************** *** 1125,1133 **** </dd> <dt class="field"> ! <span class="method-title">Template</span> </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Util/Template.html#methodTemplate">Template::Template()</a> in Class Template.php</div> ! <div class="index-item-description">Constructor: .</div> </dd> </dl> --- 1313,1327 ---- </dd> <dt class="field"> ! <span class="method-title">Test_Page</span> </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Debug/Test_Page.html#methodTest_Page">Test_Page::Test_Page()</a> in vortex_test_page.php</div> ! </dd> ! <dt class="field"> ! Test_Page ! </dt> ! <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Debug/Test_Page.html">Test_Page</a> in vortex_test_page.php</div> ! <div class="index-item-description">Testing class.</div> </dd> </dl> *************** *** 1140,1143 **** --- 1334,1351 ---- <dl> <dt class="field"> + <span class="var-title">$url</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_List.html#var$url">SEC_List::$url</a> in SEC_List.class.php</div> + <div class="index-item-description">URL to link the table items to.</div> + </dd> + <dt class="field"> + <span class="var-title">$url</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_ListNavigator.html#var$url">SEC_ListNavigator::$url</a> in SEC_ListNavigator.class.php</div> + <div class="index-item-description">URL to link the page jumps to.</div> + </dd> + <dt class="field"> <span class="var-title">$user</span> </dt> *************** *** 1153,1156 **** --- 1361,1384 ---- <div class="index-item-description">Execute a UPDATE query at the database.</div> </dd> + <dt class="field"> + URL + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Util/URL.html">URL</a> in URL.class.php</div> + <div class="index-item-description">Utility class to help the use of URLs.</div> + </dd> + <dt class="field"> + <span class="method-title">URL</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Util/URL.html#methodURL">URL::URL()</a> in URL.class.php</div> + <div class="index-item-description">Constructor: Create a new URL object with a URL, using the present page as default.</div> + </dd> + <dt class="field"> + <span class="include-title">URL.class.php</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Util/_URL_class_php.html">URL.class.php</a> in URL.class.php</div> + </dd> </dl> <a name="v"></a> *************** *** 1169,1172 **** --- 1397,1406 ---- </dd> <dt class="field"> + <span class="include-title">vortex_test_page.php</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Debug/_test_vortex_test_page_php.html">vortex_test_page.php</a> in vortex_test_page.php</div> + </dd> + <dt class="field"> <span class="include-title">vortex_test.php</span> </dt> *************** *** 1205,1212 **** --- 1439,1450 ---- <a class="index-letter" href="elementindex.html#e">e</a> <a class="index-letter" href="elementindex.html#f">f</a> + <a class="index-letter" href="elementindex.html#g">g</a> + <a class="index-letter" href="elementindex.html#h">h</a> <a class="index-letter" href="elementindex.html#i">i</a> <a class="index-letter" href="elementindex.html#j">j</a> + <a class="index-letter" href="elementindex.html#k">k</a> <a class="index-letter" href="elementindex.html#l">l</a> <a class="index-letter" href="elementindex.html#n">n</a> + <a class="index-letter" href="elementindex.html#o">o</a> <a class="index-letter" href="elementindex.html#p">p</a> <a class="index-letter" href="elementindex.html#q">q</a> Index: errors.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/errors.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** errors.html 6 Oct 2004 13:59:01 -0000 1.3 --- errors.html 6 Oct 2004 20:59:29 -0000 1.4 *************** *** 11,15 **** <a href="#Post-parsing">Post-parsing</a><br> <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:52 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> --- 11,15 ---- <a href="#Post-parsing">Post-parsing</a><br> <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:58:21 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> Index: index.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/index.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** index.html 6 Oct 2004 13:59:01 -0000 1.3 --- index.html 6 Oct 2004 20:59:29 -0000 1.4 *************** *** 5,9 **** <html xmlns="http://www.w3.org/1999/xhtml"> <head> ! <!-- Generated by phpDocumentor on Tue, 5 Oct 2004 18:34:31 -0300 --> <title>PHP Vortex Documentation</title> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> --- 5,9 ---- <html xmlns="http://www.w3.org/1999/xhtml"> <head> ! <!-- Generated by phpDocumentor on Wed, 6 Oct 2004 17:57:56 -0300 --> <title>PHP Vortex Documentation</title> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> Index: elementindex_Vortex.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/elementindex_Vortex.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** elementindex_Vortex.html 6 Oct 2004 13:59:01 -0000 1.3 --- elementindex_Vortex.html 6 Oct 2004 20:59:29 -0000 1.4 *************** *** 20,27 **** --- 20,31 ---- <a class="index-letter" href="elementindex_Vortex.html#e">e</a> <a class="index-letter" href="elementindex_Vortex.html#f">f</a> + <a class="index-letter" href="elementindex_Vortex.html#g">g</a> + <a class="index-letter" href="elementindex_Vortex.html#h">h</a> <a class="index-letter" href="elementindex_Vortex.html#i">i</a> <a class="index-letter" href="elementindex_Vortex.html#j">j</a> + <a class="index-letter" href="elementindex_Vortex.html#k">k</a> <a class="index-letter" href="elementindex_Vortex.html#l">l</a> <a class="index-letter" href="elementindex_Vortex.html#n">n</a> + <a class="index-letter" href="elementindex_Vortex.html#o">o</a> <a class="index-letter" href="elementindex_Vortex.html#p">p</a> <a class="index-letter" href="elementindex_Vortex.html#q">q</a> *************** *** 98,101 **** --- 102,112 ---- <div class="index-item-description">Transactions: Begin a new transaction.</div> </dd> + <dt class="field"> + <span class="var-title">$base</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Util/URL.html#var$base">URL::$base</a> in URL.class.php</div> + <div class="index-item-description">Base URL (everything before the ?).</div> + </dd> </dl> <a name="c"></a> *************** *** 360,363 **** --- 371,381 ---- </dd> <dt class="field"> + <span class="var-title">$data</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_List.html#var$data">SEC_List::$data</a> in SEC_List.class.php</div> + <div class="index-item-description">Array containing the data to seek as 'field' => 'value', used only in searches and the like.</div> + </dd> + <dt class="field"> <span class="method-title">DelSection</span> </dt> *************** *** 493,496 **** --- 511,544 ---- </dd> </dl> + <a name="g"></a> + <div class="index-letter-section"> + <div style="float: left" class="index-letter-title">g</div> + <div style="float: right"><a href="#top">top</a></div> + <div style="clear: both"></div> + </div> + <dl> + <dt class="field"> + <span class="method-title">Get</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Util/URL.html#methodGet">URL::Get()</a> in URL.class.php</div> + <div class="index-item-description">Gets the full URL.</div> + </dd> + </dl> + <a name="h"></a> + <div class="index-letter-section"> + <div style="float: left" class="index-letter-title">h</div> + <div style="float: right"><a href="#top">top</a></div> + <div style="clear: both"></div> + </div> + <dl> + <dt class="field"> + <span class="var-title">$header</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_Page.html#var$header">SEC_Page::$header</a> in SEC_Page.class.php</div> + <div class="index-item-description">Array with the header of the page.</div> + </dd> + </dl> <a name="i"></a> <div class="index-letter-section"> *************** *** 530,533 **** --- 578,596 ---- </dd> </dl> + <a name="k"></a> + <div class="index-letter-section"> + <div style="float: left" class="index-letter-title">k</div> + <div style="float: right"><a href="#top">top</a></div> + <div style="clear: both"></div> + </div> + <dl> + <dt class="field"> + <span class="var-title">$key</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_ListNavigator.html#var$key">SEC_ListNavigator::$key</a> in SEC_ListNavigator.class.php</div> + <div class="index-item-description">Key to add the page number to into the URL.</div> + </dd> + </dl> <a name="l"></a> <div class="index-letter-section"> *************** *** 655,658 **** --- 718,743 ---- <div class="index-item-description">Gets the number of pages of a list.</div> </dd> + <dt class="field"> + <span class="var-title">$navigator</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_List.html#var$navigator">SEC_List::$navigator</a> in SEC_List.class.php</div> + <div class="index-item-description">Array with the navigator of the list.</div> + </dd> + </dl> + <a name="o"></a> + <div class="index-letter-section"> + <div style="float: left" class="index-letter-title">o</div> + <div style="float: right"><a href="#top">top</a></div> + <div style="clear: both"></div> + </div> + <dl> + <dt class="field"> + <span class="var-title">$onload</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_Page.html#var$onload">SEC_Page::$onload</a> in SEC_Page.class.php</div> + <div class="index-item-description">JavaScript to run on the onLoad event of the BODY tag.</div> + </dd> </dl> <a name="p"></a> *************** *** 677,680 **** --- 762,793 ---- <div class="index-item-description">Password.</div> </dd> + <dt class="field"> + <span class="var-title">$page</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_ListNavigator.html#var$page">SEC_ListNavigator::$page</a> in SEC_ListNavigator.class.php</div> + <div class="index-item-description">Current page.</div> + </dd> + <dt class="field"> + <span class="var-title">$pages</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_ListNavigator.html#var$pages">SEC_ListNavigator::$pages</a> in SEC_ListNavigator.class.php</div> + <div class="index-item-description">Number of pages.</div> + </dd> + <dt class="field"> + <span class="var-title">$parameters</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Util/URL.html#var$parameters">URL::$parameters</a> in URL.class.php</div> + <div class="index-item-description">URL Parameters (everything after the ?) as 'name' => 'value'.</div> + </dd> + <dt class="field"> + <span class="method-title">Parse</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Util/URL.html#methodParse">URL::Parse()</a> in URL.class.php</div> + <div class="index-item-description">Parse a URL into it's parts.</div> + </dd> </dl> <a name="q"></a> *************** *** 831,834 **** --- 944,954 ---- <div class="index-item-description">Return an array with numeric indexes.</div> </dd> + <dt class="field"> + <span class="var-title">$recspage</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_List.html#var$recspage">SEC_List::$recspage</a> in SEC_List.class.php</div> + <div class="index-item-description">Number of records per page to display.</div> + </dd> </dl> <a name="s"></a> *************** *** 938,941 **** --- 1058,1068 ---- </dd> <dt class="field"> + <span class="var-title">$styles</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_Header.html#var$styles">SEC_Header::$styles</a> in SEC_Header.class.php</div> + <div class="index-item-description">Array containing URLs to style sheets.</div> + </dd> + <dt class="field"> <span class="method-title">SEC_Base</span> </dt> *************** *** 971,981 **** </dd> <dt class="field"> ! <span class="method-title">SEC_Page</span> </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/SEC_Page.html#methodSEC_Page">SEC_Page::SEC_Page()</a> in SEC_Page.class.php</div> <div class="index-item-description">Constructor: Load all parameters into member variables.</div> </dd> <dt class="field"> SEC_Page </dt> --- 1098,1134 ---- </dd> <dt class="field"> ! SEC_List </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/SEC_List.html">SEC_List</a> in SEC_List.class.php</div> ! <div class="index-item-description">Class for Table lists sections.</div> ! </dd> ! <dt class="field"> ! <span class="method-title">SEC_List</span> ! </dt> ! <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/SEC_List.html#methodSEC_List">SEC_List::SEC_List()</a> in SEC_List.class.php</div> <div class="index-item-description">Constructor: Load all parameters into member variables.</div> </dd> <dt class="field"> + SEC_ListNavigator + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_ListNavigator.html">SEC_ListNavigator</a> in SEC_ListNavigator.class.php</div> + <div class="index-item-description">Class for Table lists navigators.</div> + </dd> + <dt class="field"> + <span class="include-title">SEC_ListNavigator.class.php</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/_SEC_ListNavigator_class_php.html">SEC_ListNavigator.class.php</a> in SEC_ListNavigator.class.php</div> + </dd> + <dt class="field"> + <span class="include-title">SEC_List.class.php</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/_SEC_List_class_php.html">SEC_List.class.php</a> in SEC_List.class.php</div> + </dd> + <dt class="field"> SEC_Page </dt> *************** *** 985,988 **** --- 1138,1148 ---- </dd> <dt class="field"> + <span class="method-title">SEC_Page</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_Page.html#methodSEC_Page">SEC_Page::SEC_Page()</a> in SEC_Page.class.php</div> + <div class="index-item-description">Constructor: Load all parameters into member variables.</div> + </dd> + <dt class="field"> <span class="include-title">SEC_Page.class.php</span> </dt> *************** *** 1014,1017 **** --- 1174,1191 ---- </dt> <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_Page.html#methodShow">SEC_Page::Show()</a> in SEC_Page.class.php</div> + <div class="index-item-description">Outputs the section to the client.</div> + </dd> + <dt class="field"> + <span class="method-title">Show</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_ListNavigator.html#methodShow">SEC_ListNavigator::Show()</a> in SEC_ListNavigator.class.php</div> + <div class="index-item-description">Outputs the section to the client.</div> + </dd> + <dt class="field"> + <span class="method-title">Show</span> + </dt> + <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/Page/SEC_Header.html#methodShow">SEC_Header::Show()</a> in SEC_Header.class.php</div> <div class="index-item-description">Outputs the section to the client.</div> *************** *** 1028,1032 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/SEC_Page.html#methodShow">SEC_Page::Show()</a> in SEC_Page.class.php</div> <div class="index-item-description">Outputs the section to the client.</div> </dd> --- 1202,1206 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/SEC_List.html#methodShow">SEC_List::Show()</a> in SEC_List.class.php</div> <div class="index-item-description">Outputs the section to the client.</div> </dd> *************** *** 1095,1098 **** --- 1269,1279 ---- </dd> <dt class="field"> + TB_Test + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Debug/TB_Test.html">TB_Test</a> in vortex_test.php</div> + <div class="index-item-description">Testing class.</div> + </dd> + <dt class="field"> <span class="method-title">TB_Test</span> </dt> *************** *** 1101,1111 **** </dd> <dt class="field"> ! TB_Test </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Debug/TB_Test.html">TB_Test</a> in vortex_test.php</div> <div class="index-item-description">Testing class.</div> </dd> <dt class="field"> <span class="var-title">$title</span> </dt> --- 1282,1305 ---- </dd> <dt class="field"> ! <span class="method-title">Test_Page</span> </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Debug/Test_Page.html#methodTest_Page">Test_Page::Test_Page()</a> in vortex_test_page.php</div> ! </dd> ! <dt class="field"> ! Test_Page ! </dt> ! <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Debug/Test_Page.html">Test_Page</a> in vortex_test_page.php</div> <div class="index-item-description">Testing class.</div> </dd> <dt class="field"> + <span class="var-title">$table</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_List.html#var$table">SEC_List::$table</a> in SEC_List.class.php</div> + <div class="index-item-description">Table to show the list from.</div> + </dd> + <dt class="field"> <span class="var-title">$title</span> </dt> *************** *** 1150,1153 **** --- 1344,1381 ---- <div class="index-item-description">Execute a UPDATE query at the database.</div> </dd> + <dt class="field"> + <span class="var-title">$url</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_ListNavigator.html#var$url">SEC_ListNavigator::$url</a> in SEC_ListNavigator.class.php</div> + <div class="index-item-description">URL to link the page jumps to.</div> + </dd> + <dt class="field"> + <span class="var-title">$url</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_List.html#var$url">SEC_List::$url</a> in SEC_List.class.php</div> + <div class="index-item-description">URL to link the table items to.</div> + </dd> + <dt class="field"> + <span class="method-title">URL</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Util/URL.html#methodURL">URL::URL()</a> in URL.class.php</div> + <div class="index-item-description">Constructor: Create a new URL object with a URL, using the present page as default.</div> + </dd> + <dt class="field"> + URL + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Util/URL.html">URL</a> in URL.class.php</div> + <div class="index-item-description">Utility class to help the use of URLs.</div> + </dd> + <dt class="field"> + <span class="include-title">URL.class.php</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Util/_URL_class_php.html">URL.class.php</a> in URL.class.php</div> + </dd> </dl> <a name="v"></a> *************** *** 1159,1162 **** --- 1387,1396 ---- <dl> <dt class="field"> + <span class="include-title">vortex_test_page.php</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Debug/_test_vortex_test_page_php.html">vortex_test_page.php</a> in vortex_test_page.php</div> + </dd> + <dt class="field"> <span class="include-title">vortex_test.php</span> </dt> *************** *** 1202,1209 **** --- 1436,1447 ---- <a class="index-letter" href="elementindex_Vortex.html#e">e</a> <a class="index-letter" href="elementindex_Vortex.html#f">f</a> + <a class="index-letter" href="elementindex_Vortex.html#g">g</a> + <a class="index-letter" href="elementindex_Vortex.html#h">h</a> <a class="index-letter" href="elementindex_Vortex.html#i">i</a> <a class="index-letter" href="elementindex_Vortex.html#j">j</a> + <a class="index-letter" href="elementindex_Vortex.html#k">k</a> <a class="index-letter" href="elementindex_Vortex.html#l">l</a> <a class="index-letter" href="elementindex_Vortex.html#n">n</a> + <a class="index-letter" href="elementindex_Vortex.html#o">o</a> <a class="index-letter" href="elementindex_Vortex.html#p">p</a> <a class="index-letter" href="elementindex_Vortex.html#q">q</a> Index: classtrees_Vortex.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/classtrees_Vortex.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** classtrees_Vortex.html 6 Oct 2004 13:59:01 -0000 1.3 --- classtrees_Vortex.html 6 Oct 2004 20:59:29 -0000 1.4 *************** *** 35,39 **** <ul> <li><a href="Vortex/Page/SEC_Base.html">SEC_Base</a><ul> ! <li><a href="Vortex/Page/SEC_Header.html">SEC_Header</a></li><li><a href="Vortex/Page/SEC_Page.html">SEC_Page</a></li><li><a href="Vortex/Page/SEC_Static.html">SEC_Static</a></li></ul></li> </ul> --- 35,41 ---- <ul> <li><a href="Vortex/Page/SEC_Base.html">SEC_Base</a><ul> ! <li><a href="Vortex/Page/SEC_Header.html">SEC_Header</a></li><li><a href="Vortex/Page/SEC_List.html">SEC_List</a></li><li><a href="Vortex/Page/SEC_ListNavigator.html">SEC_ListNavigator</a></li><li><a href="Vortex/Page/SEC_Page.html">SEC_Page</a><ul> ! <li><a href="Vortex/Debug/Test_Page.html">Test_Page</a></li></ul></li> ! <li><a href="Vortex/Page/SEC_Static.html">SEC_Static</a></li></ul></li> </ul> *************** *** 48,53 **** <li><a href="Vortex/Util/Template.html">Template</a></li></ul> <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:31 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> --- 50,59 ---- <li><a href="Vortex/Util/Template.html">Template</a></li></ul> + <h2>Root class URL</h2> + <ul> + <li><a href="Vortex/Util/URL.html">URL</a></li></ul> + <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:57:56 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> Index: li_Vortex.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/li_Vortex.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** li_Vortex.html 6 Oct 2004 13:59:01 -0000 1.3 --- li_Vortex.html 6 Oct 2004 20:59:29 -0000 1.4 *************** *** 56,59 **** --- 56,60 ---- <dt class="folder-title">Classes</dt> <dd><a href='Vortex/Debug/TB_Test.html' target='right'>TB_Test</a></dd> + <dd><a href='Vortex/Debug/Test_Page.html' target='right'>Test_Page</a></dd> <dt class="folder-title">Functions</dt> <dd><a href='Vortex/Debug/_debug_php.html#functiond' target='right'>d</a></dd> *************** *** 64,67 **** --- 65,69 ---- <dd><a href='Vortex/Debug/_d_header_php.html' target='right'>d_header.php</a></dd> <dd><a href='Vortex/Debug/_test_vortex_test_php.html' target='right'>vortex_test.php</a></dd> + <dd><a href='Vortex/Debug/_test_vortex_test_page_php.html' target='right'>vortex_test_page.php</a></dd> </dl> </dd> *************** *** 76,79 **** --- 78,83 ---- <dd><a href='Vortex/Page/SEC_Base.html' target='right'>SEC_Base</a></dd> <dd><a href='Vortex/Page/SEC_Header.html' target='right'>SEC_Header</a></dd> + <dd><a href='Vortex/Page/SEC_List.html' target='right'>SEC_List</a></dd> + <dd><a href='Vortex/Page/SEC_ListNavigator.html' target='right'>SEC_ListNavigator</a></dd> <dd><a href='Vortex/Page/SEC_Page.html' target='right'>SEC_Page</a></dd> <dd><a href='Vortex/Page/SEC_Static.html' target='right'>SEC_Static</a></dd> *************** *** 81,84 **** --- 85,90 ---- <dd><a href='Vortex/Page/_SEC_Base_class_php.html' target='right'>SEC_Base.class.php</a></dd> <dd><a href='Vortex/Page/_SEC_Header_class_php.html' target='right'>SEC_Header.class.php</a></dd> + <dd><a href='Vortex/Page/_SEC_List_class_php.html' target='right'>SEC_List.class.php</a></dd> + <dd><a href='Vortex/Page/_SEC_ListNavigator_class_php.html' target='right'>SEC_ListNavigator.class.php</a></dd> <dd><a href='Vortex/Page/_SEC_Page_class_php.html' target='right'>SEC_Page.class.php</a></dd> <dd><a href='Vortex/Page/_SEC_Static_class_php.html' target='right'>SEC_Static.class.php</a></dd> *************** *** 94,97 **** --- 100,104 ---- <dt class="folder-title">Classes</dt> <dd><a href='Vortex/Util/Template.html' target='right'>Template</a></dd> + <dd><a href='Vortex/Util/URL.html' target='right'>URL</a></dd> <dt class="folder-title">Files</dt> <dd><a href='Vortex/Util/_Class Template_php.html' target='right'>Class Template.php</a></dd> *************** *** 99,102 **** --- 106,110 ---- <dd><a href='Vortex/Util/_conf_lang_en_php.html' target='right'>lang_en.php</a></dd> <dd><a href='Vortex/Util/_conf_lang_pt_br_php.html' target='right'>lang_pt_br.php</a></dd> + <dd><a href='Vortex/Util/_URL_class_php.html' target='right'>URL.class.php</a></dd> </dl> </dd> |
Update of /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Util In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8958/doc/html/Vortex/Util Modified Files: Template.html _Class Template_php.html _conf_conf_php.html _conf_lang_en_php.html _conf_lang_pt_br_php.html Added Files: URL.html _URL_class_php.html Log Message: Updating documentation --- NEW FILE: _URL_class_php.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <!-- template designed by Marco Von Ballmoos --> <title>Docs for page URL.class.php</title> <link rel="stylesheet" href="../../media/stylesheet.css" /> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> </head> <body> <div class="page-body"> <h2 class="file-name">/URL.class.php</h2> <a name="sec-description"></a> <div class="info-box"> <div class="info-box-title">Description</div> <div class="nav-bar"> <span class="disabled">Description</span> | <a href="#sec-classes">Classes</a> </div> <div class="info-box-body"> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">File for class URL.</p> <ul class="tags"> <li><span class="field">filesource:</span> <a href="../..//__filesource/fsource_Vortex_Util_URL.class.php.html">Source Code for this file</a></li> <li><span class="field">license:</span> <a href="http://opensource.org/licenses/lgpl-license.php">GNU Lesser General Public License</a></li> <li><span class="field">copyright:</span> Copyright 2004, Thiago Ramon Gonçalves Montoya</li> <li><span class="field">author:</span> Thiago Ramon Gonçalves Montoya</li> </ul> </div> </div> <a name="sec-classes"></a> <div class="info-box"> <div class="info-box-title">Classes</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <span class="disabled">Classes</span> </div> <div class="info-box-body"> <table cellpadding="2" cellspacing="0" class="class-table"> <tr> <th class="class-table-header">Class</th> <th class="class-table-header">Description</th> </tr> <tr> <td style="padding-right: 2em; vertical-align: top"> <a href="../../Vortex/Util/URL.html">URL</a> </td> <td> Utility class to help the use of URLs. </td> </tr> </table> </div> </div> <p class="notes" id="credit"> Documentation generated on Wed, 6 Oct 2004 17:58:17 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> </html> --- NEW FILE: URL.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <!-- template designed by Marco Von Ballmoos --> <title>Docs For Class URL</title> <link rel="stylesheet" href="../../media/stylesheet.css" /> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> </head> <body> <div class="page-body"> <h2 class="class-name">Class URL</h2> <a name="sec-description"></a> <div class="info-box"> <div class="info-box-title">Description</div> <div class="nav-bar"> <span class="disabled">Description</span> | <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) | <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) </div> <div class="info-box-body"> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Utility class to help the use of URLs.</p> <p class="notes"> Located in <a class="field" href="_URL_class_php.html">/URL.class.php</a> (line <span class="field"><a href="../..//__filesource/fsource_Vortex_Util_URL.class.php.html#a18">18</a></span>) </p> <pre></pre> </div> </div> <a name="sec-var-summary"></a> <div class="info-box"> <div class="info-box-title">Variable Summary</span></div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <span class="disabled">Vars</span> (<a href="#sec-vars">details</a>) | <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) </div> <div class="info-box-body"> <div class="var-summary"> <div class="var-title"> <span class="var-type">string</span> <a href="#$base" title="details" class="var-name">$base</a> </div> <div class="var-title"> <span class="var-type">array</span> <a href="#$parameters" title="details" class="var-name">$parameters</a> </div> </div> </div> </div> <a name="sec-method-summary"></a> <div class="info-box"> <div class="info-box-title">Method Summary</span></div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) | <span class="disabled">Methods</span> (<a href="#sec-methods">details</a>) </div> <div class="info-box-body"> <div class="method-summary"> <div class="method-definition"> <span class="method-result">URL</span> <a href="#URL" title="details" class="method-name">URL</a> ([<span class="var-type">mixed</span> <span class="var-name">$url</span> = <span class="var-default">''</span>]) </div> <div class="method-definition"> <span class="method-result">string</span> <a href="#Get" title="details" class="method-name">Get</a> () </div> <div class="method-definition"> <span class="method-result">void</span> <a href="#Parse" title="details" class="method-name">Parse</a> (<span class="var-type">string</span> <span class="var-name">$url</span>) </div> </div> </div> </div> <a name="sec-vars"></a> <div class="info-box"> <div class="info-box-title">Variables</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-var-summary">Vars</a> (<span class="disabled">details</span>) | <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) </div> <div class="info-box-body"> <a name="var$base" id="$base"><!-- --></A> <div class="oddrow"> <div class="var-header"> <span class="var-title"> <span class="var-type">string</span> <span class="var-name">$base</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Util_URL.class.php.html#a25">25</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Base URL (everything before the ?).</p> </div> <a name="var$parameters" id="$parameters"><!-- --></A> <div class="evenrow"> <div class="var-header"> <span class="var-title"> <span class="var-type">array</span> <span class="var-name">$parameters</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Util_URL.class.php.html#a32">32</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">URL Parameters (everything after the ?) as 'name' => 'value'.</p> </div> </div> </div> <a name="sec-methods"></a> <div class="info-box"> <div class="info-box-title">Methods</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) <a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>) </div> <div class="info-box-body"> <A NAME='method_detail'></A> <a name="methodURL" id="URL"><!-- --></a> <div class="oddrow"> <div class="method-header"> <span class="method-title">Constructor URL</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Util_URL.class.php.html#a37">37</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Constructor: Create a new URL object with a URL, using the present page as default.</p> <div class="method-signature"> <span class="method-result">URL</span> <span class="method-name"> URL </span> ([<span class="var-type">mixed</span> <span class="var-name">$url</span> = <span class="var-default">''</span>]) </div> </div> <a name="methodGet" id="Get"><!-- --></a> <div class="evenrow"> <div class="method-header"> <span class="method-title">Get</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Util_URL.class.php.html#a70">70</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Gets the full URL.</p> <ul class="tags"> <li><span class="field">return:</span> Returns the full URL.</li> </ul> <div class="method-signature"> <span class="method-result">string</span> <span class="method-name"> Get </span> () </div> </div> <a name="methodParse" id="Parse"><!-- --></a> <div class="oddrow"> <div class="method-header"> <span class="method-title">Parse</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Util_URL.class.php.html#a51">51</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Parse a URL into it's parts.</p> <div class="method-signature"> <span class="method-result">void</span> <span class="method-name"> Parse </span> (<span class="var-type">string</span> <span class="var-name">$url</span>) </div> <ul class="parameters"> <li> <span class="var-type">string</span> <span class="var-name">$url</span><span class="var-description">: URL to parse.</span> </li> </ul> </div> </div> </div> <p class="notes" id="credit"> Documentation generated on Wed, 6 Oct 2004 17:58:18 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> </html> Index: _conf_lang_en_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Util/_conf_lang_en_php.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** _conf_lang_en_php.html 6 Oct 2004 13:59:00 -0000 1.1 --- _conf_lang_en_php.html 6 Oct 2004 20:59:28 -0000 1.2 *************** *** 36,40 **** <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:41 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 36,40 ---- <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:58:05 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: _Class Template_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Util/_Class Template_php.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** _Class Template_php.html 6 Oct 2004 13:59:00 -0000 1.3 --- _Class Template_php.html 6 Oct 2004 20:59:28 -0000 1.4 *************** *** 62,66 **** <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:31 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 62,66 ---- <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:57:56 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: _conf_conf_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Util/_conf_conf_php.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** _conf_conf_php.html 6 Oct 2004 13:59:00 -0000 1.1 --- _conf_conf_php.html 6 Oct 2004 20:59:28 -0000 1.2 *************** *** 63,67 **** <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:33 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 63,67 ---- <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:57:57 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: _conf_lang_pt_br_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Util/_conf_lang_pt_br_php.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** _conf_lang_pt_br_php.html 6 Oct 2004 13:59:00 -0000 1.1 --- _conf_lang_pt_br_php.html 6 Oct 2004 20:59:28 -0000 1.2 *************** *** 36,40 **** <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:41 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 36,40 ---- <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:58:05 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: Template.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Util/Template.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Template.html 6 Oct 2004 13:59:00 -0000 1.3 --- Template.html 6 Oct 2004 20:59:27 -0000 1.4 *************** *** 187,191 **** <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:32 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 187,191 ---- <p class="notes" id="credit"> ! Documentation generated on Wed, 6 Oct 2004 17:57:56 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> |
From: Thiago R. <nop...@us...> - 2004-10-06 20:57:29
|
Update of /cvsroot/phpvortex/phpvortex In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8538 Added Files: SEC_List.class.php SEC_ListNavigator.class.php Log Message: Added the classes SEC_List and SEC_ListNavigator --- NEW FILE: SEC_List.class.php --- <?php /** * File for class SEC_List. * * @package Vortex * @subpackage Page * @author Thiago Ramon Gonçalves Montoya * @copyright Copyright 2004, Thiago Ramon Gonçalves Montoya * @license http://opensource.org/licenses/lgpl-license.php GNU Lesser General Public License */ /** Require the base class */ require_once('SEC_Base.class.php'); /** * Class for Table lists sections. * * @package Vortex * @subpackage Page */ class SEC_List extends SEC_Base { /** * Table to show the list from. * * @var TB_Base */ var $table = NULL; /** * URL to link the table items to. * * @var URL */ var $url = NULL; /** * Array with the navigator of the list. * * The navigator is an array containing the section to use as navigator of the page in the following form: * <pre> * array( 'class' => 'Section Class', // Usually SEC_ListNavigator or a descendant * 'opts' => array('Section options') ); * </pre> * It is always sent after the list. * * @var array */ var $navigator = array(); /** * Number of records per page to display. * * @var int */ var $recspage = -1; /** * Array containing the data to seek as 'field' => 'value', used only in searches and the like. * * @var array */ var $data = NULL; /** * Constructor: Load all parameters into member variables. * * @param TB_Base $table Table to show the list from. * @param array $opts Parameters for the object, as 'var' => 'value'. */ function SEC_List($opts = array()) { parent::SEC_Base($opts); if (!empty($this->navigator)) { if (empty($this->navigator['opts']['key'])) $this->navigator['opts']['key'] = "page_{$this->table->name}"; $this->AddSection("{$table->name}_list_navigator", $this->navigator['class'], $this->navigator['opts']); } } /** * Outputs the section to the client. */ function Show() { echo "<div class='div_list_full'>\n"; if ($this->recspage > 0) $this->table->list_recspage = $this->recspage; $this->table->ShowList($this->url, (!empty($_REQUEST["page_{$this->table->name}"])?$_REQUEST["page_{$this->table->name}"]:-1), $this->data); if (isset($this->sections["{$this->table->name}_list_navigator"])) { $this->sections["{$this->table->name}_list_navigator"]->page = (!empty($_REQUEST["page_{$this->table->name}"])?$_REQUEST["page_{$this->table->name}"]:-1); $this->sections["{$this->table->name}_list_navigator"]->pages = $this->table->NumPages($this->data); } parent::Show(); echo "</div>"; } } ?> --- NEW FILE: SEC_ListNavigator.class.php --- <?php /** * File for class SEC_ListNavigator. * * @package Vortex * @subpackage Page * @author Thiago Ramon Gonçalves Montoya * @copyright Copyright 2004, Thiago Ramon Gonçalves Montoya * @license http://opensource.org/licenses/lgpl-license.php GNU Lesser General Public License */ /** Require the base class */ require_once('SEC_Base.class.php'); /** * Class for Table lists navigators. * * @package Vortex * @subpackage Page */ class SEC_ListNavigator extends SEC_Base { /** * URL to link the page jumps to. * * @var URL */ var $url = NULL; /** * Key to add the page number to into the URL. * * @var string */ var $key = 'page'; /** * Current page. * * @var int */ var $page = 0; /** * Number of pages. * * @var int */ var $pages = 0; /** * Outputs the section to the client. * * Outputs the HTML opening tags, then the content, then the HTML closing tags. */ function Show() { echo "<div class='div_navi'>\n"; $start = max(0, $this->page - 3); $end = min($this->pages, $this->page + 3); if ($this->page > 0) { $this->url->parameters[$this->key] = 0; echo "<a href='".$this->url->Get()."'><<</a>"; $this->url->parameters[$this->key] = $this->page - 1; echo " <a href='".$this->url->Get()."'><</a> "; } else { echo '<< < '; } for ($i = $start; $i <= $end; $i++) { $this->url->parameters[$this->key] = $i; echo " <a href='".$this->url->Get()."'>$i</a>"; } if ($this->page < $this->pages - 1) { $this->url->parameters[$this->key] = $this->page + 1; echo " <a href='".$this->url->Get()."'>></a>"; $this->url->parameters[$this->key] = $this->pages - 1; echo " <a href='".$this->url->Get()."'>>></a><br>\n"; } else { echo " > >><br>\n"; } parent::Show(); echo "</div>"; } } ?> |
From: Thiago R. <nop...@us...> - 2004-10-06 20:56:28
|
Update of /cvsroot/phpvortex/phpvortex In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8256 Modified Files: SEC_Base.class.php Log Message: Changed SEC_Base to allow some passing by reference Index: SEC_Base.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/SEC_Base.class.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** SEC_Base.class.php 5 Oct 2004 15:12:42 -0000 1.3 --- SEC_Base.class.php 6 Oct 2004 20:56:16 -0000 1.4 *************** *** 32,36 **** { foreach ($opts as $key => $value) { ! $this->$key = $value; } } --- 32,36 ---- { foreach ($opts as $key => $value) { ! $this->$key =& $value; } } |
From: Thiago R. <nop...@us...> - 2004-10-06 19:52:59
|
Update of /cvsroot/phpvortex/phpvortex In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25543 Modified Files: SEC_Page.class.php Log Message: Added an onLoad parameter to SEC_Page Index: SEC_Page.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/SEC_Page.class.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** SEC_Page.class.php 6 Oct 2004 17:25:45 -0000 1.2 --- SEC_Page.class.php 6 Oct 2004 19:52:49 -0000 1.3 *************** *** 36,39 **** --- 36,46 ---- /** + * JavaScript to run on the onLoad event of the BODY tag. + * + * @var string + */ + var $onload = ''; + + /** * Array with the layout of the page. * *************** *** 74,78 **** $this->AddSection('header', $this->header['class'], $this->header['opts']); } ! $this->AddSection('body_open', 'SEC_Static', array('code' => "<body>\n")); if (!empty($this->layout)) { foreach ($layout as $sect) { --- 81,85 ---- $this->AddSection('header', $this->header['class'], $this->header['opts']); } ! $this->AddSection('body_open', 'SEC_Static', array('code' => "<body>".(!empty($this->onload)?" onload='{$this->onload}'":'')."\n")); if (!empty($this->layout)) { foreach ($layout as $sect) { |
From: Thiago R. <nop...@us...> - 2004-10-06 19:51:59
|
Update of /cvsroot/phpvortex/phpvortex/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25259/test Modified Files: vortex_test_page.php Log Message: Changed the class initialization in vortex_test_page.php Index: vortex_test_page.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/test/vortex_test_page.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** vortex_test_page.php 6 Oct 2004 17:23:46 -0000 1.1 --- vortex_test_page.php 6 Oct 2004 19:51:49 -0000 1.2 *************** *** 21,38 **** class Test_Page extends SEC_Page { function Test_Page() { ! $this->header = array( ! 'class' => 'SEC_Header', ! 'opts' => array( ! 'title' => 'SEC_Page test page', ! 'styles' => array('tests.css') ! ) ! ); ! $this->content = array( ! 'class' => 'SEC_Static', ! 'opts' => array( ! 'code' => 'Page content' ) ! ); ! parent::SEC_Page(array()); } } --- 21,39 ---- class Test_Page extends SEC_Page { function Test_Page() { ! parent::SEC_Page(array( ! 'header' => array( ! 'class' => 'SEC_Header', ! 'opts' => array( ! 'title' => 'SEC_Page test page', ! 'styles' => array('tests.css') ! ) ! ), ! 'content' => array( ! 'class' => 'SEC_Static', ! 'opts' => array( ! 'code' => 'Page content' ! ) ) ! )); } } |
From: Thiago R. <nop...@us...> - 2004-10-06 19:50:51
|
Update of /cvsroot/phpvortex/phpvortex/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24928/test Modified Files: vortex_test.php Log Message: Added utility class URL (and used it in TB_Base) Index: vortex_test.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/test/vortex_test.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** vortex_test.php 5 Oct 2004 19:35:10 -0000 1.8 --- vortex_test.php 6 Oct 2004 19:50:40 -0000 1.9 *************** *** 16,19 **** --- 16,21 ---- /** Require the header for the field used in the test database. */ require_once('../FT_Text.class.php'); + /** Require the header for the utility URL class. */ + require_once('../URL.class.php'); ?> <html> *************** *** 58,64 **** echo 'Added ID:'.$id3.'<br>'; echo 'List the whole database:<br>'; ! $tb->ShowList('vortex_test.php?PKEY'); echo 'List with a search ("5552"):<br>'; ! $tb->ShowList('vortex_test.php?PKEY',-1,array('ph_phone' => '5552')); echo 'Setting the number of records per page to 2.<br>'; $tb->list_recspage = 2; --- 60,66 ---- echo 'Added ID:'.$id3.'<br>'; echo 'List the whole database:<br>'; ! $tb->ShowList(new URL('vortex_test.php')); echo 'List with a search ("5552"):<br>'; ! $tb->ShowList(new URL('vortex_test.php'),-1,array('ph_phone' => '5552')); echo 'Setting the number of records per page to 2.<br>'; $tb->list_recspage = 2; *************** *** 67,71 **** for ($i=0;$i < $pgs;$i++) { echo "Page $i:<br>"; ! $tb->ShowList('vortex_test.php?PKEY',$i); } echo "Insert form:<br>"; --- 69,73 ---- for ($i=0;$i < $pgs;$i++) { echo "Page $i:<br>"; ! $tb->ShowList(new URL('vortex_test.php'),$i); } echo "Insert form:<br>"; *************** *** 82,88 **** $tb->Delete() or print('Error(Delete): '.$tb->Error()); echo '... Deleted<br>'; ! $tb->Seek(array('ph_id' => $id3), FALSE) or print('Error(Seek): '.$tb->Error()); ! echo 'Seek ID:'.$tb->data['ph_id']; ! $tb->Delete() or print('Error(Delete): '.$tb->Error()); echo '... Deleted<br>'; $db->Close(); --- 84,89 ---- $tb->Delete() or print('Error(Delete): '.$tb->Error()); echo '... Deleted<br>'; ! echo "Just Delete ID:$id3"; ! $tb->Delete(array('ph_id' => $id3)) or print('Error(Delete): '.$tb->Error()); echo '... Deleted<br>'; $db->Close(); |
From: Thiago R. <nop...@us...> - 2004-10-06 19:49:32
|
Update of /cvsroot/phpvortex/phpvortex In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24613 Modified Files: TB_Base.class.php Added Files: URL.class.php Log Message: Added utility class URL (and used it in TB_Base) --- NEW FILE: URL.class.php --- <?php /** * File for class URL. * * @package Vortex * @subpackage Util * @author Thiago Ramon Gonçalves Montoya * @copyright Copyright 2004, Thiago Ramon Gonçalves Montoya * @license http://opensource.org/licenses/lgpl-license.php GNU Lesser General Public License */ /** * Utility class to help the use of URLs. * * @package Vortex * @subpackage Util */ class URL { /** * Base URL (everything before the ?). * * @var string */ var $base; /** * URL Parameters (everything after the ?) as 'name' => 'value'. * * @var array */ var $parameters; /** * Constructor: Create a new URL object with a URL, using the present page as default. */ function URL($url = '') { if (empty($url)) { $this->Parse($_SERVER['PHP_SELF'] . (isset($_SERVER['QUERY_STRING'])?('?'.$_SERVER['QUERY_STRING']):'')); } else { $this->Parse($url); } } /** * Parse a URL into it's parts. * * @param string $url URL to parse. */ function Parse($url) { $parts = explode('?',$url); $this->base = $parts[0]; $this->parameters = array(); if (count($parts)==1) { $params = explode('&', $parts[1]); foreach ($params as $param) { $pieces = explode('=',$param); if (count($pieces)==2) $this->parameters[$pieces[0]] = $pieces[1]; } } } /** * Gets the full URL. * * @return string Returns the full URL. */ function Get() { $url = $this->base; if (!empty($this->parameters)) { $pieces = array(); foreach ($this->parameters as $key => $value) $pieces[] = "$key=$value"; $url .= '?'.implode('&',$pieces); } return $url; } } ?> Index: TB_Base.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/TB_Base.class.php,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** TB_Base.class.php 5 Oct 2004 19:35:09 -0000 1.11 --- TB_Base.class.php 6 Oct 2004 19:49:22 -0000 1.12 *************** *** 276,285 **** * Outputs a list for viewing/editing records. * ! * @param string $url URL to link the records to. The function replaces the string "PKEY" with the pkeys and values for the record. Leave blank for no links. * @param int $page Current page to show the records. Leave -1 to show all records. * @param array $data Array containing the data to seek as 'field' => 'value'. * @return bool Returns TRUE on success, FALSE on error. */ ! function ShowList($url = '', $page = -1, $data = NULL) { $fields = ''; --- 276,285 ---- * Outputs a list for viewing/editing records. * ! * @param URL $url URL to link the records to. Leave blank for no links. * @param int $page Current page to show the records. Leave -1 to show all records. * @param array $data Array containing the data to seek as 'field' => 'value'. * @return bool Returns TRUE on success, FALSE on error. */ ! function ShowList($url = NULL, $page = -1, $data = NULL) { $fields = ''; *************** *** 317,328 **** echo "<tr>\n"; if (!empty($url)) { - $pkeys = ''; foreach ($this->fields as $field) if ($field->pkey) { ! $pkeys .= (strlen($pkeys)?'&':'')."{$field->name_db}={$row[$field->name_db]}"; } } foreach ($this->fields_list as $field) { echo "<td class='fd_{$field->name}'>"; ! if (!empty($url)) echo "<a href='".str_replace('PKEY',$pkeys,$url)."'>"; $field->ShowPlain($row[$field->name_db]); if (!empty($url)) echo '</a>'; --- 317,327 ---- echo "<tr>\n"; if (!empty($url)) { foreach ($this->fields as $field) if ($field->pkey) { ! $url->parameters[$field->name_db] = $row[$field->name_db]; } } foreach ($this->fields_list as $field) { echo "<td class='fd_{$field->name}'>"; ! if (!empty($url)) echo "<a href='".$url->Get()."'>"; $field->ShowPlain($row[$field->name_db]); if (!empty($url)) echo '</a>'; |
From: Thiago R. <nop...@us...> - 2004-10-06 17:26:00
|
Update of /cvsroot/phpvortex/phpvortex In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16548 Modified Files: SEC_Header.class.php SEC_Page.class.php Log Message: Improved HEAD support in SEC_Header and SEC_Page Index: SEC_Page.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/SEC_Page.class.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** SEC_Page.class.php 6 Oct 2004 14:02:10 -0000 1.1 --- SEC_Page.class.php 6 Oct 2004 17:25:45 -0000 1.2 *************** *** 22,25 **** --- 22,39 ---- { /** + * Array with the header of the page. + * + * The header is an array containing the section to use as header of the page in the following form: + * <pre> + * array( 'class' => 'Section Class', // Usually SEC_Header or a descendant + * 'opts' => array('Section options') ); + * </pre> + * It is always sent before the BODY and all layout. + * + * @var array + */ + var $header = array(); + + /** * Array with the layout of the page. * *************** *** 57,60 **** --- 71,78 ---- { parent::SEC_Base($opts); + if (!empty($this->header)) { + $this->AddSection('header', $this->header['class'], $this->header['opts']); + } + $this->AddSection('body_open', 'SEC_Static', array('code' => "<body>\n")); if (!empty($this->layout)) { foreach ($layout as $sect) { *************** *** 65,68 **** --- 83,87 ---- $this->AddSection('content', $this->content['class'], $this->content['opts']); } + $this->AddSection('body_close', 'SEC_Static', array('code' => "</body>\n")); } Index: SEC_Header.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/SEC_Header.class.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** SEC_Header.class.php 6 Oct 2004 14:02:10 -0000 1.1 --- SEC_Header.class.php 6 Oct 2004 17:25:45 -0000 1.2 *************** *** 29,32 **** --- 29,39 ---- /** + * Array containing URLs to style sheets. + * + * @var array + */ + var $styles = array(); + + /** * Outputs the section to the client. * *************** *** 37,40 **** --- 44,50 ---- echo "<head>\n"; if (!empty($this->title)) echo "<title>{$this->title}</title>\n"; + if (!empty($this->styles)) { + foreach ($this->styles as $style) echo "<link href='$style' rel='stylesheet' type='text/css' />\n"; + } parent::Show(); echo "</head>\n"; |
From: Thiago R. <nop...@us...> - 2004-10-06 17:23:57
|
Update of /cvsroot/phpvortex/phpvortex/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15946/test Added Files: vortex_test_page.php Log Message: Adding SEC_Page test program --- NEW FILE: vortex_test_page.php --- <?php /** * Test file for the PHP Vortex project - test SEC_Page functionality. * * @package Vortex * @subpackage Debug * @author Thiago Ramon Gonçalves Montoya * @copyright Copyright 2004, Thiago Ramon Gonçalves Montoya * @license http://opensource.org/licenses/lgpl-license.php GNU Lesser General Public License */ /** Require the header for SEC_Page functionality. */ require_once('../SEC_Page.class.php'); /** * Testing class. * * @package Vortex * @subpackage Debug */ class Test_Page extends SEC_Page { function Test_Page() { $this->header = array( 'class' => 'SEC_Header', 'opts' => array( 'title' => 'SEC_Page test page', 'styles' => array('tests.css') ) ); $this->content = array( 'class' => 'SEC_Static', 'opts' => array( 'code' => 'Page content' ) ); parent::SEC_Page(array()); } } $page =& new Test_Page; $page->Show(); ?> |
From: Thiago R. <nop...@us...> - 2004-10-06 14:00:46
|
Update of /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Util In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29076/doc/html/Vortex/Util Modified Files: Template.html _Class Template_php.html Added Files: _conf_conf_php.html _conf_lang_en_php.html _conf_lang_pt_br_php.html Log Message: Updating documentation Index: _Class Template_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Util/_Class Template_php.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** _Class Template_php.html 4 Oct 2004 18:27:06 -0000 1.2 --- _Class Template_php.html 6 Oct 2004 13:59:00 -0000 1.3 *************** *** 62,66 **** <p class="notes" id="credit"> ! Documentation generated on Mon, 4 Oct 2004 15:26:30 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 62,66 ---- <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:31 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- NEW FILE: _conf_conf_php.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <!-- template designed by Marco Von Ballmoos --> <title>Docs for page conf.php</title> <link rel="stylesheet" href="../../media/stylesheet.css" /> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> </head> <body> <div class="page-body"> <h2 class="file-name">/conf/conf.php</h2> <a name="sec-description"></a> <div class="info-box"> <div class="info-box-title">Description</div> <div class="nav-bar"> <span class="disabled">Description</span> | <a href="#sec-includes">Includes</a> </div> <div class="info-box-body"> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">General configuration file for PHP Vortex with system-wide defaults.</p> <ul class="tags"> <li><span class="field">filesource:</span> <a href="../..//__filesource/fsource_Vortex_Util_confconf.php.html">Source Code for this file</a></li> <li><span class="field">license:</span> <a href="http://opensource.org/licenses/lgpl-license.php">GNU Lesser General Public License</a></li> <li><span class="field">copyright:</span> Copyright 2004, Thiago Ramon Gonçalves Montoya</li> <li><span class="field">author:</span> Thiago Ramon Gonçalves Montoya</li> </ul> </div> </div> <a name="sec-includes"></a> <div class="info-box"> <div class="info-box-title">Includes</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <span class="disabled">Includes</span> </div> <div class="info-box-body"> <a name="_lang_en_php"><!-- --></a> <div class="oddrow"> <div> <span class="include-title"> <span class="include-type">require_once</span> (<span class="include-name"><a href="../../Vortex/Util/_conf_lang_en_php.html">'lang_en.php'</a></span>) (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Util_confconf.php.html#a13">13</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">require one of the localized message files</p> </div> </div> </div> <p class="notes" id="credit"> Documentation generated on Tue, 5 Oct 2004 18:34:33 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> </html> Index: Template.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Util/Template.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Template.html 4 Oct 2004 18:27:06 -0000 1.2 --- Template.html 6 Oct 2004 13:59:00 -0000 1.3 *************** *** 187,191 **** <p class="notes" id="credit"> ! Documentation generated on Mon, 4 Oct 2004 15:26:30 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 187,191 ---- <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:32 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- NEW FILE: _conf_lang_pt_br_php.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <!-- template designed by Marco Von Ballmoos --> <title>Docs for page lang_pt_br.php</title> <link rel="stylesheet" href="../../media/stylesheet.css" /> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> </head> <body> <div class="page-body"> <h2 class="file-name">/conf/lang_pt_br.php</h2> <a name="sec-description"></a> <div class="info-box"> <div class="info-box-title">Description</div> <div class="nav-bar"> </div> <div class="info-box-body"> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">File with messages for output in PT-BR.</p> <ul class="tags"> <li><span class="field">filesource:</span> <a href="../..//__filesource/fsource_Vortex_Util_conflang_pt_br.php.html">Source Code for this file</a></li> <li><span class="field">license:</span> <a href="http://opensource.org/licenses/lgpl-license.php">GNU Lesser General Public License</a></li> <li><span class="field">copyright:</span> Copyright 2004, Thiago Ramon Gonçalves Montoya</li> <li><span class="field">author:</span> Thiago Ramon Gonçalves Montoya</li> </ul> </div> </div> <p class="notes" id="credit"> Documentation generated on Tue, 5 Oct 2004 18:34:41 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> </html> --- NEW FILE: _conf_lang_en_php.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <!-- template designed by Marco Von Ballmoos --> <title>Docs for page lang_en.php</title> <link rel="stylesheet" href="../../media/stylesheet.css" /> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> </head> <body> <div class="page-body"> <h2 class="file-name">/conf/lang_en.php</h2> <a name="sec-description"></a> <div class="info-box"> <div class="info-box-title">Description</div> <div class="nav-bar"> </div> <div class="info-box-body"> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">File with messages for output in EN.</p> <ul class="tags"> <li><span class="field">filesource:</span> <a href="../..//__filesource/fsource_Vortex_Util_conflang_en.php.html">Source Code for this file</a></li> <li><span class="field">license:</span> <a href="http://opensource.org/licenses/lgpl-license.php">GNU Lesser General Public License</a></li> <li><span class="field">copyright:</span> Copyright 2004, Thiago Ramon Gonçalves Montoya</li> <li><span class="field">author:</span> Thiago Ramon Gonçalves Montoya</li> </ul> </div> </div> <p class="notes" id="credit"> Documentation generated on Tue, 5 Oct 2004 18:34:41 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> </html> |
From: Thiago R. <nop...@us...> - 2004-10-06 14:00:34
|
Update of /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29076/doc/html/Vortex/Page Modified Files: SEC_Base.html SEC_Static.html _SEC_Base_class_php.html _SEC_Static_class_php.html Added Files: SEC_Header.html SEC_Page.html _SEC_Header_class_php.html _SEC_Page_class_php.html Log Message: Updating documentation --- NEW FILE: _SEC_Page_class_php.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <!-- template designed by Marco Von Ballmoos --> <title>Docs for page SEC_Page.class.php</title> <link rel="stylesheet" href="../../media/stylesheet.css" /> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> </head> <body> <div class="page-body"> <h2 class="file-name">/SEC_Page.class.php</h2> <a name="sec-description"></a> <div class="info-box"> <div class="info-box-title">Description</div> <div class="nav-bar"> <span class="disabled">Description</span> | <a href="#sec-classes">Classes</a> | <a href="#sec-includes">Includes</a> </div> <div class="info-box-body"> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">File for class SEC_Page.</p> <ul class="tags"> <li><span class="field">filesource:</span> <a href="../..//__filesource/fsource_Vortex_Page_SEC_Page.class.php.html">Source Code for this file</a></li> <li><span class="field">license:</span> <a href="http://opensource.org/licenses/lgpl-license.php">GNU Lesser General Public License</a></li> <li><span class="field">copyright:</span> Copyright 2004, Thiago Ramon Gonçalves Montoya</li> <li><span class="field">author:</span> Thiago Ramon Gonçalves Montoya</li> </ul> </div> </div> <a name="sec-classes"></a> <div class="info-box"> <div class="info-box-title">Classes</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <span class="disabled">Classes</span> | <a href="#sec-includes">Includes</a> </div> <div class="info-box-body"> <table cellpadding="2" cellspacing="0" class="class-table"> <tr> <th class="class-table-header">Class</th> <th class="class-table-header">Description</th> </tr> <tr> <td style="padding-right: 2em; vertical-align: top"> <a href="../../Vortex/Page/SEC_Page.html">SEC_Page</a> </td> <td> Class for full page sections. </td> </tr> </table> </div> </div> <a name="sec-includes"></a> <div class="info-box"> <div class="info-box-title">Includes</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-classes">Classes</a> | <span class="disabled">Includes</span> </div> <div class="info-box-body"> <a name="_SEC_Base_class_php"><!-- --></a> <div class="evenrow"> <div> <span class="include-title"> <span class="include-type">require_once</span> (<span class="include-name"><a href="../../Vortex/Page/_SEC_Base_class_php.html">'SEC_Base.class.php'</a></span>) (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Page.class.php.html#a13">13</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Require the base class</p> </div> </div> </div> <p class="notes" id="credit"> Documentation generated on Tue, 5 Oct 2004 18:34:46 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> </html> Index: SEC_Base.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page/SEC_Base.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** SEC_Base.html 4 Oct 2004 18:27:06 -0000 1.2 --- SEC_Base.html 6 Oct 2004 13:58:59 -0000 1.3 *************** *** 18,22 **** <span class="disabled">Description</span> | <a href="#sec-descendents">Descendents</a> ! | <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) </div> --- 18,23 ---- <span class="disabled">Description</span> | <a href="#sec-descendents">Descendents</a> ! | <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) ! | <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) </div> *************** *** 40,44 **** <a href="#sec-description">Description</a> | <span class="disabled">Descendents</span> ! | <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) </div> --- 41,46 ---- <a href="#sec-description">Description</a> | <span class="disabled">Descendents</span> ! | <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) ! | <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) </div> *************** *** 50,53 **** --- 52,67 ---- </tr> <tr> + <td style="padding-right: 2em"><a href="../../Vortex/Page/SEC_Header.html">SEC_Header</a></td> + <td> + Class for page headers. + </td> + </tr> + <tr> + <td style="padding-right: 2em"><a href="../../Vortex/Page/SEC_Page.html">SEC_Page</a></td> + <td> + Class for full page sections. + </td> + </tr> + <tr> <td style="padding-right: 2em"><a href="../../Vortex/Page/SEC_Static.html">SEC_Static</a></td> <td> *************** *** 60,63 **** --- 74,97 ---- + <a name="sec-var-summary"></a> + <div class="info-box"> + <div class="info-box-title">Variable Summary</span></div> + <div class="nav-bar"> + <a href="#sec-description">Description</a> | + <a href="#sec-descendents">Descendents</a> | + <span class="disabled">Vars</span> (<a href="#sec-vars">details</a>) + | + <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) + + </div> + <div class="info-box-body"> + <div class="var-summary"> + <div class="var-title"> + <span class="var-type">array</span> + <a href="#$sections" title="details" class="var-name">$sections</a> + </div> + </div> + </div> + </div> <a name="sec-method-summary"></a> *************** *** 67,71 **** <a href="#sec-description">Description</a> | <a href="#sec-descendents">Descendents</a> | ! <span class="disabled">Methods</span> (<a href="#sec-methods">details</a>) </div> <div class="info-box-body"> --- 101,108 ---- <a href="#sec-description">Description</a> | <a href="#sec-descendents">Descendents</a> | ! <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) ! ! | ! <span class="disabled">Methods</span> (<a href="#sec-methods">details</a>) </div> <div class="info-box-body"> *************** *** 80,83 **** --- 117,132 ---- <div class="method-definition"> <span class="method-result">void</span> + <a href="#AddSection" title="details" class="method-name">AddSection</a> + (<span class="var-type">string</span> <span class="var-name">$section</span>, <span class="var-type"><a href="../../Vortex/Page/SEC_Base.html">SEC_Base</a></span> <span class="var-name">$class</span>, [<span class="var-type">array</span> <span class="var-name">$opts</span> = <span class="var-default">array()</span>], [<span class="var-type">string</span> <span class="var-name">$position</span> = <span class="var-default">NULL</span>]) + </div> + + <div class="method-definition"> + <span class="method-result">void</span> + <a href="#DelSection" title="details" class="method-name">DelSection</a> + (<span class="var-type">string</span> <span class="var-name">$section</span>) + </div> + + <div class="method-definition"> + <span class="method-result">void</span> <a href="#Show" title="details" class="method-name">Show</a> () *************** *** 87,90 **** --- 136,175 ---- </div> + <a name="sec-vars"></a> + <div class="info-box"> + <div class="info-box-title">Variables</div> + <div class="nav-bar"> + <a href="#sec-description">Description</a> | + <a href="#sec-descendents">Descendents</a> | + <a href="#sec-var-summary">Vars</a> (<span class="disabled">details</span>) + + + | + <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) + + </div> + <div class="info-box-body"> + <a name="var$sections" id="$sections"><!-- --></A> + <div class="evenrow"> + + <div class="var-header"> + <span class="var-title"> + <span class="var-type">array</span> + <span class="var-name">$sections</span> + = <span class="var-default">array()</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Base.class.php.html#a24">24</a></span>) + </span> + </div> + + <!-- ========== Info from phpDoc block ========= --> + <p class="short-description">Child sections list.</p> + + + + + + </div> + + </div> + </div> <a name="sec-methods"></a> *************** *** 94,98 **** <a href="#sec-description">Description</a> | <a href="#sec-descendents">Descendents</a> | ! <a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>) </div> --- 179,184 ---- <a href="#sec-description">Description</a> | <a href="#sec-descendents">Descendents</a> | ! <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) ! <a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>) </div> *************** *** 100,107 **** <A NAME='method_detail'></A> <a name="methodSEC_Base" id="SEC_Base"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> ! <span class="method-title">Constructor SEC_Base</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Base.class.php.html#a25">25</a></span>) </div> --- 186,193 ---- <A NAME='method_detail'></A> <a name="methodSEC_Base" id="SEC_Base"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> ! <span class="method-title">Constructor SEC_Base</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Base.class.php.html#a31">31</a></span>) </div> *************** *** 125,140 **** </div> ! <a name="methodShow" id="Show"><!-- --></a> <div class="oddrow"> <div class="method-header"> ! <span class="method-title">Show</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Base.class.php.html#a37">37</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Outputs the section to the client.</p> ! <ul class="tags"> ! <li><span class="field">abstract:</span> </li> ! </ul> <div class="method-signature"> --- 211,285 ---- </div> ! <a name="methodAddSection" id="AddSection"><!-- --></a> ! <div class="evenrow"> ! ! <div class="method-header"> ! <span class="method-title">AddSection</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Base.class.php.html#a46">46</a></span>) ! </div> ! ! <!-- ========== Info from phpDoc block ========= --> ! <p class="short-description">Add a new child section.</p> ! ! <div class="method-signature"> ! <span class="method-result">void</span> ! <span class="method-name"> ! AddSection ! </span> ! (<span class="var-type">string</span> <span class="var-name">$section</span>, <span class="var-type"><a href="../../Vortex/Page/SEC_Base.html">SEC_Base</a></span> <span class="var-name">$class</span>, [<span class="var-type">array</span> <span class="var-name">$opts</span> = <span class="var-default">array()</span>], [<span class="var-type">string</span> <span class="var-name">$position</span> = <span class="var-default">NULL</span>]) ! </div> ! ! <ul class="parameters"> ! <li> ! <span class="var-type">string</span> ! <span class="var-name">$section</span><span class="var-description">: Section name.</span> </li> ! <li> ! <span class="var-type"><a href="../../Vortex/Page/SEC_Base.html">SEC_Base</a></span> ! <span class="var-name">$class</span><span class="var-description">: Section class.</span> </li> ! <li> ! <span class="var-type">array</span> ! <span class="var-name">$opts</span><span class="var-description">: Section class options.</span> </li> ! <li> ! <span class="var-type">string</span> ! <span class="var-name">$position</span><span class="var-description">: Position on where to insert the section (insert before section $position).</span> </li> ! </ul> ! ! ! </div> ! <a name="methodDelSection" id="DelSection"><!-- --></a> <div class="oddrow"> <div class="method-header"> ! <span class="method-title">DelSection</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Base.class.php.html#a73">73</a></span>) ! </div> ! ! <!-- ========== Info from phpDoc block ========= --> ! <p class="short-description">Remove a child section from the section.</p> ! ! <div class="method-signature"> ! <span class="method-result">void</span> ! <span class="method-name"> ! DelSection ! </span> ! (<span class="var-type">string</span> <span class="var-name">$section</span>) ! </div> ! ! <ul class="parameters"> ! <li> ! <span class="var-type">string</span> ! <span class="var-name">$section</span><span class="var-description">: Section name.</span> </li> ! </ul> ! ! ! </div> ! <a name="methodShow" id="Show"><!-- --></a> ! <div class="evenrow"> ! ! <div class="method-header"> ! <span class="method-title">Show</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Base.class.php.html#a83">83</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Outputs the section to the client.</p> ! <p class="description"><p>Show all childs in order.</p></p> <div class="method-signature"> *************** *** 152,155 **** --- 297,308 ---- <ul class="redefinitions"> <li> + <a href="../../Vortex/Page/SEC_Header.html#methodShow">SEC_Header::Show()</a> + : Outputs the section to the client. + </li> + <li> + <a href="../../Vortex/Page/SEC_Page.html#methodShow">SEC_Page::Show()</a> + : Outputs the section to the client. + </li> + <li> <a href="../../Vortex/Page/SEC_Static.html#methodShow">SEC_Static::Show()</a> : Outputs the section to the client. *************** *** 163,167 **** <p class="notes" id="credit"> ! Documentation generated on Mon, 4 Oct 2004 15:26:41 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 316,320 ---- <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:45 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- NEW FILE: SEC_Header.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <!-- template designed by Marco Von Ballmoos --> <title>Docs For Class SEC_Header</title> <link rel="stylesheet" href="../../media/stylesheet.css" /> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> </head> <body> <div class="page-body"> <h2 class="class-name">Class SEC_Header</h2> <a name="sec-description"></a> <div class="info-box"> <div class="info-box-title">Description</div> <div class="nav-bar"> <span class="disabled">Description</span> | <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) | <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) </div> <div class="info-box-body"> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Class for page headers.</p> <p class="notes"> Located in <a class="field" href="_SEC_Header_class_php.html">/SEC_Header.class.php</a> (line <span class="field"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Header.class.php.html#a21">21</a></span>) </p> <pre><a href="../../Vortex/Page/SEC_Base.html">SEC_Base</a> | --SEC_Header</pre> </div> </div> <a name="sec-var-summary"></a> <div class="info-box"> <div class="info-box-title">Variable Summary</span></div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <span class="disabled">Vars</span> (<a href="#sec-vars">details</a>) | <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) </div> <div class="info-box-body"> <div class="var-summary"> <div class="var-title"> <span class="var-type">string</span> <a href="#$title" title="details" class="var-name">$title</a> </div> </div> </div> </div> <a name="sec-method-summary"></a> <div class="info-box"> <div class="info-box-title">Method Summary</span></div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) | <span class="disabled">Methods</span> (<a href="#sec-methods">details</a>) </div> <div class="info-box-body"> <div class="method-summary"> <div class="method-definition"> <span class="method-result">void</span> <a href="#Show" title="details" class="method-name">Show</a> () </div> </div> </div> </div> <a name="sec-vars"></a> <div class="info-box"> <div class="info-box-title">Variables</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-var-summary">Vars</a> (<span class="disabled">details</span>) | <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) </div> <div class="info-box-body"> <a name="var$title" id="$title"><!-- --></A> <div class="oddrow"> <div class="var-header"> <span class="var-title"> <span class="var-type">string</span> <span class="var-name">$title</span> = <span class="var-default"> ''</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Header.class.php.html#a28">28</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Title of the page.</p> </div> <h4>Inherited Variables</h4> <A NAME='inherited_vars'><!-- --></A> <p>Inherited from <span class="classname"><a href="../../Vortex/Page/SEC_Base.html">SEC_Base</a></span></p> <blockquote> <span class="var-title"> <span class="var-name"><a href="../../Vortex/Page/SEC_Base.html#var$sections">SEC_Base::$sections</a></span><br> </span> </blockquote> </div> </div> <a name="sec-methods"></a> <div class="info-box"> <div class="info-box-title">Methods</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) <a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>) </div> <div class="info-box-body"> <A NAME='method_detail'></A> <a name="methodShow" id="Show"><!-- --></a> <div class="evenrow"> <div class="method-header"> <span class="method-title">Show</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Header.class.php.html#a35">35</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Outputs the section to the client.</p> <p class="description"><p>Outputs the header opening tags, then the content, then the header closing tags.</p></p> <div class="method-signature"> <span class="method-result">void</span> <span class="method-name"> Show </span> () </div> <hr class="separator" /> <div class="notes">Redefinition of:</div> <dl> <dt><a href="../../Vortex/Page/SEC_Base.html#methodShow">SEC_Base::Show()</a></dt> <dd>Outputs the section to the client.</dd> </dl> </div> <h4>Inherited Methods</h4> <a name='inherited_methods'><!-- --></a> <!-- =========== Summary =========== --> <p>Inherited From <span class="classname"><a href="../../Vortex/Page/SEC_Base.html">SEC_Base</a></span></p> <blockquote> <span class="method-name"><a href="../../Vortex/Page/SEC_Base.html#methodSEC_Base">SEC_Base::SEC_Base()</a></span><br> <span class="method-name"><a href="../../Vortex/Page/SEC_Base.html#methodAddSection">SEC_Base::AddSection()</a></span><br> <span class="method-name"><a href="../../Vortex/Page/SEC_Base.html#methodDelSection">SEC_Base::DelSection()</a></span><br> <span class="method-name"><a href="../../Vortex/Page/SEC_Base.html#methodShow">SEC_Base::Show()</a></span><br> </blockquote> </div> </div> <p class="notes" id="credit"> Documentation generated on Tue, 5 Oct 2004 18:34:45 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> </html> Index: SEC_Static.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page/SEC_Static.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** SEC_Static.html 4 Oct 2004 18:27:06 -0000 1.2 --- SEC_Static.html 6 Oct 2004 13:59:00 -0000 1.3 *************** *** 98,102 **** <div class="info-box-body"> <a name="var$code" id="$code"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 98,102 ---- <div class="info-box-body"> <a name="var$code" id="$code"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 117,121 **** </div> <a name="var$file" id="$file"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 117,121 ---- </div> <a name="var$file" id="$file"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 135,139 **** </div> ! </div> </div> --- 135,147 ---- </div> ! <h4>Inherited Variables</h4> ! <A NAME='inherited_vars'><!-- --></A> ! <p>Inherited from <span class="classname"><a href="../../Vortex/Page/SEC_Base.html">SEC_Base</a></span></p> ! <blockquote> ! <span class="var-title"> ! <span class="var-name"><a href="../../Vortex/Page/SEC_Base.html#var$sections">SEC_Base::$sections</a></span><br> ! </span> ! </blockquote> ! </div> </div> *************** *** 151,155 **** <A NAME='method_detail'></A> <a name="methodShow" id="Show"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> --- 159,163 ---- <A NAME='method_detail'></A> <a name="methodShow" id="Show"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> *************** *** 184,187 **** --- 192,197 ---- <blockquote> <span class="method-name"><a href="../../Vortex/Page/SEC_Base.html#methodSEC_Base">SEC_Base::SEC_Base()</a></span><br> + <span class="method-name"><a href="../../Vortex/Page/SEC_Base.html#methodAddSection">SEC_Base::AddSection()</a></span><br> + <span class="method-name"><a href="../../Vortex/Page/SEC_Base.html#methodDelSection">SEC_Base::DelSection()</a></span><br> <span class="method-name"><a href="../../Vortex/Page/SEC_Base.html#methodShow">SEC_Base::Show()</a></span><br> </blockquote> *************** *** 192,196 **** <p class="notes" id="credit"> ! Documentation generated on Mon, 4 Oct 2004 15:26:42 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 202,206 ---- <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:47 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- NEW FILE: SEC_Page.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <!-- template designed by Marco Von Ballmoos --> <title>Docs For Class SEC_Page</title> <link rel="stylesheet" href="../../media/stylesheet.css" /> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> </head> <body> <div class="page-body"> <h2 class="class-name">Class SEC_Page</h2> <a name="sec-description"></a> <div class="info-box"> <div class="info-box-title">Description</div> <div class="nav-bar"> <span class="disabled">Description</span> | <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) | <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) </div> <div class="info-box-body"> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Class for full page sections.</p> <p class="notes"> Located in <a class="field" href="_SEC_Page_class_php.html">/SEC_Page.class.php</a> (line <span class="field"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Page.class.php.html#a21">21</a></span>) </p> <pre><a href="../../Vortex/Page/SEC_Base.html">SEC_Base</a> | --SEC_Page</pre> </div> </div> <a name="sec-var-summary"></a> <div class="info-box"> <div class="info-box-title">Variable Summary</span></div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <span class="disabled">Vars</span> (<a href="#sec-vars">details</a>) | <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) </div> <div class="info-box-body"> <div class="var-summary"> <div class="var-title"> <span class="var-type">array</span> <a href="#$content" title="details" class="var-name">$content</a> </div> <div class="var-title"> <span class="var-type">array</span> <a href="#$layout" title="details" class="var-name">$layout</a> </div> </div> </div> </div> <a name="sec-method-summary"></a> <div class="info-box"> <div class="info-box-title">Method Summary</span></div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) | <span class="disabled">Methods</span> (<a href="#sec-methods">details</a>) </div> <div class="info-box-body"> <div class="method-summary"> <div class="method-definition"> <span class="method-result">SEC_Page</span> <a href="#SEC_Page" title="details" class="method-name">SEC_Page</a> ([<span class="var-type">array</span> <span class="var-name">$opts</span> = <span class="var-default">array()</span>]) </div> <div class="method-definition"> <span class="method-result">void</span> <a href="#Show" title="details" class="method-name">Show</a> () </div> </div> </div> </div> <a name="sec-vars"></a> <div class="info-box"> <div class="info-box-title">Variables</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-var-summary">Vars</a> (<span class="disabled">details</span>) | <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) </div> <div class="info-box-body"> <a name="var$content" id="$content"><!-- --></A> <div class="evenrow"> <div class="var-header"> <span class="var-title"> <span class="var-type">array</span> <span class="var-name">$content</span> = <span class="var-default">array()</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Page.class.php.html#a49">49</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Array with the content of the page.</p> <p class="description"><p>The content is an array containing the section to use as content of the page in the following form: <pre> array( 'class' => 'Section Class', 'opts' => array('Section options') );</pre> It is always inserted in the layout with the name 'content', replacing any placeholder there.</p></p> </div> <a name="var$layout" id="$layout"><!-- --></A> <div class="oddrow"> <div class="var-header"> <span class="var-title"> <span class="var-type">array</span> <span class="var-name">$layout</span> = <span class="var-default">array()</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Page.class.php.html#a35">35</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Array with the layout of the page.</p> <p class="description"><p>The layout is an array containing arrays in the following form: <pre> array( 'name' => 'Section Name', 'class' => 'Section Class', 'opts' => array('Section options') );</pre></p></p> </div> <h4>Inherited Variables</h4> <A NAME='inherited_vars'><!-- --></A> <p>Inherited from <span class="classname"><a href="../../Vortex/Page/SEC_Base.html">SEC_Base</a></span></p> <blockquote> <span class="var-title"> <span class="var-name"><a href="../../Vortex/Page/SEC_Base.html#var$sections">SEC_Base::$sections</a></span><br> </span> </blockquote> </div> </div> <a name="sec-methods"></a> <div class="info-box"> <div class="info-box-title">Methods</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) <a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>) </div> <div class="info-box-body"> <A NAME='method_detail'></A> <a name="methodSEC_Page" id="SEC_Page"><!-- --></a> <div class="evenrow"> <div class="method-header"> <span class="method-title">Constructor SEC_Page</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Page.class.php.html#a56">56</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Constructor: Load all parameters into member variables.</p> <div class="method-signature"> <span class="method-result">SEC_Page</span> <span class="method-name"> SEC_Page </span> ([<span class="var-type">array</span> <span class="var-name">$opts</span> = <span class="var-default">array()</span>]) </div> <ul class="parameters"> <li> <span class="var-type">array</span> <span class="var-name">$opts</span><span class="var-description">: Parameters for the object, as 'var' => 'value'.</span> </li> </ul> </div> <a name="methodShow" id="Show"><!-- --></a> <div class="oddrow"> <div class="method-header"> <span class="method-title">Show</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Page.class.php.html#a74">74</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Outputs the section to the client.</p> <p class="description"><p>Outputs the HTML opening tags, then the content, then the HTML closing tags.</p></p> <div class="method-signature"> <span class="method-result">void</span> <span class="method-name"> Show </span> () </div> <hr class="separator" /> <div class="notes">Redefinition of:</div> <dl> <dt><a href="../../Vortex/Page/SEC_Base.html#methodShow">SEC_Base::Show()</a></dt> <dd>Outputs the section to the client.</dd> </dl> </div> <h4>Inherited Methods</h4> <a name='inherited_methods'><!-- --></a> <!-- =========== Summary =========== --> <p>Inherited From <span class="classname"><a href="../../Vortex/Page/SEC_Base.html">SEC_Base</a></span></p> <blockquote> <span class="method-name"><a href="../../Vortex/Page/SEC_Base.html#methodSEC_Base">SEC_Base::SEC_Base()</a></span><br> <span class="method-name"><a href="../../Vortex/Page/SEC_Base.html#methodAddSection">SEC_Base::AddSection()</a></span><br> <span class="method-name"><a href="../../Vortex/Page/SEC_Base.html#methodDelSection">SEC_Base::DelSection()</a></span><br> <span class="method-name"><a href="../../Vortex/Page/SEC_Base.html#methodShow">SEC_Base::Show()</a></span><br> </blockquote> </div> </div> <p class="notes" id="credit"> Documentation generated on Tue, 5 Oct 2004 18:34:46 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> </html> --- NEW FILE: _SEC_Header_class_php.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <!-- template designed by Marco Von Ballmoos --> <title>Docs for page SEC_Header.class.php</title> <link rel="stylesheet" href="../../media/stylesheet.css" /> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> </head> <body> <div class="page-body"> <h2 class="file-name">/SEC_Header.class.php</h2> <a name="sec-description"></a> <div class="info-box"> <div class="info-box-title">Description</div> <div class="nav-bar"> <span class="disabled">Description</span> | <a href="#sec-classes">Classes</a> | <a href="#sec-includes">Includes</a> </div> <div class="info-box-body"> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">File for class SEC_Header.</p> <ul class="tags"> <li><span class="field">filesource:</span> <a href="../..//__filesource/fsource_Vortex_Page_SEC_Header.class.php.html">Source Code for this file</a></li> <li><span class="field">license:</span> <a href="http://opensource.org/licenses/lgpl-license.php">GNU Lesser General Public License</a></li> <li><span class="field">copyright:</span> Copyright 2004, Thiago Ramon Gonçalves Montoya</li> <li><span class="field">author:</span> Thiago Ramon Gonçalves Montoya</li> </ul> </div> </div> <a name="sec-classes"></a> <div class="info-box"> <div class="info-box-title">Classes</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <span class="disabled">Classes</span> | <a href="#sec-includes">Includes</a> </div> <div class="info-box-body"> <table cellpadding="2" cellspacing="0" class="class-table"> <tr> <th class="class-table-header">Class</th> <th class="class-table-header">Description</th> </tr> <tr> <td style="padding-right: 2em; vertical-align: top"> <a href="../../Vortex/Page/SEC_Header.html">SEC_Header</a> </td> <td> Class for page headers. </td> </tr> </table> </div> </div> <a name="sec-includes"></a> <div class="info-box"> <div class="info-box-title">Includes</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-classes">Classes</a> | <span class="disabled">Includes</span> </div> <div class="info-box-body"> <a name="_SEC_Base_class_php"><!-- --></a> <div class="oddrow"> <div> <span class="include-title"> <span class="include-type">require_once</span> (<span class="include-name"><a href="../../Vortex/Page/_SEC_Base_class_php.html">'SEC_Base.class.php'</a></span>) (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Header.class.php.html#a13">13</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Require the base class</p> </div> </div> </div> <p class="notes" id="credit"> Documentation generated on Tue, 5 Oct 2004 18:34:45 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> </html> Index: _SEC_Static_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page/_SEC_Static_class_php.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** _SEC_Static_class_php.html 4 Oct 2004 18:27:06 -0000 1.2 --- _SEC_Static_class_php.html 6 Oct 2004 13:59:00 -0000 1.3 *************** *** 69,73 **** <div class="info-box-body"> <a name="_SEC_Base_class_php"><!-- --></a> ! <div class="oddrow"> <div> --- 69,73 ---- <div class="info-box-body"> <a name="_SEC_Base_class_php"><!-- --></a> ! <div class="evenrow"> <div> *************** *** 90,94 **** <p class="notes" id="credit"> ! Documentation generated on Mon, 4 Oct 2004 15:26:42 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 90,94 ---- <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:47 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: _SEC_Base_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page/_SEC_Base_class_php.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** _SEC_Base_class_php.html 4 Oct 2004 18:27:06 -0000 1.2 --- _SEC_Base_class_php.html 6 Oct 2004 13:59:00 -0000 1.3 *************** *** 62,66 **** <p class="notes" id="credit"> ! Documentation generated on Mon, 4 Oct 2004 15:26:41 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 62,66 ---- <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:44 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> |
From: Thiago R. <nop...@us...> - 2004-10-06 14:00:32
|
Update of /cvsroot/phpvortex/phpvortex/doc/html In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29076/doc/html Modified Files: classtrees_Vortex.html elementindex.html elementindex_Vortex.html errors.html index.html li_Vortex.html Log Message: Updating documentation Index: elementindex.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/elementindex.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** elementindex.html 4 Oct 2004 18:27:07 -0000 1.2 --- elementindex.html 6 Oct 2004 13:59:01 -0000 1.3 *************** *** 48,53 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/PG_Base.html#methodAddSection">PG_Base::AddSection()</a> in PG_Base.class.php</div> ! <div class="index-item-description">Add a new page section.</div> </dd> <dt class="field"> --- 48,53 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/SEC_Base.html#methodAddSection">SEC_Base::AddSection()</a> in SEC_Base.class.php</div> ! <div class="index-item-description">Add a new child section.</div> </dd> <dt class="field"> *************** *** 55,59 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/DB_MySQL.html#methodAddSlashes">DB_MySQL::AddSlashes()</a> in DB_MySQL.class.php</div> <div class="index-item-description">Process a string for safe use in a database insertion.</div> </dd> --- 55,59 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/DB_Base.html#methodAddSlashes">DB_Base::AddSlashes()</a> in DB_Base.class.php</div> <div class="index-item-description">Process a string for safe use in a database insertion.</div> </dd> *************** *** 62,66 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/DB_Base.html#methodAddSlashes">DB_Base::AddSlashes()</a> in DB_Base.class.php</div> <div class="index-item-description">Process a string for safe use in a database insertion.</div> </dd> --- 62,66 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/DB_MySQL.html#methodAddSlashes">DB_MySQL::AddSlashes()</a> in DB_MySQL.class.php</div> <div class="index-item-description">Process a string for safe use in a database insertion.</div> </dd> *************** *** 69,73 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_MySQL.html#methodAll">RS_MySQL::All()</a> in RS_MySQL.class.php</div> <div class="index-item-description">Get all rows from the RecordSet.</div> </dd> --- 69,73 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_Base.html#methodAll">RS_Base::All()</a> in RS_Base.class.php</div> <div class="index-item-description">Get all rows from the RecordSet.</div> </dd> *************** *** 76,80 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_Base.html#methodAll">RS_Base::All()</a> in RS_Base.class.php</div> <div class="index-item-description">Get all rows from the RecordSet.</div> </dd> --- 76,80 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_MySQL.html#methodAll">RS_MySQL::All()</a> in RS_MySQL.class.php</div> <div class="index-item-description">Get all rows from the RecordSet.</div> </dd> *************** *** 124,127 **** --- 124,134 ---- </dd> <dt class="field"> + <span class="var-title">$content</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_Page.html#var$content">SEC_Page::$content</a> in SEC_Page.class.php</div> + <div class="index-item-description">Array with the content of the page.</div> + </dd> + <dt class="field"> <span class="include-title">Class Template.php</span> </dt> *************** *** 133,137 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_Base.html#methodClose">RS_Base::Close()</a> in RS_Base.class.php</div> <div class="index-item-description">Close the RecordSet and free the memory.</div> </dd> --- 140,144 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_MySQL.html#methodClose">RS_MySQL::Close()</a> in RS_MySQL.class.php</div> <div class="index-item-description">Close the RecordSet and free the memory.</div> </dd> *************** *** 140,144 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_MySQL.html#methodClose">RS_MySQL::Close()</a> in RS_MySQL.class.php</div> <div class="index-item-description">Close the RecordSet and free the memory.</div> </dd> --- 147,151 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_Base.html#methodClose">RS_Base::Close()</a> in RS_Base.class.php</div> <div class="index-item-description">Close the RecordSet and free the memory.</div> </dd> *************** *** 147,151 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/DB_Base.html#methodClose">DB_Base::Close()</a> in DB_Base.class.php</div> <div class="index-item-description">Close the connection to the database if still connected.</div> </dd> --- 154,158 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/DB_MySQL.html#methodClose">DB_MySQL::Close()</a> in DB_MySQL.class.php</div> <div class="index-item-description">Close the connection to the database if still connected.</div> </dd> *************** *** 154,158 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/DB_MySQL.html#methodClose">DB_MySQL::Close()</a> in DB_MySQL.class.php</div> <div class="index-item-description">Close the connection to the database if still connected.</div> </dd> --- 161,165 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/DB_Base.html#methodClose">DB_Base::Close()</a> in DB_Base.class.php</div> <div class="index-item-description">Close the connection to the database if still connected.</div> </dd> *************** *** 172,175 **** --- 179,188 ---- </dd> <dt class="field"> + <span class="include-title">conf.php</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Util/_conf_conf_php.html">conf.php</a> in conf.php</div> + </dd> + <dt class="field"> <span class="method-title">Connect</span> </dt> *************** *** 226,230 **** <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/TB_Base.html#var$data">TB_Base::$data</a> in TB_Base.class.php</div> ! <div class="index-item-description">Array the current row of the table, for output, edit or search.</div> </dd> <dt class="field"> --- 239,243 ---- <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/TB_Base.html#var$data">TB_Base::$data</a> in TB_Base.class.php</div> ! <div class="index-item-description">Array with the current row of the table, for output, edit or search.</div> </dd> <dt class="field"> *************** *** 327,332 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/PG_Base.html#methodDelSection">PG_Base::DelSection()</a> in PG_Base.class.php</div> ! <div class="index-item-description">Remove a section from the page.</div> </dd> <dt class="field"> --- 340,345 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/SEC_Base.html#methodDelSection">SEC_Base::DelSection()</a> in SEC_Base.class.php</div> ! <div class="index-item-description">Remove a child section from the section.</div> </dd> <dt class="field"> *************** *** 542,545 **** --- 555,565 ---- </dd> <dt class="field"> + <span class="var-title">$layout</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_Page.html#var$layout">SEC_Page::$layout</a> in SEC_Page.class.php</div> + <div class="index-item-description">Array with the layout of the page.</div> + </dd> + <dt class="field"> <span class="var-title">$link</span> </dt> *************** *** 563,570 **** </dd> <dt class="field"> <span class="method-title">LastId</span> </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_MySQL.html#methodLastId">RS_MySQL::LastId()</a> in RS_MySQL.class.php</div> <div class="index-item-description">Get the last auto-generated ID from the RecordSet.</div> </dd> --- 583,602 ---- </dd> <dt class="field"> + <span class="include-title">lang_en.php</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Util/_conf_lang_en_php.html">lang_en.php</a> in lang_en.php</div> + </dd> + <dt class="field"> + <span class="include-title">lang_pt_br.php</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Util/_conf_lang_pt_br_php.html">lang_pt_br.php</a> in lang_pt_br.php</div> + </dd> + <dt class="field"> <span class="method-title">LastId</span> </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_Base.html#methodLastId">RS_Base::LastId()</a> in RS_Base.class.php</div> <div class="index-item-description">Get the last auto-generated ID from the RecordSet.</div> </dd> *************** *** 573,577 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_Base.html#methodLastId">RS_Base::LastId()</a> in RS_Base.class.php</div> <div class="index-item-description">Get the last auto-generated ID from the RecordSet.</div> </dd> --- 605,609 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_MySQL.html#methodLastId">RS_MySQL::LastId()</a> in RS_MySQL.class.php</div> <div class="index-item-description">Get the last auto-generated ID from the RecordSet.</div> </dd> *************** *** 648,671 **** <div class="index-item-description">Password.</div> </dd> - <dt class="field"> - PG_Base - </dt> - <dd class="index-item-body"> - <div class="index-item-details"><a href="Vortex/Page/PG_Base.html">PG_Base</a> in PG_Base.class.php</div> - <div class="index-item-description">Base class for all pages.</div> - </dd> - <dt class="field"> - <span class="method-title">PG_Base</span> - </dt> - <dd class="index-item-body"> - <div class="index-item-details"><a href="Vortex/Page/PG_Base.html#methodPG_Base">PG_Base::PG_Base()</a> in PG_Base.class.php</div> - <div class="index-item-description">Constructor: Define site-wide defaults (headers, menus, footers).</div> - </dd> - <dt class="field"> - <span class="include-title">PG_Base.class.php</span> - </dt> - <dd class="index-item-body"> - <div class="index-item-details"><a href="Vortex/Page/_PG_Base_class_php.html">PG_Base.class.php</a> in PG_Base.class.php</div> - </dd> </dl> <a name="q"></a> --- 680,683 ---- *************** *** 758,762 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_Base.html#methodRowCount">RS_Base::RowCount()</a> in RS_Base.class.php</div> <div class="index-item-description">Get the count of rows in the RecordSet.</div> </dd> --- 770,774 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_MySQL.html#methodRowCount">RS_MySQL::RowCount()</a> in RS_MySQL.class.php</div> <div class="index-item-description">Get the count of rows in the RecordSet.</div> </dd> *************** *** 765,784 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_MySQL.html#methodRowCount">RS_MySQL::RowCount()</a> in RS_MySQL.class.php</div> <div class="index-item-description">Get the count of rows in the RecordSet.</div> </dd> <dt class="field"> ! RS_Base </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_Base.html">RS_Base</a> in RS_Base.class.php</div> ! <div class="index-item-description">Base class for RecordSets.</div> </dd> <dt class="field"> ! <span class="method-title">RS_Base</span> </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_Base.html#methodRS_Base">RS_Base::RS_Base()</a> in RS_Base.class.php</div> ! <div class="index-item-description">Constructor: Init the RecordSet from the result of a query.</div> </dd> <dt class="field"> --- 777,796 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_Base.html#methodRowCount">RS_Base::RowCount()</a> in RS_Base.class.php</div> <div class="index-item-description">Get the count of rows in the RecordSet.</div> </dd> <dt class="field"> ! <span class="method-title">RS_Base</span> </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_Base.html#methodRS_Base">RS_Base::RS_Base()</a> in RS_Base.class.php</div> ! <div class="index-item-description">Constructor: Init the RecordSet from the result of a query.</div> </dd> <dt class="field"> ! RS_Base </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_Base.html">RS_Base</a> in RS_Base.class.php</div> ! <div class="index-item-description">Base class for RecordSets.</div> </dd> <dt class="field"> *************** *** 834,839 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/PG_Base.html#var$sections">PG_Base::$sections</a> in PG_Base.class.php</div> ! <div class="index-item-description">Page sections list.</div> </dd> <dt class="field"> --- 846,851 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/SEC_Base.html#var$sections">SEC_Base::$sections</a> in SEC_Base.class.php</div> ! <div class="index-item-description">Child sections list.</div> </dd> <dt class="field"> *************** *** 879,882 **** --- 891,927 ---- </dd> <dt class="field"> + SEC_Header + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_Header.html">SEC_Header</a> in SEC_Header.class.php</div> + <div class="index-item-description">Class for page headers.</div> + </dd> + <dt class="field"> + <span class="include-title">SEC_Header.class.php</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/_SEC_Header_class_php.html">SEC_Header.class.php</a> in SEC_Header.class.php</div> + </dd> + <dt class="field"> + <span class="method-title">SEC_Page</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_Page.html#methodSEC_Page">SEC_Page::SEC_Page()</a> in SEC_Page.class.php</div> + <div class="index-item-description">Constructor: Load all parameters into member variables.</div> + </dd> + <dt class="field"> + SEC_Page + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_Page.html">SEC_Page</a> in SEC_Page.class.php</div> + <div class="index-item-description">Class for full page sections.</div> + </dd> + <dt class="field"> + <span class="include-title">SEC_Page.class.php</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/_SEC_Page_class_php.html">SEC_Page.class.php</a> in SEC_Page.class.php</div> + </dd> + <dt class="field"> SEC_Static </dt> *************** *** 916,920 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/SEC_Base.html#methodShow">SEC_Base::Show()</a> in SEC_Base.class.php</div> <div class="index-item-description">Outputs the section to the client.</div> </dd> --- 961,965 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/SEC_Static.html#methodShow">SEC_Static::Show()</a> in SEC_Static.class.php</div> <div class="index-item-description">Outputs the section to the client.</div> </dd> *************** *** 923,928 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/FT_Base.html#methodShow">FT_Base::Show()</a> in FT_Base.class.php</div> ! <div class="index-item-description">Output the field as a HTML Form or just for display.</div> </dd> <dt class="field"> --- 968,973 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/SEC_Page.html#methodShow">SEC_Page::Show()</a> in SEC_Page.class.php</div> ! <div class="index-item-description">Outputs the section to the client.</div> </dd> <dt class="field"> *************** *** 930,937 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/SEC_Static.html#methodShow">SEC_Static::Show()</a> in SEC_Static.class.php</div> <div class="index-item-description">Outputs the section to the client.</div> </dd> <dt class="field"> <span class="method-title">ShowForm</span> </dt> --- 975,996 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/SEC_Base.html#methodShow">SEC_Base::Show()</a> in SEC_Base.class.php</div> ! <div class="index-item-description">Outputs the section to the client.</div> ! </dd> ! <dt class="field"> ! <span class="method-title">Show</span> ! </dt> ! <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/SEC_Header.html#methodShow">SEC_Header::Show()</a> in SEC_Header.class.php</div> <div class="index-item-description">Outputs the section to the client.</div> </dd> <dt class="field"> + <span class="method-title">Show</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/DB/FT_Base.html#methodShow">FT_Base::Show()</a> in FT_Base.class.php</div> + <div class="index-item-description">Output the field as a HTML Form or just for display.</div> + </dd> + <dt class="field"> <span class="method-title">ShowForm</span> </dt> *************** *** 948,963 **** </dd> <dt class="field"> ! <span class="method-title">ShowList</span> </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/TB_Base.html#methodShowList">TB_Base::ShowList()</a> in TB_Base.class.php</div> ! <div class="index-item-description">Outputs a list for viewing/editing records.</div> </dd> <dt class="field"> ! <span class="method-title">ShowPage</span> </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/PG_Base.html#methodShowPage">PG_Base::ShowPage()</a> in PG_Base.class.php</div> ! <div class="index-item-description">Parse all sections and output the result.</div> </dd> <dt class="field"> --- 1007,1022 ---- </dd> <dt class="field"> ! <span class="method-title">ShowForm</span> </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/TB_Base.html#methodShowForm">TB_Base::ShowForm()</a> in TB_Base.class.php</div> ! <div class="index-item-description">Outputs a form for inserting/editing records.</div> </dd> <dt class="field"> ! <span class="method-title">ShowList</span> </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/TB_Base.html#methodShowList">TB_Base::ShowList()</a> in TB_Base.class.php</div> ! <div class="index-item-description">Outputs a list for viewing/editing records.</div> </dd> <dt class="field"> *************** *** 965,969 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/FT_Text.html#methodShowPlain">FT_Text::ShowPlain()</a> in FT_Text.class.php</div> <div class="index-item-description">Output the field as plain text.</div> </dd> --- 1024,1028 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/FT_Base.html#methodShowPlain">FT_Base::ShowPlain()</a> in FT_Base.class.php</div> <div class="index-item-description">Output the field as plain text.</div> </dd> *************** *** 972,976 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/FT_Base.html#methodShowPlain">FT_Base::ShowPlain()</a> in FT_Base.class.php</div> <div class="index-item-description">Output the field as plain text.</div> </dd> --- 1031,1035 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/FT_Text.html#methodShowPlain">FT_Text::ShowPlain()</a> in FT_Text.class.php</div> <div class="index-item-description">Output the field as plain text.</div> </dd> *************** *** 984,992 **** <dl> <dt class="field"> ! <span class="method-title">TB_Base</span> </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/TB_Base.html#methodTB_Base">TB_Base::TB_Base()</a> in TB_Base.class.php</div> ! <div class="index-item-description">Constructor: Init the object, and define the table's fields and relationships.</div> </dd> <dt class="field"> --- 1043,1051 ---- <dl> <dt class="field"> ! <span class="var-title">$title</span> </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/SEC_Header.html#var$title">SEC_Header::$title</a> in SEC_Header.class.php</div> ! <div class="index-item-description">Title of the page.</div> </dd> <dt class="field"> *************** *** 998,1001 **** --- 1057,1067 ---- </dd> <dt class="field"> + <span class="method-title">TB_Base</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/DB/TB_Base.html#methodTB_Base">TB_Base::TB_Base()</a> in TB_Base.class.php</div> + <div class="index-item-description">Constructor: Init the object, and define the table's fields and relationships.</div> + </dd> + <dt class="field"> <span class="include-title">TB_Base.class.php</span> </dt> Index: errors.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/errors.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** errors.html 4 Oct 2004 18:27:07 -0000 1.2 --- errors.html 6 Oct 2004 13:59:01 -0000 1.3 *************** *** 11,15 **** <a href="#Post-parsing">Post-parsing</a><br> <p class="notes" id="credit"> ! Documentation generated on Mon, 4 Oct 2004 15:26:46 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> --- 11,15 ---- <a href="#Post-parsing">Post-parsing</a><br> <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:52 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> Index: index.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/index.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** index.html 4 Oct 2004 18:27:07 -0000 1.2 --- index.html 6 Oct 2004 13:59:01 -0000 1.3 *************** *** 5,9 **** <html xmlns="http://www.w3.org/1999/xhtml"> <head> ! <!-- Generated by phpDocumentor on Mon, 4 Oct 2004 15:26:29 -0300 --> <title>PHP Vortex Documentation</title> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> --- 5,9 ---- <html xmlns="http://www.w3.org/1999/xhtml"> <head> ! <!-- Generated by phpDocumentor on Tue, 5 Oct 2004 18:34:31 -0300 --> <title>PHP Vortex Documentation</title> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> Index: elementindex_Vortex.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/elementindex_Vortex.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** elementindex_Vortex.html 4 Oct 2004 18:27:07 -0000 1.2 --- elementindex_Vortex.html 6 Oct 2004 13:59:01 -0000 1.3 *************** *** 73,78 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/PG_Base.html#methodAddSection">PG_Base::AddSection()</a> in PG_Base.class.php</div> ! <div class="index-item-description">Add a new page section.</div> </dd> </dl> --- 73,78 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/SEC_Base.html#methodAddSection">SEC_Base::AddSection()</a> in SEC_Base.class.php</div> ! <div class="index-item-description">Add a new child section.</div> </dd> </dl> *************** *** 205,208 **** --- 205,215 ---- </dd> <dt class="field"> + <span class="var-title">$content</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_Page.html#var$content">SEC_Page::$content</a> in SEC_Page.class.php</div> + <div class="index-item-description">Array with the content of the page.</div> + </dd> + <dt class="field"> <span class="include-title">Class Template.php</span> </dt> *************** *** 210,213 **** --- 217,226 ---- <div class="index-item-details"><a href="Vortex/Util/_Class Template_php.html">Class Template.php</a> in Class Template.php</div> </dd> + <dt class="field"> + <span class="include-title">conf.php</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Util/_conf_conf_php.html">conf.php</a> in conf.php</div> + </dd> </dl> <a name="d"></a> *************** *** 223,227 **** <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/TB_Base.html#var$data">TB_Base::$data</a> in TB_Base.class.php</div> ! <div class="index-item-description">Array the current row of the table, for output, edit or search.</div> </dd> <dt class="field"> --- 236,240 ---- <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/TB_Base.html#var$data">TB_Base::$data</a> in TB_Base.class.php</div> ! <div class="index-item-description">Array with the current row of the table, for output, edit or search.</div> </dd> <dt class="field"> *************** *** 350,355 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/PG_Base.html#methodDelSection">PG_Base::DelSection()</a> in PG_Base.class.php</div> ! <div class="index-item-description">Remove a section from the page.</div> </dd> </dl> --- 363,368 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/SEC_Base.html#methodDelSection">SEC_Base::DelSection()</a> in SEC_Base.class.php</div> ! <div class="index-item-description">Remove a child section from the section.</div> </dd> </dl> *************** *** 573,576 **** --- 586,608 ---- <div class="index-item-description">Get the last auto-generated ID from the RecordSet.</div> </dd> + <dt class="field"> + <span class="var-title">$layout</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_Page.html#var$layout">SEC_Page::$layout</a> in SEC_Page.class.php</div> + <div class="index-item-description">Array with the layout of the page.</div> + </dd> + <dt class="field"> + <span class="include-title">lang_en.php</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Util/_conf_lang_en_php.html">lang_en.php</a> in lang_en.php</div> + </dd> + <dt class="field"> + <span class="include-title">lang_pt_br.php</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Util/_conf_lang_pt_br_php.html">lang_pt_br.php</a> in lang_pt_br.php</div> + </dd> </dl> <a name="n"></a> *************** *** 645,668 **** <div class="index-item-description">Password.</div> </dd> - <dt class="field"> - <span class="method-title">PG_Base</span> - </dt> - <dd class="index-item-body"> - <div class="index-item-details"><a href="Vortex/Page/PG_Base.html#methodPG_Base">PG_Base::PG_Base()</a> in PG_Base.class.php</div> - <div class="index-item-description">Constructor: Define site-wide defaults (headers, menus, footers).</div> - </dd> - <dt class="field"> - PG_Base - </dt> - <dd class="index-item-body"> - <div class="index-item-details"><a href="Vortex/Page/PG_Base.html">PG_Base</a> in PG_Base.class.php</div> - <div class="index-item-description">Base class for all pages.</div> - </dd> - <dt class="field"> - <span class="include-title">PG_Base.class.php</span> - </dt> - <dd class="index-item-body"> - <div class="index-item-details"><a href="Vortex/Page/_PG_Base_class_php.html">PG_Base.class.php</a> in PG_Base.class.php</div> - </dd> </dl> <a name="q"></a> --- 677,680 ---- *************** *** 766,781 **** </dd> <dt class="field"> ! <span class="method-title">RS_Base</span> </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_Base.html#methodRS_Base">RS_Base::RS_Base()</a> in RS_Base.class.php</div> ! <div class="index-item-description">Constructor: Init the RecordSet from the result of a query.</div> </dd> <dt class="field"> ! RS_Base </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_Base.html">RS_Base</a> in RS_Base.class.php</div> ! <div class="index-item-description">Base class for RecordSets.</div> </dd> <dt class="field"> --- 778,793 ---- </dd> <dt class="field"> ! RS_Base </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_Base.html">RS_Base</a> in RS_Base.class.php</div> ! <div class="index-item-description">Base class for RecordSets.</div> </dd> <dt class="field"> ! <span class="method-title">RS_Base</span> </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/RS_Base.html#methodRS_Base">RS_Base::RS_Base()</a> in RS_Base.class.php</div> ! <div class="index-item-description">Constructor: Init the RecordSet from the result of a query.</div> </dd> <dt class="field"> *************** *** 887,890 **** --- 899,909 ---- </dt> <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/DB/TB_Base.html#methodShowForm">TB_Base::ShowForm()</a> in TB_Base.class.php</div> + <div class="index-item-description">Outputs a form for inserting/editing records.</div> + </dd> + <dt class="field"> + <span class="method-title">ShowForm</span> + </dt> + <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/FT_Base.html#methodShowForm">FT_Base::ShowForm()</a> in FT_Base.class.php</div> <div class="index-item-description">Output the field as a HTML Form.</div> *************** *** 901,905 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/FT_Base.html#methodShowPlain">FT_Base::ShowPlain()</a> in FT_Base.class.php</div> <div class="index-item-description">Output the field as plain text.</div> </dd> --- 920,924 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/FT_Text.html#methodShowPlain">FT_Text::ShowPlain()</a> in FT_Text.class.php</div> <div class="index-item-description">Output the field as plain text.</div> </dd> *************** *** 908,912 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/FT_Text.html#methodShowPlain">FT_Text::ShowPlain()</a> in FT_Text.class.php</div> <div class="index-item-description">Output the field as plain text.</div> </dd> --- 927,931 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/DB/FT_Base.html#methodShowPlain">FT_Base::ShowPlain()</a> in FT_Base.class.php</div> <div class="index-item-description">Output the field as plain text.</div> </dd> *************** *** 915,920 **** </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/PG_Base.html#var$sections">PG_Base::$sections</a> in PG_Base.class.php</div> ! <div class="index-item-description">Page sections list.</div> </dd> <dt class="field"> --- 934,946 ---- </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/SEC_Base.html#var$sections">SEC_Base::$sections</a> in SEC_Base.class.php</div> ! <div class="index-item-description">Child sections list.</div> ! </dd> ! <dt class="field"> ! <span class="method-title">SEC_Base</span> ! </dt> ! <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/SEC_Base.html#methodSEC_Base">SEC_Base::SEC_Base()</a> in SEC_Base.class.php</div> ! <div class="index-item-description">Constructor: Load all parameters into member variables.</div> </dd> <dt class="field"> *************** *** 926,940 **** </dd> <dt class="field"> ! <span class="method-title">SEC_Base</span> </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/SEC_Base.html#methodSEC_Base">SEC_Base::SEC_Base()</a> in SEC_Base.class.php</div> <div class="index-item-description">Constructor: Load all parameters into member variables.</div> </dd> <dt class="field"> ! <span class="include-title">SEC_Base.class.php</span> </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/_SEC_Base_class_php.html">SEC_Base.class.php</a> in SEC_Base.class.php</div> </dd> <dt class="field"> --- 952,992 ---- </dd> <dt class="field"> ! <span class="include-title">SEC_Base.class.php</span> </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/_SEC_Base_class_php.html">SEC_Base.class.php</a> in SEC_Base.class.php</div> ! </dd> ! <dt class="field"> ! SEC_Header ! </dt> ! <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/SEC_Header.html">SEC_Header</a> in SEC_Header.class.php</div> ! <div class="index-item-description">Class for page headers.</div> ! </dd> ! <dt class="field"> ! <span class="include-title">SEC_Header.class.php</span> ! </dt> ! <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/_SEC_Header_class_php.html">SEC_Header.class.php</a> in SEC_Header.class.php</div> ! </dd> ! <dt class="field"> ! <span class="method-title">SEC_Page</span> ! </dt> ! <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/SEC_Page.html#methodSEC_Page">SEC_Page::SEC_Page()</a> in SEC_Page.class.php</div> <div class="index-item-description">Constructor: Load all parameters into member variables.</div> </dd> <dt class="field"> ! SEC_Page </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/SEC_Page.html">SEC_Page</a> in SEC_Page.class.php</div> ! <div class="index-item-description">Class for full page sections.</div> ! </dd> ! <dt class="field"> ! <span class="include-title">SEC_Page.class.php</span> ! </dt> ! <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/_SEC_Page_class_php.html">SEC_Page.class.php</a> in SEC_Page.class.php</div> </dd> <dt class="field"> *************** *** 962,974 **** </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/Page/SEC_Base.html#methodShow">SEC_Base::Show()</a> in SEC_Base.class.php</div> <div class="index-item-description">Outputs the section to the client.</div> </dd> <dt class="field"> ! <span class="method-title">ShowPage</span> </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/PG_Base.html#methodShowPage">PG_Base::ShowPage()</a> in PG_Base.class.php</div> ! <div class="index-item-description">Parse all sections and output the result.</div> </dd> </dl> --- 1014,1033 ---- </dt> <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_Header.html#methodShow">SEC_Header::Show()</a> in SEC_Header.class.php</div> + <div class="index-item-description">Outputs the section to the client.</div> + </dd> + <dt class="field"> + <span class="method-title">Show</span> + </dt> + <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/Page/SEC_Base.html#methodShow">SEC_Base::Show()</a> in SEC_Base.class.php</div> <div class="index-item-description">Outputs the section to the client.</div> </dd> <dt class="field"> ! <span class="method-title">Show</span> </dt> <dd class="index-item-body"> ! <div class="index-item-details"><a href="Vortex/Page/SEC_Page.html#methodShow">SEC_Page::Show()</a> in SEC_Page.class.php</div> ! <div class="index-item-description">Outputs the section to the client.</div> </dd> </dl> *************** *** 1049,1052 **** --- 1108,1118 ---- </dd> <dt class="field"> + <span class="var-title">$title</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_Header.html#var$title">SEC_Header::$title</a> in SEC_Header.class.php</div> + <div class="index-item-description">Title of the page.</div> + </dd> + <dt class="field"> <span class="method-title">Template</span> </dt> Index: classtrees_Vortex.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/classtrees_Vortex.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** classtrees_Vortex.html 4 Oct 2004 18:27:07 -0000 1.2 --- classtrees_Vortex.html 6 Oct 2004 13:59:01 -0000 1.3 *************** *** 26,33 **** </ul> - <h2>Root class PG_Base</h2> - <ul> - <li><a href="Vortex/Page/PG_Base.html">PG_Base</a></li></ul> - <h2>Root class RS_Base</h2> <ul> --- 26,29 ---- *************** *** 39,43 **** <ul> <li><a href="Vortex/Page/SEC_Base.html">SEC_Base</a><ul> ! <li><a href="Vortex/Page/SEC_Static.html">SEC_Static</a></li></ul></li> </ul> --- 35,39 ---- <ul> <li><a href="Vortex/Page/SEC_Base.html">SEC_Base</a><ul> ! <li><a href="Vortex/Page/SEC_Header.html">SEC_Header</a></li><li><a href="Vortex/Page/SEC_Page.html">SEC_Page</a></li><li><a href="Vortex/Page/SEC_Static.html">SEC_Static</a></li></ul></li> </ul> *************** *** 53,57 **** <p class="notes" id="credit"> ! Documentation generated on Mon, 4 Oct 2004 15:26:30 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> --- 49,53 ---- <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:31 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> Index: li_Vortex.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/li_Vortex.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** li_Vortex.html 4 Oct 2004 18:27:07 -0000 1.2 --- li_Vortex.html 6 Oct 2004 13:59:01 -0000 1.3 *************** *** 74,83 **** <dl class="tree"> <dt class="folder-title">Classes</dt> - <dd><a href='Vortex/Page/PG_Base.html' target='right'>PG_Base</a></dd> <dd><a href='Vortex/Page/SEC_Base.html' target='right'>SEC_Base</a></dd> <dd><a href='Vortex/Page/SEC_Static.html' target='right'>SEC_Static</a></dd> <dt class="folder-title">Files</dt> - <dd><a href='Vortex/Page/_PG_Base_class_php.html' target='right'>PG_Base.class.php</a></dd> <dd><a href='Vortex/Page/_SEC_Base_class_php.html' target='right'>SEC_Base.class.php</a></dd> <dd><a href='Vortex/Page/_SEC_Static_class_php.html' target='right'>SEC_Static.class.php</a></dd> </dl> --- 74,85 ---- <dl class="tree"> <dt class="folder-title">Classes</dt> <dd><a href='Vortex/Page/SEC_Base.html' target='right'>SEC_Base</a></dd> + <dd><a href='Vortex/Page/SEC_Header.html' target='right'>SEC_Header</a></dd> + <dd><a href='Vortex/Page/SEC_Page.html' target='right'>SEC_Page</a></dd> <dd><a href='Vortex/Page/SEC_Static.html' target='right'>SEC_Static</a></dd> <dt class="folder-title">Files</dt> <dd><a href='Vortex/Page/_SEC_Base_class_php.html' target='right'>SEC_Base.class.php</a></dd> + <dd><a href='Vortex/Page/_SEC_Header_class_php.html' target='right'>SEC_Header.class.php</a></dd> + <dd><a href='Vortex/Page/_SEC_Page_class_php.html' target='right'>SEC_Page.class.php</a></dd> <dd><a href='Vortex/Page/_SEC_Static_class_php.html' target='right'>SEC_Static.class.php</a></dd> </dl> *************** *** 94,97 **** --- 96,102 ---- <dt class="folder-title">Files</dt> <dd><a href='Vortex/Util/_Class Template_php.html' target='right'>Class Template.php</a></dd> + <dd><a href='Vortex/Util/_conf_conf_php.html' target='right'>conf.php</a></dd> + <dd><a href='Vortex/Util/_conf_lang_en_php.html' target='right'>lang_en.php</a></dd> + <dd><a href='Vortex/Util/_conf_lang_pt_br_php.html' target='right'>lang_pt_br.php</a></dd> </dl> </dd> |
From: Thiago R. <nop...@us...> - 2004-10-06 14:00:29
|
Update of /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Debug In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29076/doc/html/Vortex/Debug Modified Files: TB_Test.html _d_footer_php.html _d_header_php.html _debug_php.html _test_vortex_test_php.html Log Message: Updating documentation Index: _d_header_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Debug/_d_header_php.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** _d_header_php.html 4 Oct 2004 18:27:05 -0000 1.2 --- _d_header_php.html 6 Oct 2004 13:58:59 -0000 1.3 *************** *** 42,46 **** <div class="info-box-body"> <a name="_debug_php"><!-- --></a> ! <div class="evenrow"> <div> --- 42,46 ---- <div class="info-box-body"> <a name="_debug_php"><!-- --></a> ! <div class="oddrow"> <div> *************** *** 63,67 **** <p class="notes" id="credit"> ! Documentation generated on Mon, 4 Oct 2004 15:26:35 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 63,67 ---- <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:38 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: TB_Test.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Debug/TB_Test.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TB_Test.html 4 Oct 2004 18:27:05 -0000 1.1 --- TB_Test.html 6 Oct 2004 13:58:59 -0000 1.2 *************** *** 128,132 **** <A NAME='method_detail'></A> <a name="methodTB_Test" id="TB_Test"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> --- 128,132 ---- <A NAME='method_detail'></A> <a name="methodTB_Test" id="TB_Test"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> *************** *** 158,161 **** --- 158,162 ---- <span class="method-name"><a href="../../Vortex/DB/TB_Base.html#methodSave">TB_Base::Save()</a></span><br> <span class="method-name"><a href="../../Vortex/DB/TB_Base.html#methodSeek">TB_Base::Seek()</a></span><br> + <span class="method-name"><a href="../../Vortex/DB/TB_Base.html#methodShowForm">TB_Base::ShowForm()</a></span><br> <span class="method-name"><a href="../../Vortex/DB/TB_Base.html#methodShowList">TB_Base::ShowList()</a></span><br> </blockquote> *************** *** 166,170 **** <p class="notes" id="credit"> ! Documentation generated on Mon, 4 Oct 2004 15:26:45 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 167,171 ---- <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:51 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: _d_footer_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Debug/_d_footer_php.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** _d_footer_php.html 4 Oct 2004 18:27:05 -0000 1.2 --- _d_footer_php.html 6 Oct 2004 13:58:59 -0000 1.3 *************** *** 36,40 **** <p class="notes" id="credit"> ! Documentation generated on Mon, 4 Oct 2004 15:26:35 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 36,40 ---- <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:38 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: _debug_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Debug/_debug_php.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** _debug_php.html 4 Oct 2004 18:27:05 -0000 1.2 --- _debug_php.html 6 Oct 2004 13:58:59 -0000 1.3 *************** *** 44,48 **** <div class="info-box-body"> <a name="_debuglib_php"><!-- --></a> ! <div class="oddrow"> <div> --- 44,48 ---- <div class="info-box-body"> <a name="_debuglib_php"><!-- --></a> ! <div class="evenrow"> <div> *************** *** 73,77 **** <div class="info-box-body"> <a name="functiond" id="functiond"><!-- --></a> ! <div class="evenrow"> <div> --- 73,77 ---- <div class="info-box-body"> <a name="functiond" id="functiond"><!-- --></a> ! <div class="oddrow"> <div> *************** *** 102,106 **** </div> <a name="functiondv" id="functiondv"><!-- --></a> ! <div class="oddrow"> <div> --- 102,106 ---- </div> <a name="functiondv" id="functiondv"><!-- --></a> ! <div class="evenrow"> <div> *************** *** 140,144 **** <p class="notes" id="credit"> ! Documentation generated on Mon, 4 Oct 2004 15:26:34 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 140,144 ---- <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:37 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: _test_vortex_test_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Debug/_test_vortex_test_php.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** _test_vortex_test_php.html 4 Oct 2004 18:27:05 -0000 1.1 --- _test_vortex_test_php.html 6 Oct 2004 13:58:59 -0000 1.2 *************** *** 69,73 **** <div class="info-box-body"> <a name="___/DB_MySQL_class_php"><!-- --></a> ! <div class="evenrow"> <div> --- 69,73 ---- <div class="info-box-body"> <a name="___/DB_MySQL_class_php"><!-- --></a> ! <div class="oddrow"> <div> *************** *** 84,88 **** </div> <a name="___/TB_Base_class_php"><!-- --></a> ! <div class="oddrow"> <div> --- 84,88 ---- </div> <a name="___/TB_Base_class_php"><!-- --></a> ! <div class="evenrow"> <div> *************** *** 99,103 **** </div> <a name="___/FT_Text_class_php"><!-- --></a> ! <div class="evenrow"> <div> --- 99,103 ---- </div> <a name="___/FT_Text_class_php"><!-- --></a> ! <div class="oddrow"> <div> *************** *** 120,124 **** <p class="notes" id="credit"> ! Documentation generated on Mon, 4 Oct 2004 15:26:45 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 120,124 ---- <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:50 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> |
From: Thiago R. <nop...@us...> - 2004-10-06 13:59:14
|
Update of /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29076/doc/html/Vortex/DB Modified Files: DB_Base.html DB_MySQL.html FT_Base.html FT_Text.html RS_Base.html RS_MySQL.html TB_Base.html _DB_Base_class_php.html _DB_MySQL_class_php.html _FT_Base_class_php.html _FT_Text_class_php.html _RS_Base_class_php.html _RS_MySQL_class_php.html _TB_Base_class_php.html Log Message: Updating documentation Index: RS_Base.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB/RS_Base.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RS_Base.html 4 Oct 2004 18:27:05 -0000 1.2 --- RS_Base.html 6 Oct 2004 13:58:59 -0000 1.3 *************** *** 528,532 **** <p class="notes" id="credit"> ! Documentation generated on Mon, 4 Oct 2004 15:26:39 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 528,532 ---- <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:42 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: RS_MySQL.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB/RS_MySQL.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RS_MySQL.html 4 Oct 2004 18:27:05 -0000 1.2 --- RS_MySQL.html 6 Oct 2004 13:58:59 -0000 1.3 *************** *** 388,392 **** <p class="notes" id="credit"> ! Documentation generated on Mon, 4 Oct 2004 15:26:40 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 388,392 ---- <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:43 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: _TB_Base_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB/_TB_Base_class_php.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** _TB_Base_class_php.html 4 Oct 2004 18:27:05 -0000 1.2 --- _TB_Base_class_php.html 6 Oct 2004 13:58:59 -0000 1.3 *************** *** 18,22 **** <span class="disabled">Description</span> | <a href="#sec-classes">Classes</a> ! | <a href="#sec-constants">Constants</a> </div> <div class="info-box-body"> --- 18,23 ---- <span class="disabled">Description</span> | <a href="#sec-classes">Classes</a> ! | <a href="#sec-includes">Includes</a> ! | <a href="#sec-constants">Constants</a> </div> <div class="info-box-body"> *************** *** 39,43 **** <a href="#sec-description">Description</a> | <span class="disabled">Classes</span> ! | <a href="#sec-constants">Constants</a> </div> <div class="info-box-body"> --- 40,45 ---- <a href="#sec-description">Description</a> | <span class="disabled">Classes</span> ! | <a href="#sec-includes">Includes</a> ! | <a href="#sec-constants">Constants</a> </div> <div class="info-box-body"> *************** *** 59,62 **** --- 61,91 ---- </div> + <a name="sec-includes"></a> + <div class="info-box"> + <div class="info-box-title">Includes</div> + <div class="nav-bar"> + <a href="#sec-description">Description</a> | + <a href="#sec-classes">Classes</a> + | <span class="disabled">Includes</span> + | <a href="#sec-constants">Constants</a> + </div> + <div class="info-box-body"> + <a name="_conf/conf_php"><!-- --></a> + <div class="evenrow"> + + <div> + <span class="include-title"> + <span class="include-type">require_once</span> + (<span class="include-name"><a href="../../Vortex/Util/_conf_conf_php.html">'conf/conf.php'</a></span>) + (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a13">13</a></span>) + </span> + </div> + + <!-- ========== Info from phpDoc block ========= --> + <p class="short-description">Require the global configuration file for access to the localized messages</p> + + </div> + </div> + </div> <a name="sec-constants"></a> *************** *** 66,79 **** <a href="#sec-description">Description</a> | <a href="#sec-classes">Classes</a> ! | <span class="disabled">Constants</span> </div> <div class="info-box-body"> <a name="defineTB_ERR_DB"><!-- --></a> ! <div class="evenrow"> <div> <span class="const-title"> <span class="const-name">TB_ERR_DB</span> = 4 ! (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a41">41</a></span>) </span> </div> --- 95,109 ---- <a href="#sec-description">Description</a> | <a href="#sec-classes">Classes</a> ! | <a href="#sec-includes">Includes</a> ! | <span class="disabled">Constants</span> </div> <div class="info-box-body"> <a name="defineTB_ERR_DB"><!-- --></a> ! <div class="oddrow"> <div> <span class="const-title"> <span class="const-name">TB_ERR_DB</span> = 4 ! (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a44">44</a></span>) </span> </div> *************** *** 86,95 **** </div> <a name="defineTB_ERR_EMPTY"><!-- --></a> ! <div class="oddrow"> <div> <span class="const-title"> <span class="const-name">TB_ERR_EMPTY</span> = 3 ! (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a35">35</a></span>) </span> </div> --- 116,125 ---- </div> <a name="defineTB_ERR_EMPTY"><!-- --></a> ! <div class="evenrow"> <div> <span class="const-title"> <span class="const-name">TB_ERR_EMPTY</span> = 3 ! (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a38">38</a></span>) </span> </div> *************** *** 102,111 **** </div> <a name="defineTB_ERR_INCONSIST"><!-- --></a> ! <div class="evenrow"> <div> <span class="const-title"> <span class="const-name">TB_ERR_INCONSIST</span> = 1 ! (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a23">23</a></span>) </span> </div> --- 132,141 ---- </div> <a name="defineTB_ERR_INCONSIST"><!-- --></a> ! <div class="oddrow"> <div> <span class="const-title"> <span class="const-name">TB_ERR_INCONSIST</span> = 1 ! (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a26">26</a></span>) </span> </div> *************** *** 118,127 **** </div> <a name="defineTB_ERR_NOPKEY"><!-- --></a> ! <div class="oddrow"> <div> <span class="const-title"> <span class="const-name">TB_ERR_NOPKEY</span> = 2 ! (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a29">29</a></span>) </span> </div> --- 148,157 ---- </div> <a name="defineTB_ERR_NOPKEY"><!-- --></a> ! <div class="evenrow"> <div> <span class="const-title"> <span class="const-name">TB_ERR_NOPKEY</span> = 2 ! (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a32">32</a></span>) </span> </div> *************** *** 134,143 **** </div> <a name="defineTB_ERR_OK"><!-- --></a> ! <div class="evenrow"> <div> <span class="const-title"> <span class="const-name">TB_ERR_OK</span> = ! (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a17">17</a></span>) </span> </div> --- 164,173 ---- </div> <a name="defineTB_ERR_OK"><!-- --></a> ! <div class="oddrow"> <div> <span class="const-title"> <span class="const-name">TB_ERR_OK</span> = ! (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a20">20</a></span>) </span> </div> *************** *** 155,159 **** <p class="notes" id="credit"> ! Documentation generated on Mon, 4 Oct 2004 15:26:42 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 185,189 ---- <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:47 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: _FT_Base_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB/_FT_Base_class_php.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** _FT_Base_class_php.html 4 Oct 2004 18:27:05 -0000 1.2 --- _FT_Base_class_php.html 6 Oct 2004 13:58:59 -0000 1.3 *************** *** 62,66 **** <p class="notes" id="credit"> ! Documentation generated on Mon, 4 Oct 2004 15:26:35 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 62,66 ---- <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:38 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: TB_Base.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB/TB_Base.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TB_Base.html 4 Oct 2004 18:27:05 -0000 1.2 --- TB_Base.html 6 Oct 2004 13:58:59 -0000 1.3 *************** *** 26,30 **** <p class="short-description">Base class for tables in databases.</p> <p class="notes"> ! Located in <a class="field" href="_TB_Base_class_php.html">/TB_Base.class.php</a> (line <span class="field"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a49">49</a></span>) </p> --- 26,30 ---- <p class="short-description">Base class for tables in databases.</p> <p class="notes"> ! Located in <a class="field" href="_TB_Base_class_php.html">/TB_Base.class.php</a> (line <span class="field"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a52">52</a></span>) </p> *************** *** 92,96 **** </div> <div class="var-title"> ! <span class="var-type"><a href="../../Vortex/DB/FT_Base.html">FT_Base</a></span> <a href="#$fields_form" title="details" class="var-name">$fields_form</a> </div> --- 92,96 ---- </div> <div class="var-title"> ! <span class="var-type">array</span> <a href="#$fields_form" title="details" class="var-name">$fields_form</a> </div> *************** *** 175,178 **** --- 175,184 ---- <div class="method-definition"> <span class="method-result">bool</span> + <a href="#ShowForm" title="details" class="method-name">ShowForm</a> + (<span class="var-type">string</span> <span class="var-name">$name</span>, <span class="var-type">string</span> <span class="var-name">$action</span>, [<span class="var-type">mixed</span> <span class="var-name">$image</span> = <span class="var-default">NULL</span>], [<span class="var-type">array</span> <span class="var-name">$data</span> = <span class="var-default">NULL</span>], <span class="var-type">string</span> <span class="var-name">$submit</span>) + </div> + + <div class="method-definition"> + <span class="method-result">bool</span> <a href="#ShowList" title="details" class="method-name">ShowList</a> ([<span class="var-type">string</span> <span class="var-name">$url</span> = <span class="var-default">''</span>], [<span class="var-type">int</span> <span class="var-name">$page</span> = <span class="var-default">-1</span>], [<span class="var-type">array</span> <span class="var-name">$data</span> = <span class="var-default">NULL</span>]) *************** *** 197,201 **** <div class="info-box-body"> <a name="var$data" id="$data"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 203,207 ---- <div class="info-box-body"> <a name="var$data" id="$data"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 203,212 **** <span class="var-type">array</span> <span class="var-name">$data</span> ! = <span class="var-default">array()</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a119">119</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> ! <p class="short-description">Array the current row of the table, for output, edit or search.</p> --- 209,218 ---- <span class="var-type">array</span> <span class="var-name">$data</span> ! = <span class="var-default">array()</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a122">122</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> ! <p class="short-description">Array with the current row of the table, for output, edit or search.</p> *************** *** 216,220 **** </div> <a name="var$db" id="$db"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 222,226 ---- </div> <a name="var$db" id="$db"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 222,226 **** <span class="var-type"><a href="../../Vortex/DB/DB_Base.html">DB_Base</a></span> <span class="var-name">$db</span> ! (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a55">55</a></span>) </span> </div> --- 228,232 ---- <span class="var-type"><a href="../../Vortex/DB/DB_Base.html">DB_Base</a></span> <span class="var-name">$db</span> ! (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a58">58</a></span>) </span> </div> *************** *** 235,239 **** </div> <a name="var$error" id="$error"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 241,245 ---- </div> <a name="var$error" id="$error"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 241,245 **** <span class="var-type">int</span> <span class="var-name">$error</span> ! = <span class="var-default"> TB_ERR_OK</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a83">83</a></span>) </span> </div> --- 247,251 ---- <span class="var-type">int</span> <span class="var-name">$error</span> ! = <span class="var-default"> TB_ERR_OK</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a86">86</a></span>) </span> </div> *************** *** 254,258 **** </div> <a name="var$fields" id="$fields"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 260,264 ---- </div> <a name="var$fields" id="$fields"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 260,264 **** <span class="var-type">array</span> <span class="var-name">$fields</span> ! = <span class="var-default">array()</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a89">89</a></span>) </span> </div> --- 266,270 ---- <span class="var-type">array</span> <span class="var-name">$fields</span> ! = <span class="var-default">array()</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a92">92</a></span>) </span> </div> *************** *** 273,283 **** </div> <a name="var$fields_form" id="$fields_form"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> <span class="var-title"> ! <span class="var-type"><a href="../../Vortex/DB/FT_Base.html">FT_Base</a></span> <span class="var-name">$fields_form</span> ! = <span class="var-default">array()</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a113">113</a></span>) </span> </div> --- 279,289 ---- </div> <a name="var$fields_form" id="$fields_form"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> <span class="var-title"> ! <span class="var-type">array</span> <span class="var-name">$fields_form</span> ! = <span class="var-default">array()</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a116">116</a></span>) </span> </div> *************** *** 292,296 **** </div> <a name="var$fields_list" id="$fields_list"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 298,302 ---- </div> <a name="var$fields_list" id="$fields_list"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 298,302 **** <span class="var-type">array</span> <span class="var-name">$fields_list</span> ! = <span class="var-default">array()</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a95">95</a></span>) </span> </div> --- 304,308 ---- <span class="var-type">array</span> <span class="var-name">$fields_list</span> ! = <span class="var-default">array()</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a98">98</a></span>) </span> </div> *************** *** 311,315 **** </div> <a name="var$label" id="$label"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 317,321 ---- </div> <a name="var$label" id="$label"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 317,321 **** <span class="var-type">string</span> <span class="var-name">$label</span> ! (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a77">77</a></span>) </span> </div> --- 323,327 ---- <span class="var-type">string</span> <span class="var-name">$label</span> ! (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a80">80</a></span>) </span> </div> *************** *** 331,335 **** </div> <a name="var$list_order" id="$list_order"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 337,341 ---- </div> <a name="var$list_order" id="$list_order"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 337,341 **** <span class="var-type">string</span> <span class="var-name">$list_order</span> ! = <span class="var-default"> ''</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a101">101</a></span>) </span> </div> --- 343,347 ---- <span class="var-type">string</span> <span class="var-name">$list_order</span> ! = <span class="var-default"> ''</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a104">104</a></span>) </span> </div> *************** *** 350,354 **** </div> <a name="var$list_recspage" id="$list_recspage"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 356,360 ---- </div> <a name="var$list_recspage" id="$list_recspage"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 356,360 **** <span class="var-type">int</span> <span class="var-name">$list_recspage</span> ! = <span class="var-default"> 25</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a107">107</a></span>) </span> </div> --- 362,366 ---- <span class="var-type">int</span> <span class="var-name">$list_recspage</span> ! = <span class="var-default"> 25</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a110">110</a></span>) </span> </div> *************** *** 369,373 **** </div> <a name="var$name" id="$name"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 375,379 ---- </div> <a name="var$name" id="$name"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 375,379 **** <span class="var-type">string</span> <span class="var-name">$name</span> ! (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a61">61</a></span>) </span> </div> --- 381,385 ---- <span class="var-type">string</span> <span class="var-name">$name</span> ! (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a64">64</a></span>) </span> </div> *************** *** 388,392 **** </div> <a name="var$name_db" id="$name_db"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 394,398 ---- </div> <a name="var$name_db" id="$name_db"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 394,398 **** <span class="var-type">string</span> <span class="var-name">$name_db</span> ! (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a69">69</a></span>) </span> </div> --- 400,404 ---- <span class="var-type">string</span> <span class="var-name">$name_db</span> ! (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a72">72</a></span>) </span> </div> *************** *** 424,431 **** <A NAME='method_detail'></A> <a name="methodTB_Base" id="TB_Base"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> ! <span class="method-title">Constructor TB_Base</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a126">126</a></span>) </div> --- 430,437 ---- <A NAME='method_detail'></A> <a name="methodTB_Base" id="TB_Base"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> ! <span class="method-title">Constructor TB_Base</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a129">129</a></span>) </div> *************** *** 450,457 **** </div> <a name="methodDelete" id="Delete"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> ! <span class="method-title">Delete</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a253">253</a></span>) </div> --- 456,463 ---- </div> <a name="methodDelete" id="Delete"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> ! <span class="method-title">Delete</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a256">256</a></span>) </div> *************** *** 479,486 **** </div> <a name="methodError" id="Error"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> ! <span class="method-title">Error</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a138">138</a></span>) </div> --- 485,492 ---- </div> <a name="methodError" id="Error"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> ! <span class="method-title">Error</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a141">141</a></span>) </div> *************** *** 503,510 **** </div> <a name="methodNumPages" id="NumPages"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> ! <span class="method-title">NumPages</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a338">338</a></span>) </div> --- 509,516 ---- </div> <a name="methodNumPages" id="NumPages"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> ! <span class="method-title">NumPages</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a343">343</a></span>) </div> *************** *** 512,516 **** <p class="short-description">Gets the number of pages of a list.</p> <ul class="tags"> ! <li><span class="field">return:</span> Returns the number of pages in a list.</li> </ul> --- 518,522 ---- <p class="short-description">Gets the number of pages of a list.</p> <ul class="tags"> ! <li><span class="field">return:</span> Returns the number of pages in a list or FALSE on error.</li> </ul> *************** *** 532,539 **** </div> <a name="methodSave" id="Save"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> ! <span class="method-title">Save</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a188">188</a></span>) </div> --- 538,545 ---- </div> <a name="methodSave" id="Save"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> ! <span class="method-title">Save</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a191">191</a></span>) </div> *************** *** 561,568 **** </div> <a name="methodSeek" id="Seek"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> ! <span class="method-title">Seek</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a151">151</a></span>) </div> --- 567,574 ---- </div> <a name="methodSeek" id="Seek"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> ! <span class="method-title">Seek</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a154">154</a></span>) </div> *************** *** 592,600 **** </div> <a name="methodShowList" id="ShowList"><!-- --></a> <div class="oddrow"> <div class="method-header"> ! <span class="method-title">ShowList</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a280">280</a></span>) </div> --- 598,644 ---- </div> + <a name="methodShowForm" id="ShowForm"><!-- --></a> + <div class="evenrow"> + + <div class="method-header"> + <span class="method-title">ShowForm</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a375">375</a></span>) + </div> + + <!-- ========== Info from phpDoc block ========= --> + <p class="short-description">Outputs a form for inserting/editing records.</p> + <ul class="tags"> + <li><span class="field">return:</span> Returns TRUE on success, FALSE on error.</li> + </ul> + + <div class="method-signature"> + <span class="method-result">bool</span> + <span class="method-name"> + ShowForm + </span> + (<span class="var-type">string</span> <span class="var-name">$name</span>, <span class="var-type">string</span> <span class="var-name">$action</span>, [<span class="var-type">mixed</span> <span class="var-name">$image</span> = <span class="var-default">NULL</span>], [<span class="var-type">array</span> <span class="var-name">$data</span> = <span class="var-default">NULL</span>], <span class="var-type">string</span> <span class="var-name">$submit</span>) + </div> + + <ul class="parameters"> + <li> + <span class="var-type">string</span> + <span class="var-name">$name</span><span class="var-description">: The HTML FORM name.</span> </li> + <li> + <span class="var-type">string</span> + <span class="var-name">$action</span><span class="var-description">: Where to submit the data to.</span> </li> + <li> + <span class="var-type">string</span> + <span class="var-name">$submit</span><span class="var-description">: HTML containing the last line in a form, leave NULL to use a normal submit button.</span> </li> + <li> + <span class="var-type">array</span> + <span class="var-name">$data</span><span class="var-description">: Array containing the data to seek as 'field' => 'value'.</span> </li> + </ul> + + + </div> <a name="methodShowList" id="ShowList"><!-- --></a> <div class="oddrow"> <div class="method-header"> ! <span class="method-title">ShowList</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a283">283</a></span>) </div> *************** *** 633,637 **** <p class="notes" id="credit"> ! Documentation generated on Mon, 4 Oct 2004 15:26:44 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 677,681 ---- <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:49 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: FT_Base.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB/FT_Base.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** FT_Base.html 4 Oct 2004 18:27:05 -0000 1.2 --- FT_Base.html 6 Oct 2004 13:58:59 -0000 1.3 *************** *** 197,201 **** <div class="info-box-body"> <a name="var$db" id="$db"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 197,201 ---- <div class="info-box-body"> <a name="var$db" id="$db"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 216,220 **** </div> <a name="var$default" id="$default"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 216,220 ---- </div> <a name="var$default" id="$default"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 235,239 **** </div> <a name="var$label" id="$label"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 235,239 ---- </div> <a name="var$label" id="$label"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 255,259 **** </div> <a name="var$name" id="$name"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 255,259 ---- </div> <a name="var$name" id="$name"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 274,278 **** </div> <a name="var$name_db" id="$name_db"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 274,278 ---- </div> <a name="var$name_db" id="$name_db"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 294,298 **** </div> <a name="var$name_form" id="$name_form"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 294,298 ---- </div> <a name="var$name_form" id="$name_form"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 314,318 **** </div> <a name="var$pkey" id="$pkey"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 314,318 ---- </div> <a name="var$pkey" id="$pkey"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 333,337 **** </div> <a name="var$required" id="$required"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 333,337 ---- </div> <a name="var$required" id="$required"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 368,372 **** <A NAME='method_detail'></A> <a name="methodFT_Base" id="FT_Base"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> --- 368,372 ---- <A NAME='method_detail'></A> <a name="methodFT_Base" id="FT_Base"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> *************** *** 397,401 **** </div> <a name="methodConsist" id="Consist"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> --- 397,401 ---- </div> <a name="methodConsist" id="Consist"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> *************** *** 426,430 **** </div> <a name="methodConsistFormat" id="ConsistFormat"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> --- 426,430 ---- </div> <a name="methodConsistFormat" id="ConsistFormat"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> *************** *** 455,459 **** </div> <a name="methodConsistTest" id="ConsistTest"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> --- 455,459 ---- </div> <a name="methodConsistTest" id="ConsistTest"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> *************** *** 492,496 **** </div> <a name="methodJSConsist" id="JSConsist"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> --- 492,496 ---- </div> <a name="methodJSConsist" id="JSConsist"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> *************** *** 524,528 **** </div> <a name="methodShow" id="Show"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> --- 524,528 ---- </div> <a name="methodShow" id="Show"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> *************** *** 553,557 **** </div> <a name="methodShowForm" id="ShowForm"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> --- 553,557 ---- </div> <a name="methodShowForm" id="ShowForm"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> *************** *** 590,594 **** </div> <a name="methodShowPlain" id="ShowPlain"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> --- 590,594 ---- </div> <a name="methodShowPlain" id="ShowPlain"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> *************** *** 624,628 **** </div> <a name="methodWhere" id="Where"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> --- 624,628 ---- </div> <a name="methodWhere" id="Where"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> *************** *** 666,670 **** <p class="notes" id="credit"> ! Documentation generated on Mon, 4 Oct 2004 15:26:36 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 666,670 ---- <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:39 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: _RS_Base_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB/_RS_Base_class_php.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** _RS_Base_class_php.html 4 Oct 2004 18:27:05 -0000 1.2 --- _RS_Base_class_php.html 6 Oct 2004 13:58:59 -0000 1.3 *************** *** 123,127 **** <p class="notes" id="credit"> ! Documentation generated on Mon, 4 Oct 2004 15:26:39 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 123,127 ---- <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:42 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: FT_Text.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB/FT_Text.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** FT_Text.html 4 Oct 2004 18:27:05 -0000 1.2 --- FT_Text.html 6 Oct 2004 13:58:59 -0000 1.3 *************** *** 126,130 **** <div class="info-box-body"> <a name="var$cols" id="$cols"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 126,130 ---- <div class="info-box-body"> <a name="var$cols" id="$cols"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 145,149 **** </div> <a name="var$rows" id="$rows"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 145,149 ---- </div> <a name="var$rows" id="$rows"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 164,168 **** </div> <a name="var$size" id="$size"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 164,168 ---- </div> <a name="var$size" id="$size"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 227,234 **** <A NAME='method_detail'></A> <a name="methodConsistTest" id="ConsistTest"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> ! <span class="method-title">ConsistTest</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_FT_Text.class.php.html#a84">84</a></span>) </div> --- 227,234 ---- <A NAME='method_detail'></A> <a name="methodConsistTest" id="ConsistTest"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> ! <span class="method-title">ConsistTest</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_FT_Text.class.php.html#a85">85</a></span>) </div> *************** *** 262,266 **** </div> <a name="methodJSConsist" id="JSConsist"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> --- 262,266 ---- </div> <a name="methodJSConsist" id="JSConsist"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> *************** *** 289,293 **** </div> <a name="methodShowForm" id="ShowForm"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> --- 289,293 ---- </div> <a name="methodShowForm" id="ShowForm"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> *************** *** 321,325 **** </div> <a name="methodShowPlain" id="ShowPlain"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> --- 321,325 ---- </div> <a name="methodShowPlain" id="ShowPlain"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> *************** *** 353,360 **** </div> <a name="methodWhere" id="Where"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> ! <span class="method-title">Where</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_FT_Text.class.php.html#a96">96</a></span>) </div> --- 353,360 ---- </div> <a name="methodWhere" id="Where"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> ! <span class="method-title">Where</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_FT_Text.class.php.html#a97">97</a></span>) </div> *************** *** 408,412 **** <p class="notes" id="credit"> ! Documentation generated on Mon, 4 Oct 2004 15:26:37 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 408,412 ---- <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:40 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: _FT_Text_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB/_FT_Text_class_php.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** _FT_Text_class_php.html 4 Oct 2004 18:27:05 -0000 1.2 --- _FT_Text_class_php.html 6 Oct 2004 13:58:59 -0000 1.3 *************** *** 69,73 **** <div class="info-box-body"> <a name="_FT_Base_class_php"><!-- --></a> ! <div class="evenrow"> <div> --- 69,73 ---- <div class="info-box-body"> <a name="_FT_Base_class_php"><!-- --></a> ! <div class="oddrow"> <div> *************** *** 90,94 **** <p class="notes" id="credit"> ! Documentation generated on Mon, 4 Oct 2004 15:26:37 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 90,94 ---- <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:40 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: _DB_MySQL_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB/_DB_MySQL_class_php.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** _DB_MySQL_class_php.html 4 Oct 2004 18:27:05 -0000 1.2 --- _DB_MySQL_class_php.html 6 Oct 2004 13:58:59 -0000 1.3 *************** *** 69,73 **** <div class="info-box-body"> <a name="_DB_Base_class_php"><!-- --></a> ! <div class="oddrow"> <div> --- 69,73 ---- <div class="info-box-body"> <a name="_DB_Base_class_php"><!-- --></a> ! <div class="evenrow"> <div> *************** *** 84,88 **** </div> <a name="_RS_MySQL_class_php"><!-- --></a> ! <div class="evenrow"> <div> --- 84,88 ---- </div> <a name="_RS_MySQL_class_php"><!-- --></a> ! <div class="oddrow"> <div> *************** *** 105,109 **** <p class="notes" id="credit"> ! Documentation generated on Mon, 4 Oct 2004 15:26:33 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 105,109 ---- <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:35 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: _RS_MySQL_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB/_RS_MySQL_class_php.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** _RS_MySQL_class_php.html 4 Oct 2004 18:27:05 -0000 1.2 --- _RS_MySQL_class_php.html 6 Oct 2004 13:58:59 -0000 1.3 *************** *** 90,94 **** <p class="notes" id="credit"> ! Documentation generated on Mon, 4 Oct 2004 15:26:40 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 90,94 ---- <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:43 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: _DB_Base_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB/_DB_Base_class_php.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** _DB_Base_class_php.html 4 Oct 2004 18:27:05 -0000 1.2 --- _DB_Base_class_php.html 6 Oct 2004 13:58:59 -0000 1.3 *************** *** 62,66 **** <p class="notes" id="credit"> ! Documentation generated on Mon, 4 Oct 2004 15:26:31 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 62,66 ---- <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:33 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: DB_Base.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB/DB_Base.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** DB_Base.html 4 Oct 2004 18:27:05 -0000 1.2 --- DB_Base.html 6 Oct 2004 13:58:59 -0000 1.3 *************** *** 209,213 **** <div class="info-box-body"> <a name="var$db" id="$db"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 209,213 ---- <div class="info-box-body"> <a name="var$db" id="$db"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 228,232 **** </div> <a name="var$link" id="$link"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 228,232 ---- </div> <a name="var$link" id="$link"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 247,251 **** </div> <a name="var$pw" id="$pw"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 247,251 ---- </div> <a name="var$pw" id="$pw"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 266,270 **** </div> <a name="var$server" id="$server"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 266,270 ---- </div> <a name="var$server" id="$server"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 285,289 **** </div> <a name="var$user" id="$user"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 285,289 ---- </div> <a name="var$user" id="$user"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 320,324 **** <A NAME='method_detail'></A> <a name="methodDB_Base" id="DB_Base"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> --- 320,324 ---- <A NAME='method_detail'></A> <a name="methodDB_Base" id="DB_Base"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> *************** *** 346,350 **** </div> <a name="methodAddSlashes" id="AddSlashes"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> --- 346,350 ---- </div> <a name="methodAddSlashes" id="AddSlashes"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> *************** *** 384,388 **** </div> <a name="methodBegin" id="Begin"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> --- 384,388 ---- </div> <a name="methodBegin" id="Begin"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> *************** *** 417,421 **** </div> <a name="methodClose" id="Close"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> --- 417,421 ---- </div> <a name="methodClose" id="Close"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> *************** *** 450,454 **** </div> <a name="methodCommit" id="Commit"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> --- 450,454 ---- </div> <a name="methodCommit" id="Commit"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> *************** *** 483,487 **** </div> <a name="methodConnect" id="Connect"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> --- 483,487 ---- </div> <a name="methodConnect" id="Connect"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> *************** *** 521,525 **** </div> <a name="methodDelete" id="Delete"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> --- 521,525 ---- </div> <a name="methodDelete" id="Delete"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> *************** *** 553,557 **** </div> <a name="methodDuplicate" id="Duplicate"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> --- 553,557 ---- </div> <a name="methodDuplicate" id="Duplicate"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> *************** *** 577,581 **** </div> <a name="methodError" id="Error"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> --- 577,581 ---- </div> <a name="methodError" id="Error"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> *************** *** 610,614 **** </div> <a name="methodInsert" id="Insert"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> --- 610,614 ---- </div> <a name="methodInsert" id="Insert"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> *************** *** 642,646 **** </div> <a name="methodQuery" id="Query"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> --- 642,646 ---- </div> <a name="methodQuery" id="Query"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> *************** *** 680,684 **** </div> <a name="methodRollback" id="Rollback"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> --- 680,684 ---- </div> <a name="methodRollback" id="Rollback"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> *************** *** 713,717 **** </div> <a name="methodUpdate" id="Update"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> --- 713,717 ---- </div> <a name="methodUpdate" id="Update"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> *************** *** 753,757 **** <p class="notes" id="credit"> ! Documentation generated on Mon, 4 Oct 2004 15:26:32 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 753,757 ---- <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:34 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> Index: DB_MySQL.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB/DB_MySQL.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** DB_MySQL.html 4 Oct 2004 18:27:05 -0000 1.2 --- DB_MySQL.html 6 Oct 2004 13:58:59 -0000 1.3 *************** *** 152,156 **** <A NAME='method_detail'></A> <a name="methodAddSlashes" id="AddSlashes"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> --- 152,156 ---- <A NAME='method_detail'></A> <a name="methodAddSlashes" id="AddSlashes"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> *************** *** 187,191 **** </div> <a name="methodBegin" id="Begin"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> --- 187,191 ---- </div> <a name="methodBegin" id="Begin"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> *************** *** 217,221 **** </div> <a name="methodClose" id="Close"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> --- 217,221 ---- </div> <a name="methodClose" id="Close"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> *************** *** 247,251 **** </div> <a name="methodCommit" id="Commit"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> --- 247,251 ---- </div> <a name="methodCommit" id="Commit"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> *************** *** 277,281 **** </div> <a name="methodConnect" id="Connect"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> --- 277,281 ---- </div> <a name="methodConnect" id="Connect"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> *************** *** 312,316 **** </div> <a name="methodError" id="Error"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> --- 312,316 ---- </div> <a name="methodError" id="Error"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> *************** *** 342,346 **** </div> <a name="methodQuery" id="Query"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> --- 342,346 ---- </div> <a name="methodQuery" id="Query"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> *************** *** 377,381 **** </div> <a name="methodRollback" id="Rollback"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> --- 377,381 ---- </div> <a name="methodRollback" id="Rollback"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> *************** *** 431,435 **** <p class="notes" id="credit"> ! Documentation generated on Mon, 4 Oct 2004 15:26:33 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 431,435 ---- <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:36 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> |
Update of /cvsroot/phpvortex/phpvortex/doc/html/__filesource In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29076/doc/html/__filesource Modified Files: fsource_Vortex_DB_DB_Base.class.php.html fsource_Vortex_DB_DB_MySQL.class.php.html fsource_Vortex_DB_FT_Base.class.php.html fsource_Vortex_DB_FT_Text.class.php.html fsource_Vortex_DB_RS_Base.class.php.html fsource_Vortex_DB_RS_MySQL.class.php.html fsource_Vortex_DB_TB_Base.class.php.html fsource_Vortex_Debug_d_footer.php.html fsource_Vortex_Debug_d_header.php.html fsource_Vortex_Debug_debug.php.html fsource_Vortex_Debug_testvortex_test.php.html fsource_Vortex_Page_SEC_Base.class.php.html fsource_Vortex_Page_SEC_Static.class.php.html fsource_Vortex_Util_Class Template.php.html Added Files: fsource_Vortex_Page_SEC_Header.class.php.html fsource_Vortex_Page_SEC_Page.class.php.html fsource_Vortex_Util_confconf.php.html fsource_Vortex_Util_conflang_en.php.html fsource_Vortex_Util_conflang_pt_br.php.html Log Message: Updating documentation Index: fsource_Vortex_Debug_debug.php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/__filesource/fsource_Vortex_Debug_debug.php.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** fsource_Vortex_Debug_debug.php.html 4 Oct 2004 18:27:07 -0000 1.2 --- fsource_Vortex_Debug_debug.php.html 6 Oct 2004 13:59:00 -0000 1.3 *************** *** 82,86 **** </div> <p class="notes" id="credit"> ! Documentation generated on Mon, 4 Oct 2004 15:26:34 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> --- 82,86 ---- </div> <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:37 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> Index: fsource_Vortex_Page_SEC_Base.class.php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/__filesource/fsource_Vortex_Page_SEC_Base.class.php.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** fsource_Vortex_Page_SEC_Base.class.php.html 4 Oct 2004 18:27:07 -0000 1.2 --- fsource_Vortex_Page_SEC_Base.class.php.html 6 Oct 2004 13:59:00 -0000 1.3 *************** *** 32,61 **** <li><a name="a19"></a><span class="src-sym">{</span></li> <li><a name="a20"></a> <span class="src-doc">/**</span></li> ! <li><a name="a21"></a><span class="src-doc"> * Constructor: Load all parameters into member variables.</span></li> ! <li><a name="a22"></a><span class="src-doc"> *</span></li> ! <li><a name="a23"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@param </span><span class="src-doc-type">array </span><span class="src-doc-var">$opts </span><span class="src-doc">Parameters for the object, as 'var' => 'value'.</span></li> ! <li><a name="a24"></a><span class="src-doc"> */</span></li> ! <li><a name="a25"></a> <span class="src-key">function </span><a href="../Vortex/Page/SEC_Base.html#methodSEC_Base">SEC_Base</a><span class="src-sym">(</span><span class="src-var">$opts </span>= <span class="src-key">array</span><span class="src-sym">(</span><span class="src-sym">))</span></li> ! <li><a name="a26"></a> <span class="src-sym">{</span></li> ! <li><a name="a27"></a> <span class="src-key">foreach </span><span class="src-sym">(</span><span class="src-var">$opts </span><span class="src-key">as </span><span class="src-var">$key </span>=> <span class="src-var">$value</span><span class="src-sym">) </span><span class="src-sym">{</span></li> ! <li><a name="a28"></a> <span class="src-var">$this</span><span class="src-sym">-></span><span class="src-var">$key </span>= <span class="src-var">$value</span><span class="src-sym">;</span></li> ! <li><a name="a29"></a> <span class="src-sym">}</span></li> ! <li><a name="a30"></a> <span class="src-sym">}</span></li> ! <li><a name="a31"></a> </li> ! <li><a name="a32"></a> <span class="src-doc">/**</span></li> ! <li><a name="a33"></a><span class="src-doc"> * Outputs the section to the client.</span></li> ! <li><a name="a34"></a><span class="src-doc"> *</span></li> ! <li><a name="a35"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@abstract</span></li> ! <li><a name="a36"></a><span class="src-doc"> */</span></li> ! <li><a name="a37"></a> <span class="src-key">function </span><a href="../Vortex/Page/SEC_Base.html#methodShow">Show</a><span class="src-sym">(</span><span class="src-sym">)</span></li> ! <li><a name="a38"></a> <span class="src-sym">{</span></li> ! <li><a name="a39"></a> <span class="src-sym">}</span></li> ! <li><a name="a40"></a><span class="src-sym">}</span></li> ! <li><a name="a41"></a> </li> ! <li><a name="a42"></a><span class="src-php">?></span></li> </ol></pre> </div> <p class="notes" id="credit"> ! Documentation generated on Mon, 4 Oct 2004 15:26:41 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> --- 32,110 ---- <li><a name="a19"></a><span class="src-sym">{</span></li> <li><a name="a20"></a> <span class="src-doc">/**</span></li> ! <li><a name="a21"></a><span class="src-doc"> * Child sections list.</span></li> ! <li><a name="a22"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@var </span><span class="src-doc-type">array </span></li> ! <li><a name="a23"></a><span class="src-doc"> */</span></li> ! <li><a name="a24"></a> <span class="src-key">var </span><a href="../Vortex/Page/SEC_Base.html#var$sections">$sections</a> = <span class="src-key">array</span><span class="src-sym">(</span><span class="src-sym">)</span><span class="src-sym">;</span></li> ! <li><a name="a25"></a> </li> ! <li><a name="a26"></a> <span class="src-doc">/**</span></li> ! <li><a name="a27"></a><span class="src-doc"> * Constructor: Load all parameters into member variables.</span></li> ! <li><a name="a28"></a><span class="src-doc"> *</span></li> ! <li><a name="a29"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@param </span><span class="src-doc-type">array </span><span class="src-doc-var">$opts </span><span class="src-doc">Parameters for the object, as 'var' => 'value'.</span></li> ! <li><a name="a30"></a><span class="src-doc"> */</span></li> ! <li><a name="a31"></a> <span class="src-key">function </span><a href="../Vortex/Page/SEC_Base.html#methodSEC_Base">SEC_Base</a><span class="src-sym">(</span><span class="src-var">$opts </span>= <span class="src-key">array</span><span class="src-sym">(</span><span class="src-sym">))</span></li> ! <li><a name="a32"></a> <span class="src-sym">{</span></li> ! <li><a name="a33"></a> <span class="src-key">foreach </span><span class="src-sym">(</span><span class="src-var">$opts </span><span class="src-key">as </span><span class="src-var">$key </span>=> <span class="src-var">$value</span><span class="src-sym">) </span><span class="src-sym">{</span></li> ! <li><a name="a34"></a> <span class="src-var">$this</span><span class="src-sym">-></span><span class="src-var">$key </span>= <span class="src-var">$value</span><span class="src-sym">;</span></li> ! <li><a name="a35"></a> <span class="src-sym">}</span></li> ! <li><a name="a36"></a> <span class="src-sym">}</span></li> ! <li><a name="a37"></a> </li> ! <li><a name="a38"></a> <span class="src-doc">/**</span></li> ! <li><a name="a39"></a><span class="src-doc"> * Add a new child section.</span></li> ! <li><a name="a40"></a><span class="src-doc"> *</span></li> ! <li><a name="a41"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@param </span><span class="src-doc-type">string </span><span class="src-doc-var">$section </span><span class="src-doc">Section name.</span></li> ! <li><a name="a42"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@param </span><span class="src-doc-type">SEC_Base </span><span class="src-doc-var">$class </span><span class="src-doc">Section class.</span></li> ! <li><a name="a43"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@param </span><span class="src-doc-type">array </span><span class="src-doc-var">$opts </span><span class="src-doc">Section class options.</span></li> ! <li><a name="a44"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@param </span><span class="src-doc-type">string </span><span class="src-doc-var">$position </span><span class="src-doc">Position on where to insert the section (insert before section $position).</span></li> ! <li><a name="a45"></a><span class="src-doc"> */</span></li> ! <li><a name="a46"></a> <span class="src-key">function </span><a href="../Vortex/Page/SEC_Base.html#methodAddSection">AddSection</a><span class="src-sym">(</span><span class="src-var">$section</span><span class="src-sym">, </span><span class="src-var">$class</span><span class="src-sym">, </span><span class="src-var">$opts </span>= <span class="src-key">array</span><span class="src-sym">(</span><span class="src-sym">)</span><span class="src-sym">, </span><span class="src-var">$position </span>= <span class="src-id">NULL</span><span class="src-sym">)</span></li> ! <li><a name="a47"></a> <span class="src-sym">{</span></li> ! <li><a name="a48"></a> <span class="src-inc">include_once</span><span class="src-sym">(</span><span class="src-var">$class</span>.<span class="src-str">'.class.php'</span><span class="src-sym">)</span><span class="src-sym">;</span></li> ! <li><a name="a49"></a> <span class="src-key">if </span><span class="src-sym">(</span><a href="http://www.php.net/is_null">is_null</a><span class="src-sym">(</span><span class="src-var">$position</span><span class="src-sym">)) </span><span class="src-sym">{</span></li> ! <li><a name="a50"></a> <span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/Page/SEC_Base.html#var$sections">sections</a><span class="src-sym">[</span><span class="src-var">$section</span><span class="src-sym">] </span>= <span class="src-sym">&</span><span class="src-key">new </span><span class="src-var">$class</span><span class="src-sym">(</span><span class="src-var">$opts</span><span class="src-sym">)</span><span class="src-sym">;</span></li> ! <li><a name="a51"></a> <span class="src-sym">} </span><span class="src-key">else </span><span class="src-sym">{</span></li> ! <li><a name="a52"></a> <span class="src-var">$tmp </span>= <span class="src-key">array</span><span class="src-sym">(</span><span class="src-sym">)</span><span class="src-sym">;</span></li> ! <li><a name="a53"></a> <span class="src-var">$found </span>= <span class="src-id">false</span><span class="src-sym">;</span></li> ! <li><a name="a54"></a> <span class="src-key">foreach </span><span class="src-sym">(</span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/Page/SEC_Base.html#var$sections">sections</a> <span class="src-key">as </span><span class="src-var">$k </span>=> <span class="src-var">$i</span><span class="src-sym">) </span><span class="src-sym">{</span></li> ! <li><a name="a55"></a> <span class="src-key">if </span><span class="src-sym">(</span><span class="src-sym">!</span><a href="http://www.php.net/strcmp">strcmp</a><span class="src-sym">(</span><span class="src-var">$k</span><span class="src-sym">, </span><span class="src-var">$position</span><span class="src-sym">)) </span><span class="src-sym">{</span></li> ! <li><a name="a56"></a> <span class="src-var">$found </span>= <span class="src-id">true</span><span class="src-sym">;</span></li> ! <li><a name="a57"></a> <span class="src-var">$tmp</span><span class="src-sym">[</span><span class="src-var">$section</span><span class="src-sym">] </span>= <span class="src-sym">&</span><span class="src-key">new </span><span class="src-var">$class</span><span class="src-sym">(</span><span class="src-var">$opts</span><span class="src-sym">)</span><span class="src-sym">;</span></li> ! <li><a name="a58"></a> <span class="src-sym">}</span></li> ! <li><a name="a59"></a> <span class="src-var">$tmp</span><span class="src-sym">[</span><span class="src-var">$k</span><span class="src-sym">] </span>= <span class="src-sym">&</span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/Page/SEC_Base.html#var$sections">sections</a><span class="src-sym">[</span><span class="src-var">$k</span><span class="src-sym">]</span><span class="src-sym">;</span></li> ! <li><a name="a60"></a> <span class="src-sym">}</span></li> ! <li><a name="a61"></a> <span class="src-key">if </span><span class="src-sym">(</span><span class="src-sym">!</span><span class="src-var">$found</span><span class="src-sym">) </span><span class="src-sym">{</span></li> ! <li><a name="a62"></a> <span class="src-var">$tmp</span><span class="src-sym">[</span><span class="src-var">$section</span><span class="src-sym">] </span>= <span class="src-sym">&</span><span class="src-key">new </span><span class="src-var">$class</span><span class="src-sym">(</span><span class="src-var">$opts</span><span class="src-sym">)</span><span class="src-sym">;</span></li> ! <li><a name="a63"></a> <span class="src-sym">}</span></li> ! <li><a name="a64"></a> <span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/Page/SEC_Base.html#var$sections">sections</a> = <span class="src-sym">&</span><span class="src-var">$tmp</span><span class="src-sym">;</span></li> ! <li><a name="a65"></a> <span class="src-sym">}</span></li> ! <li><a name="a66"></a> <span class="src-sym">}</span></li> ! <li><a name="a67"></a> </li> ! <li><a name="a68"></a> <span class="src-doc">/**</span></li> ! <li><a name="a69"></a><span class="src-doc"> * Remove a child section from the section.</span></li> ! <li><a name="a70"></a><span class="src-doc"> *</span></li> ! <li><a name="a71"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@param </span><span class="src-doc-type">string </span><span class="src-doc-var">$section </span><span class="src-doc">Section name.</span></li> ! <li><a name="a72"></a><span class="src-doc"> */</span></li> ! <li><a name="a73"></a> <span class="src-key">function </span><a href="../Vortex/Page/SEC_Base.html#methodDelSection">DelSection</a><span class="src-sym">(</span><span class="src-var">$section</span><span class="src-sym">)</span></li> ! <li><a name="a74"></a> <span class="src-sym">{</span></li> ! <li><a name="a75"></a> unset<span class="src-sym">(</span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/Page/SEC_Base.html#var$sections">sections</a><span class="src-sym">[</span><span class="src-var">$section</span><span class="src-sym">]</span><span class="src-sym">)</span><span class="src-sym">;</span></li> ! <li><a name="a76"></a> <span class="src-sym">}</span></li> ! <li><a name="a77"></a> </li> ! <li><a name="a78"></a> <span class="src-doc">/**</span></li> ! <li><a name="a79"></a><span class="src-doc"> * Outputs the section to the client.</span></li> ! <li><a name="a80"></a><span class="src-doc"> *</span></li> ! <li><a name="a81"></a><span class="src-doc"> * Show all childs in order.</span></li> ! <li><a name="a82"></a><span class="src-doc"> */</span></li> ! <li><a name="a83"></a> <span class="src-key">function </span><a href="../Vortex/Page/SEC_Base.html#methodShow">Show</a><span class="src-sym">(</span><span class="src-sym">)</span></li> ! <li><a name="a84"></a> <span class="src-sym">{</span></li> ! <li><a name="a85"></a> <span class="src-key">foreach </span><span class="src-sym">(</span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/Page/SEC_Base.html#var$sections">sections</a> <span class="src-key">as </span><span class="src-var">$sec</span><span class="src-sym">) </span><span class="src-sym">{</span></li> ! <li><a name="a86"></a> <span class="src-var">$sec</span><span class="src-sym">-></span><span class="src-id">Show</span><span class="src-sym">(</span><span class="src-sym">)</span><span class="src-sym">;</span></li> ! <li><a name="a87"></a> <span class="src-sym">}</span></li> ! <li><a name="a88"></a> <span class="src-sym">}</span></li> ! <li><a name="a89"></a><span class="src-sym">}</span></li> ! <li><a name="a90"></a> </li> ! <li><a name="a91"></a><span class="src-php">?></span></li> </ol></pre> </div> <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:44 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> Index: fsource_Vortex_DB_RS_MySQL.class.php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/__filesource/fsource_Vortex_DB_RS_MySQL.class.php.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** fsource_Vortex_DB_RS_MySQL.class.php.html 4 Oct 2004 18:27:07 -0000 1.2 --- fsource_Vortex_DB_RS_MySQL.class.php.html 6 Oct 2004 13:59:00 -0000 1.3 *************** *** 137,141 **** </div> <p class="notes" id="credit"> ! Documentation generated on Mon, 4 Oct 2004 15:26:40 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> --- 137,141 ---- </div> <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:43 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> --- NEW FILE: fsource_Vortex_Util_conflang_pt_br.php.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <!-- template designed by Marco Von Ballmoos --> <title>File Source for lang_pt_br.php</title> <link rel="stylesheet" href="../media/stylesheet.css" /> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> </head> <body> <h1>Source for file lang_pt_br.php</h1> <p>Documentation is available at <a href="../Vortex/Util/_conf_lang_pt_br_php.html">lang_pt_br.php</a></p> <div class="src-code"> <pre><ol><li><a name="a1"></a><span class="src-php"><?php</span></li> <li><a name="a2"></a><span class="src-doc">/**</span></li> <li><a name="a3"></a><span class="src-doc"> * File with messages for output in PT-BR.</span></li> <li><a name="a4"></a><span class="src-doc"> *</span></li> <li><a name="a5"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@package</span><span class="src-doc"> Vortex</span></li> <li><a name="a6"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@subpackage</span><span class="src-doc"> Util</span></li> <li><a name="a7"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@author</span><span class="src-doc"> Thiago Ramon Gonçalves Montoya</span></li> <li><a name="a8"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@copyright</span><span class="src-doc"> Copyright 2004, Thiago Ramon Gonçalves Montoya</span></li> <li><a name="a9"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@license</span><span class="src-doc"> http://opensource.org/licenses/lgpl-license.php GNU Lesser General Public License</span></li> <li><a name="a10"></a><span class="src-doc"> */</span></li> <li><a name="a11"></a> </li> <li><a name="a12"></a><span class="src-var">$vortex_msgs </span>= <span class="src-key">array</span><span class="src-sym">(</span><span class="src-sym">)</span><span class="src-sym">;</span></li> <li><a name="a13"></a><span class="src-var">$vortex_msgs</span><span class="src-sym">[</span><span class="src-str">'consist_error'</span><span class="src-sym">] </span>= <span class="src-str">'Os seguintes campos são de preenchimento obrigatório:'</span><span class="src-sym">;</span></li> <li><a name="a14"></a><span class="src-php">?></span></li> </ol></pre> </div> <p class="notes" id="credit"> Documentation generated on Tue, 5 Oct 2004 18:34:41 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> </html> Index: fsource_Vortex_DB_FT_Text.class.php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/__filesource/fsource_Vortex_DB_FT_Text.class.php.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** fsource_Vortex_DB_FT_Text.class.php.html 4 Oct 2004 18:27:07 -0000 1.2 --- fsource_Vortex_DB_FT_Text.class.php.html 6 Oct 2004 13:59:00 -0000 1.3 *************** *** 66,70 **** <li><a name="a52"></a> echo <span class="src-str">"</span><span class="src-str"><<span class="src-id">textarea</span> <span class="src-id">name</span>='{<span class="src-var">$this</span></span><span class="src-sym">-></span><a href="../Vortex/DB/FT_Base.html#var$name_form">name_form</a><span class="src-sym">}</span>' <span class="src-id">rows</span>='{<span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/FT_Text.html#var$rows">rows</a><span class="src-sym">}</span>'</span><span class="src-str"><span class="src-str">"</span>.<span class="src-sym">((</span><span class="src-var">$this</span></span><span class="src-sym">-></span><a href="../Vortex/DB/FT_Text.html#var$cols">cols</a> > <span class="src-num">0</span><span class="src-sym">)</span>?</span><span class="src-str"><span class="src-str">"</span> <span class="src-id">cols</span>='</span>{<span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/FT_Text.html#var$cols">cols</a><span class="src-sym">}</span>'</span><span class="src-str"><span class="src-str">"</span>:<span class="src-str">''</span><span class="src-sym">)</span>.<span class="src-str">"</span>><span class="src-var">$value</span></<span class="src-id">textarea</span>><span class="src-str">"</span><span class="src-sym">;</span></span></li> <li><a name="a53"></a></span><span class="src-str"> <span class="src-sym">}</span> <span class="src-key">else</span> <span class="src-sym">{</span></span></li> ! <li><a name="a54"></a></span><span class="src-str"> echo <span class="src-str">"</span><<span class="src-id">input</span> <span class="src-id">type</span>='<span class="src-id">text</span>' <span class="src-id">name</span>='</span>{<span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/FT_Base.html#var$name_form">name_form</a><span class="src-sym">}</span>' <span class="src-id">value</span>='<span class="src-var">$value</span>'</span><span class="src-str"><span class="src-str">"</span>.<span class="src-sym">((</span><span class="src-var">$this</span></span><span class="src-sym">-></span><a href="../Vortex/DB/FT_Text.html#var$size">size</a> > <span class="src-num">0</span><span class="src-sym">)</span>?</span><span class="src-str"><span class="src-str">"</span> <span class="src-id">maxlength</span>='</span>{<span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/FT_Text.html#var$size">size</a><span class="src-sym">}</span>'</span><span class="src-str"><span class="src-str">"</span>:<span class="src-str">''</span><span class="src-sym">)</span>.<span class="src-str">'>'</span><span class="src-sym">;</span></span></li> <li><a name="a55"></a></span><span class="src-str"> <span class="src-sym">}</span></span></li> <li><a name="a56"></a></span><span class="src-str"> <span class="src-sym">}</span></span></li> --- 66,70 ---- <li><a name="a52"></a> echo <span class="src-str">"</span><span class="src-str"><<span class="src-id">textarea</span> <span class="src-id">name</span>='{<span class="src-var">$this</span></span><span class="src-sym">-></span><a href="../Vortex/DB/FT_Base.html#var$name_form">name_form</a><span class="src-sym">}</span>' <span class="src-id">rows</span>='{<span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/FT_Text.html#var$rows">rows</a><span class="src-sym">}</span>'</span><span class="src-str"><span class="src-str">"</span>.<span class="src-sym">((</span><span class="src-var">$this</span></span><span class="src-sym">-></span><a href="../Vortex/DB/FT_Text.html#var$cols">cols</a> > <span class="src-num">0</span><span class="src-sym">)</span>?</span><span class="src-str"><span class="src-str">"</span> <span class="src-id">cols</span>='</span>{<span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/FT_Text.html#var$cols">cols</a><span class="src-sym">}</span>'</span><span class="src-str"><span class="src-str">"</span>:<span class="src-str">''</span><span class="src-sym">)</span>.<span class="src-str">"</span>><span class="src-var">$value</span></<span class="src-id">textarea</span>><span class="src-str">"</span><span class="src-sym">;</span></span></li> <li><a name="a53"></a></span><span class="src-str"> <span class="src-sym">}</span> <span class="src-key">else</span> <span class="src-sym">{</span></span></li> ! <li><a name="a54"></a></span><span class="src-str"> echo <span class="src-str">"</span><<span class="src-id">input</span> <span class="src-id">type</span>='<span class="src-id">text</span>' <span class="src-id">name</span>='</span>{<span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/FT_Base.html#var$name_form">name_form</a><span class="src-sym">}</span>' <span class="src-id">value</span>='<span class="src-var">$value</span>'</span><span class="src-str"><span class="src-str">"</span>.<span class="src-sym">((</span><span class="src-var">$this</span></span><span class="src-sym">-></span><a href="../Vortex/DB/FT_Text.html#var$size">size</a> > <span class="src-num">0</span><span class="src-sym">)</span>?</span><span class="src-str"><span class="src-str">"</span> <span class="src-id">maxlength</span>='</span>{<span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/FT_Text.html#var$size">size</a><span class="src-sym">}</span>'</span><span class="src-str"><span class="src-str">"</span>:<span class="src-str">''</span><span class="src-sym">)</span>.<span class="src-str">' />'</span><span class="src-sym">;</span></span></li> <li><a name="a55"></a></span><span class="src-str"> <span class="src-sym">}</span></span></li> <li><a name="a56"></a></span><span class="src-str"> <span class="src-sym">}</span></span></li> *************** *** 87,122 **** <li><a name="a73"></a></span><span class="src-str"> <span class="src-key">if</span> <span class="src-sym">(</span><span class="src-var">$this</span></span><span class="src-sym">-></span><a href="../Vortex/DB/FT_Base.html#var$required">required</a><span class="src-sym">) </span><span class="src-str"></span><span class="src-sym">{</span></span></li> <li><a name="a74"></a></span><span class="src-str"> echo <<<END</span></li> ! <li><a name="a75"></a></span><span class="src-str"> <span class="src-id">if</span> (<span class="src-id">frm</span>.</span>{<span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/FT_Base.html#var$name_form">name_form</a><span class="src-sym">}</span>.<span class="src-id">value</span> == "") <span class="src-id">errors</span> += " * {<span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/FT_Base.html#var$label">label</a><span class="src-sym">}</span>";</li> ! <li><a name="a76"></a>END<span class="src-sym">; </span><span class="src-str"></span><span class="src-sym">}</span></span></li> ! <li><a name="a77"></a></span><span class="src-str"> <span class="src-sym">}</span></span></li> ! <li><a name="a78"></a> </li> ! <li><a name="a79"></a></span><span class="src-str"> /**</span></li> ! <li><a name="a80"></a></span><span class="src-str"> * Test the field consistency.</span></li> ! <li><a name="a81"></a></span><span class="src-str"> *</span></li> ! <li><a name="a82"></a></span><span class="src-str"> * @param string $field The data from the field to be tested.</span></li> ! <li><a name="a83"></a></span><span class="src-str"> * @return bool Returns TRUE if the field is consistent, FALSE otherwise.</span></li> ! <li><a name="a84"></a></span><span class="src-str"> */</span></li> ! <li><a name="a85"></a></span><span class="src-str"> <span class="src-key">function</span> <span class="src-id">ConsistTest</span><span class="src-sym">(</span><span class="src-sym">&</span><span class="src-var">$field</span><span class="src-sym">)</span></span></li> ! <li><a name="a86"></a></span><span class="src-str"> <span class="src-sym">{</span></span></li> ! <li><a name="a87"></a></span><span class="src-str"> <span class="src-key">if</span> <span class="src-sym">(</span><span class="src-var">$this</span></span><span class="src-sym">-></span><a href="../Vortex/DB/FT_Base.html#var$required">required</a> && <span class="src-key">empty</span><span class="src-sym">(</span><span class="src-var">$field</span><span class="src-sym">)) </span><span class="src-key">return </span><span class="src-id">FALSE</span><span class="src-sym">;</span></li> ! <li><a name="a88"></a> <span class="src-key">return </span><span class="src-id">TRUE</span><span class="src-sym">;</span></li> ! <li><a name="a89"></a> </span><span class="src-str"><span class="src-sym">}</span></span></li> ! <li><a name="a90"></a> </li> ! <li><a name="a91"></a></span><span class="src-str"> /**</span></li> ! <li><a name="a92"></a></span><span class="src-str"> * Format the field for a WHERE clause.</span></li> ! <li><a name="a93"></a></span><span class="src-str"> *</span></li> ! <li><a name="a94"></a></span><span class="src-str"> * @param string $field The data from the field to be formated.</span></li> ! <li><a name="a95"></a></span><span class="src-str"> * @return string Returns the formated field.</span></li> ! <li><a name="a96"></a></span><span class="src-str"> */</span></li> ! <li><a name="a97"></a></span><span class="src-str"> <span class="src-key">function</span> <span class="src-id">Where</span><span class="src-sym">(</span><span class="src-sym">&</span><span class="src-var">$field</span><span class="src-sym">)</span></span></li> ! <li><a name="a98"></a></span><span class="src-str"> <span class="src-sym">{</span></span></li> ! <li><a name="a99"></a></span><span class="src-str"> <span class="src-key">return</span> <span class="src-str">"</span></span>{<span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/FT_Base.html#var$name_db">name_db</a><span class="src-sym">} </span><span class="src-id">LIKE</span> '%</span><span class="src-str"><span class="src-str">"</span>.<span class="src-var">$this</span></span><span class="src-sym">-></span><a href="../Vortex/DB/FT_Base.html#var$db">db</a><span class="src-sym">-></span><span class="src-id">AddSlashes</span><span class="src-sym">(</span><span class="src-var">$field</span><span class="src-sym">)</span>.<span class="src-str">"%'"</span><span class="src-sym">;</span></li> ! <li><a name="a100"></a> </span><span class="src-str"><span class="src-sym">}</span></span></li> ! <li><a name="a101"></a></span><span class="src-str"><span class="src-sym">}</span></span></li> ! <li><a name="a102"></a> </li> </ol></pre> </div> <p class="notes" id="credit"> ! Documentation generated on Mon, 4 Oct 2004 15:26:37 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> --- 87,123 ---- <li><a name="a73"></a></span><span class="src-str"> <span class="src-key">if</span> <span class="src-sym">(</span><span class="src-var">$this</span></span><span class="src-sym">-></span><a href="../Vortex/DB/FT_Base.html#var$required">required</a><span class="src-sym">) </span><span class="src-str"></span><span class="src-sym">{</span></span></li> <li><a name="a74"></a></span><span class="src-str"> echo <<<END</span></li> ! <li><a name="a75"></a></span><span class="src-str"> <span class="src-id">if</span> (<span class="src-id">frm</span>.</span>{<span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/FT_Base.html#var$name_form">name_form</a><span class="src-sym">}</span>.<span class="src-id">value</span> == "") <span class="src-id">errors</span> += " * {<span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/FT_Base.html#var$label">label</a><span class="src-sym">}</span>\\<span class="src-id">n</span>";</li> ! <li><a name="a76"></a> </li> ! <li><a name="a77"></a>END<span class="src-sym">; </span><span class="src-str"></span><span class="src-sym">}</span></span></li> ! <li><a name="a78"></a></span><span class="src-str"> <span class="src-sym">}</span></span></li> ! <li><a name="a79"></a> </li> ! <li><a name="a80"></a></span><span class="src-str"> /**</span></li> ! <li><a name="a81"></a></span><span class="src-str"> * Test the field consistency.</span></li> ! <li><a name="a82"></a></span><span class="src-str"> *</span></li> ! <li><a name="a83"></a></span><span class="src-str"> * @param string $field The data from the field to be tested.</span></li> ! <li><a name="a84"></a></span><span class="src-str"> * @return bool Returns TRUE if the field is consistent, FALSE otherwise.</span></li> ! <li><a name="a85"></a></span><span class="src-str"> */</span></li> ! <li><a name="a86"></a></span><span class="src-str"> <span class="src-key">function</span> <span class="src-id">ConsistTest</span><span class="src-sym">(</span><span class="src-sym">&</span><span class="src-var">$field</span><span class="src-sym">)</span></span></li> ! <li><a name="a87"></a></span><span class="src-str"> <span class="src-sym">{</span></span></li> ! <li><a name="a88"></a></span><span class="src-str"> <span class="src-key">if</span> <span class="src-sym">(</span><span class="src-var">$this</span></span><span class="src-sym">-></span><a href="../Vortex/DB/FT_Base.html#var$required">required</a> && <span class="src-key">empty</span><span class="src-sym">(</span><span class="src-var">$field</span><span class="src-sym">)) </span><span class="src-key">return </span><span class="src-id">FALSE</span><span class="src-sym">;</span></li> ! <li><a name="a89"></a> <span class="src-key">return </span><span class="src-id">TRUE</span><span class="src-sym">;</span></li> ! <li><a name="a90"></a> </span><span class="src-str"><span class="src-sym">}</span></span></li> ! <li><a name="a91"></a> </li> ! <li><a name="a92"></a></span><span class="src-str"> /**</span></li> ! <li><a name="a93"></a></span><span class="src-str"> * Format the field for a WHERE clause.</span></li> ! <li><a name="a94"></a></span><span class="src-str"> *</span></li> ! <li><a name="a95"></a></span><span class="src-str"> * @param string $field The data from the field to be formated.</span></li> ! <li><a name="a96"></a></span><span class="src-str"> * @return string Returns the formated field.</span></li> ! <li><a name="a97"></a></span><span class="src-str"> */</span></li> ! <li><a name="a98"></a></span><span class="src-str"> <span class="src-key">function</span> <span class="src-id">Where</span><span class="src-sym">(</span><span class="src-sym">&</span><span class="src-var">$field</span><span class="src-sym">)</span></span></li> ! <li><a name="a99"></a></span><span class="src-str"> <span class="src-sym">{</span></span></li> ! <li><a name="a100"></a></span><span class="src-str"> <span class="src-key">return</span> <span class="src-str">"</span></span>{<span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/FT_Base.html#var$name_db">name_db</a><span class="src-sym">} </span><span class="src-id">LIKE</span> '%</span><span class="src-str"><span class="src-str">"</span>.<span class="src-var">$this</span></span><span class="src-sym">-></span><a href="../Vortex/DB/FT_Base.html#var$db">db</a><span class="src-sym">-></span><span class="src-id">AddSlashes</span><span class="src-sym">(</span><span class="src-var">$field</span><span class="src-sym">)</span>.<span class="src-str">"%'"</span><span class="src-sym">;</span></li> ! <li><a name="a101"></a> </span><span class="src-str"><span class="src-sym">}</span></span></li> ! <li><a name="a102"></a></span><span class="src-str"><span class="src-sym">}</span></span></li> ! <li><a name="a103"></a> </li> </ol></pre> </div> <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:40 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> Index: fsource_Vortex_Debug_d_header.php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/__filesource/fsource_Vortex_Debug_d_header.php.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** fsource_Vortex_Debug_d_header.php.html 4 Oct 2004 18:27:07 -0000 1.2 --- fsource_Vortex_Debug_d_header.php.html 6 Oct 2004 13:59:00 -0000 1.3 *************** *** 30,34 **** </div> <p class="notes" id="credit"> ! Documentation generated on Mon, 4 Oct 2004 15:26:35 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> --- 30,34 ---- </div> <p class="notes" id="credit"> ! Documentation generated on Tue, 5 Oct 2004 18:34:38 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> --- NEW FILE: fsource_Vortex_Util_conflang_en.php.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <!-- template designed by Marco Von Ballmoos --> <title>File Source for lang_en.php</title> <link rel="stylesheet" href="../media/stylesheet.css" /> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> </head> <body> <h1>Source for file lang_en.php</h1> <p>Documentation is available at <a href="../Vortex/Util/_conf_lang_en_php.html">lang_en.php</a></p> <div class="src-code"> <pre><ol><li><a name="a1"></a><span class="src-php"><?php</span></li> <li><a name="a2"></a><span class="src-doc">/**</span></li> <li><a name="a3"></a><span class="src-doc"> * File with messages for output in EN.</span></li> <li><a name="a4"></a><span class="src-doc"> *</span></li> <li><a name="a5"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@package</span><span class="src-doc"> Vortex</span></li> <li><a name="a6"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@subpackage</span><span class="src-doc"> Util</span></li> <li><a name="a7"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@author</span><span class="src-doc"> Thiago Ramon Gonçalves Montoya</span></li> <li><a name="a8"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@copyright</span><span class="src-doc"> Copyright 2004, Thiago Ramon Gonçalves Montoya</span></li> <li><a name="a9"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@license</span><span class="src-doc"> http://opensource.org/licenses/lgpl-license.php GNU Lesser General Public License</span></li> <li><a name="a10"></a><span class="src-doc"> */</span></li> <li><a name="a11"></a> </li> <li><a name="a12"></a><span class="src-var">$vortex_msgs </span>= <span class="src-key">array</span><span class="src-sym">(</span><span class="src-sym">)</span><span class="src-sym">;</span></li> <li><a name="a13"></a><span class="src-var">$vortex_msgs</span><span class="src-sym">[</span><span class="src-str">'consist_error'</span><span class="src-sym">] </span>= <span class="src-str">'The following fields are required:'</span><span class="src-sym">;</span></li> <li><a name="a14"></a><span class="src-php">?></span></li> </ol></pre> </div> <p class="notes" id="credit"> Documentation generated on Tue, 5 Oct 2004 18:34:41 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> </html> Index: fsource_Vortex_DB_TB_Base.class.php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/__filesource/fsource_Vortex_DB_TB_Base.class.php.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** fsource_Vortex_DB_TB_Base.class.php.html 4 Oct 2004 18:27:07 -0000 1.2 --- fsource_Vortex_DB_TB_Base.class.php.html 6 Oct 2004 13:59:00 -0000 1.3 *************** *** 23,380 **** <li><a name="a10"></a><span class="src-doc"> */</span></li> <li><a name="a11"></a> </li> ! <li><a name="a12"></a><span class="src-doc">/**</span></li> ! <li><a name="a13"></a><span class="src-doc"> * No Error</span></li> ! <li><a name="a14"></a><span class="src-doc"> *</span></li> ! <li><a name="a15"></a><span class="src-doc"> * Error codes for TB_*</span></li> ! <li><a name="a16"></a><span class="src-doc"> */</span></li> ! <li><a name="a17"></a><a href="http://www.php.net/define">define</a><span class="src-sym">(</span><span class="src-str">'TB_ERR_OK'</span><span class="src-sym">, </span><span class="src-num">0</span><span class="src-sym">)</span><span class="src-sym">;</span></li> ! <li><a name="a18"></a><span class="src-doc">/**</span></li> ! <li><a name="a19"></a><span class="src-doc"> * Inconsistency detected in a field.</span></li> ! <li><a name="a20"></a><span class="src-doc"> *</span></li> ! <li><a name="a21"></a><span class="src-doc"> * Error codes for TB_*</span></li> ! <li><a name="a22"></a><span class="src-doc"> */</span></li> ! <li><a name="a23"></a><a href="http://www.php.net/define">define</a><span class="src-sym">(</span><span class="src-str">'TB_ERR_INCONSIST'</span><span class="src-sym">, </span><span class="src-num">1</span><span class="src-sym">)</span><span class="src-sym">;</span></li> ! <li><a name="a24"></a><span class="src-doc">/**</span></li> ! <li><a name="a25"></a><span class="src-doc"> * No Primary Key found.</span></li> ! <li><a name="a26"></a><span class="src-doc"> *</span></li> ! <li><a name="a27"></a><span class="src-doc"> * Error codes for TB_*</span></li> ! <li><a name="a28"></a><span class="src-doc"> */</span></li> ! <li><a name="a29"></a><a href="http://www.php.net/define">define</a><span class="src-sym">(</span><span class="src-str">'TB_ERR_NOPKEY'</span><span class="src-sym">, </span><span class="src-num">2</span><span class="src-sym">)</span><span class="src-sym">;</span></li> ! <li><a name="a30"></a><span class="src-doc">/**</span></li> ! <li><a name="a31"></a><span class="src-doc"> * Empty parameter or RecordSet.</span></li> ! <li><a name="a32"></a><span class="src-doc"> *</span></li> ! <li><a name="a33"></a><span class="src-doc"> * Error codes for TB_*</span></li> ! <li><a name="a34"></a><span class="src-doc"> */</span></li> ! <li><a name="a35"></a><a href="http://www.php.net/define">define</a><span class="src-sym">(</span><span class="src-str">'TB_ERR_EMPTY'</span><span class="src-sym">, </span><span class="src-num">3</span><span class="src-sym">)</span><span class="src-sym">;</span></li> ! <li><a name="a36"></a><span class="src-doc">/**</span></li> ! <li><a name="a37"></a><span class="src-doc"> * Database error (use </span><span class="src-doc-inlinetag">{@link DB_Base::Error()}</span><span class="src-doc"> to discover which error).</span></li> ! <li><a name="a38"></a><span class="src-doc"> *</span></li> ! <li><a name="a39"></a><span class="src-doc"> * Error codes for TB_*</span></li> ! <li><a name="a40"></a><span class="src-doc"> */</span></li> ! <li><a name="a41"></a><a href="http://www.php.net/define">define</a><span class="src-sym">(</span><span class="src-str">'TB_ERR_DB'</span><span class="src-sym">, </span><span class="src-num">4</span><span class="src-sym">)</span><span class="src-sym">;</span></li> ! <li><a name="a42"></a> </li> ! <li><a name="a43"></a><span class="src-doc">/**</span></li> ! <li><a name="a44"></a><span class="src-doc"> * Base class for tables in databases.</span></li> ! <li><a name="a45"></a><span class="src-doc"> *</span></li> ! <li><a name="a46"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@package</span><span class="src-doc"> Vortex</span></li> ! <li><a name="a47"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@subpackage</span><span class="src-doc"> DB</span></li> ! <li><a name="a48"></a><span class="src-doc"> */</span></li> ! <li><a name="a49"></a><span class="src-key">class </span><a href="../Vortex/DB/TB_Base.html">TB_Base</a></li> ! <li><a name="a50"></a><span class="src-sym">{</span></li> ! <li><a name="a51"></a> <span class="src-doc">/**</span></li> ! <li><a name="a52"></a><span class="src-doc"> * Database where the table is.</span></li> ! <li><a name="a53"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@var </span><span class="src-doc-type">DB_Base </span></li> ! <li><a name="a54"></a><span class="src-doc"> */</span></li> ! <li><a name="a55"></a> <span class="src-key">var </span><a href="../Vortex/DB/TB_Base.html#var$db">$db</a><span class="src-sym">;</span></li> ! <li><a name="a56"></a> </li> ! <li><a name="a57"></a> <span class="src-doc">/**</span></li> ! <li><a name="a58"></a><span class="src-doc"> * Table name.</span></li> ! <li><a name="a59"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@var </span><span class="src-doc-type">string </span></li> ! <li><a name="a60"></a><span class="src-doc"> */</span></li> ! <li><a name="a61"></a> <span class="src-key">var </span><a href="../Vortex/DB/TB_Base.html#var$name">$name</a><span class="src-sym">;</span></li> ! <li><a name="a62"></a> </li> ! <li><a name="a63"></a> <span class="src-doc">/**</span></li> ! <li><a name="a64"></a><span class="src-doc"> * Table name in the database.</span></li> ! <li><a name="a65"></a><span class="src-doc"> * Default = </span><span class="src-doc-inlinetag">{@link $name}</span></li> ! <li><a name="a66"></a><span class="src-doc"> *</span></li> ! <li><a name="a67"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@var </span><span class="src-doc-type">string </span></li> ! <li><a name="a68"></a><span class="src-doc"> */</span></li> ! <li><a name="a69"></a> <span class="src-key">var </span><a href="../Vortex/DB/TB_Base.html#var$name_db">$name_db</a><span class="src-sym">;</span></li> ! <li><a name="a70"></a> </li> ! <li><a name="a71"></a> <span class="src-doc">/**</span></li> ! <li><a name="a72"></a><span class="src-doc"> * Label of the table for forms and listings.</span></li> ! <li><a name="a73"></a><span class="src-doc"> * Default = </span><span class="src-doc-inlinetag">{@link $name}</span></li> ! <li><a name="a74"></a><span class="src-doc"> *</span></li> ! <li><a name="a75"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@var </span><span class="src-doc-type">string </span></li> ! <li><a name="a76"></a><span class="src-doc"> */</span></li> ! <li><a name="a77"></a> <span class="src-key">var </span><a href="../Vortex/DB/TB_Base.html#var$label">$label</a><span class="src-sym">;</span></li> ! <li><a name="a78"></a> </li> ! <li><a name="a79"></a> <span class="src-doc">/**</span></li> ! <li><a name="a80"></a><span class="src-doc"> * Last error in the object.</span></li> ! <li><a name="a81"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@var </span><span class="src-doc-type">int </span></li> ! <li><a name="a82"></a><span class="src-doc"> */</span></li> ! <li><a name="a83"></a> <span class="src-key">var </span><a href="../Vortex/DB/TB_Base.html#var$error">$error</a> = <span class="src-id">TB_ERR_OK</span><span class="src-sym">;</span></li> ! <li><a name="a84"></a> </li> ! <li><a name="a85"></a> <span class="src-doc">/**</span></li> ! <li><a name="a86"></a><span class="src-doc"> * Array containing all the fields of the table (FT_* classes).</span></li> ! <li><a name="a87"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@var </span><span class="src-doc-type">array </span></li> ! <li><a name="a88"></a><span class="src-doc"> */</span></li> ! <li><a name="a89"></a> <span class="src-key">var </span><a href="../Vortex/DB/TB_Base.html#var$fields">$fields</a> = <span class="src-key">array</span><span class="src-sym">(</span><span class="src-sym">)</span><span class="src-sym">;</span></li> ! <li><a name="a90"></a> </li> ! <li><a name="a91"></a> <span class="src-doc">/**</span></li> ! <li><a name="a92"></a><span class="src-doc"> * Array containing references to the fields to use in lists.</span></li> ! <li><a name="a93"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@var </span><span class="src-doc-type">array </span></li> ! <li><a name="a94"></a><span class="src-doc"> */</span></li> ! <li><a name="a95"></a> <span class="src-key">var </span><a href="../Vortex/DB/TB_Base.html#var$fields_list">$fields_list</a> = <span class="src-key">array</span><span class="src-sym">(</span><span class="src-sym">)</span><span class="src-sym">;</span></li> ! <li><a name="a96"></a> </li> ! <li><a name="a97"></a> <span class="src-doc">/**</span></li> ! <li><a name="a98"></a><span class="src-doc"> * Order by parameter used in lists.</span></li> ! <li><a name="a99"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@var </span><span class="src-doc-type">string </span></li> ! <li><a name="a100"></a><span class="src-doc"> */</span></li> ! <li><a name="a101"></a> <span class="src-key">var </span><a href="../Vortex/DB/TB_Base.html#var$list_order">$list_order</a> = <span class="src-str">''</span><span class="src-sym">;</span></li> ! <li><a name="a102"></a> </li> ! <li><a name="a103"></a> <span class="src-doc">/**</span></li> ! <li><a name="a104"></a><span class="src-doc"> * Number of records per page to display in lists.</span></li> ! <li><a name="a105"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@var </span><span class="src-doc-type">int </span></li> ! <li><a name="a106"></a><span class="src-doc"> */</span></li> ! <li><a name="a107"></a> <span class="src-key">var </span><a href="../Vortex/DB/TB_Base.html#var$list_recspage">$list_recspage</a> = <span class="src-num">25</span><span class="src-sym">;</span></li> ! <li><a name="a108"></a> </li> ! <li><a name="a109"></a> <span class="src-doc">/**</span></li> ! <li><a name="a110"></a><span class="src-doc"> * Array containing references to the fields to use in forms.</span></li> ! <li><a name="a111"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@var </span><span class="src-doc-type">FT_Base </span></li> ! <li><a name="a112"></a><span class="src-doc"> */</span></li> ! <li><a name="a113"></a> <span class="src-key">var </span><a href="../Vortex/DB/TB_Base.html#var$fields_form">$fields_form</a> = <span class="src-key">array</span><span class="src-sym">(</span><span class="src-sym">)</span><span class="src-sym">;</span></li> ! <li><a name="a114"></a> </li> ! <li><a name="a115"></a> <span class="src-doc">/**</span></li> ! <li><a name="a116"></a><span class="src-doc"> * Array the current row of the table, for output, edit or search.</span></li> ! <li><a name="a117"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@var </span><span class="src-doc-type">array </span></li> ! <li><a name="a118"></a><span class="src-doc"> */</span></li> ! <li><a name="a119"></a> <span class="src-key">var </span><a href="../Vortex/DB/TB_Base.html#var$data">$data</a> = <span class="src-key">array</span><span class="src-sym">(</span><span class="src-sym">)</span><span class="src-sym">;</span></li> ! <li><a name="a120"></a> </li> ! <li><a name="a121"></a> <span class="src-doc">/**</span></li> ! <li><a name="a122"></a><span class="src-doc"> * Constructor: Init the object, and define the table's fields and relationships.</span></li> ! <li><a name="a123"></a><span class="src-doc"> *</span></li> ! <li><a name="a124"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@param </span><span class="src-doc-type">DB_Base </span><span class="src-doc-var">$db </span><span class="src-doc">Database where the table is.</span></li> ! <li><a name="a125"></a><span class="src-doc"> */</span></li> ! <li><a name="a126"></a> <span class="src-key">function </span><a href="../Vortex/DB/TB_Base.html#methodTB_Base">TB_Base</a><span class="src-sym">(</span><span class="src-sym">&</span><span class="src-var">$db</span><span class="src-sym">)</span></li> ! <li><a name="a127"></a> <span class="src-sym">{</span></li> ! <li><a name="a128"></a> <span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$db">db</a> =<span class="src-sym">& </span><span class="src-var">$db</span><span class="src-sym">;</span></li> ! <li><a name="a129"></a> <a href="http://www.php.net/is_null">is_null</a><span class="src-sym">(</span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$name_db">name_db</a><span class="src-sym">) </span><span class="src-key">and </span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$name_db">name_db</a> = <span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$name">name</a><span class="src-sym">;</span></li> ! <li><a name="a130"></a> <a href="http://www.php.net/is_null">is_null</a><span class="src-sym">(</span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$label">label</a><span class="src-sym">) </span><span class="src-key">and </span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$label">label</a> = <span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$name">name</a><span class="src-sym">;</span></li> ! <li><a name="a131"></a> <span class="src-sym">}</span></li> ! <li><a name="a132"></a> </li> ! <li><a name="a133"></a> <span class="src-doc">/**</span></li> ! <li><a name="a134"></a><span class="src-doc"> * Get the last error message.</span></li> ! <li><a name="a135"></a><span class="src-doc"> *</span></li> ! <li><a name="a136"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@return </span><span class="src-doc-type">string </span><span class="src-doc">Returns the last error message, or FALSE if no error.</span></li> ! <li><a name="a137"></a><span class="src-doc"> */</span></li> ! <li><a name="a138"></a> <span class="src-key">function </span><a href="../Vortex/DB/TB_Base.html#methodError">Error</a><span class="src-sym">(</span><span class="src-sym">)</span></li> ! <li><a name="a139"></a> <span class="src-sym">{</span></li> ! <li><a name="a140"></a> <span class="src-key">if </span><span class="src-sym">(</span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$error">error</a> == <span class="src-id"><a href="../Vortex/DB/_TB_Base_class_php.html#defineTB_ERR_OK">TB_ERR_OK</a></span><span class="src-sym">) </span><span class="src-key">return </span><span class="src-id">FALSE</span><span class="src-sym">;</span></li> ! <li><a name="a141"></a> <span class="src-key">return </span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$error">error</a><span class="src-sym">;</span></li> ! <li><a name="a142"></a> <span class="src-sym">}</span></li> ! <li><a name="a143"></a> </li> ! <li><a name="a144"></a> <span class="src-doc">/**</span></li> ! <li><a name="a145"></a><span class="src-doc"> * Set the internal buffer to a record to show/edit, or a blank one.</span></li> ! <li><a name="a146"></a><span class="src-doc"> *</span></li> ! <li><a name="a147"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@param </span><span class="src-doc-type">array </span><span class="src-doc-var">$data </span><span class="src-doc">Array containing the data to seek as 'field' => 'value'.</span></li> ! <li><a name="a148"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@param </span><span class="src-doc-type">bool </span><span class="src-doc-var">$pkonly </span><span class="src-doc">Use only the pkey's in the search?</span></li> ! <li><a name="a149"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@return </span><span class="src-doc-type">bool </span><span class="src-doc">Returns TRUE on success, FALSE on error.</span></li> ! <li><a name="a150"></a><span class="src-doc"> */</span></li> ! <li><a name="a151"></a> <span class="src-key">function </span><a href="../Vortex/DB/TB_Base.html#methodSeek">Seek</a><span class="src-sym">(</span><span class="src-var">$data </span>= <span class="src-id">NULL</span><span class="src-sym">, </span><span class="src-var">$pkonly </span>= <span class="src-id">TRUE</span><span class="src-sym">)</span></li> ! <li><a name="a152"></a> <span class="src-sym">{</span></li> ! <li><a name="a153"></a> <span class="src-key">if </span><span class="src-sym">(</span><span class="src-key">empty</span><span class="src-sym">(</span><span class="src-var">$data</span><span class="src-sym">)) </span><span class="src-sym">{</span></li> ! <li><a name="a154"></a> <span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$data">data</a> = <span class="src-key">array</span><span class="src-sym">(</span><span class="src-sym">)</span><span class="src-sym">;</span></li> ! <li><a name="a155"></a> <span class="src-key">return </span><span class="src-id">TRUE</span><span class="src-sym">;</span></li> ! <li><a name="a156"></a> <span class="src-sym">}</span></li> ! <li><a name="a157"></a> <span class="src-var">$where </span>= <span class="src-str">''</span><span class="src-sym">;</span></li> ! <li><a name="a158"></a> <span class="src-key">foreach </span><span class="src-sym">(</span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$fields">fields</a> <span class="src-key">as </span><span class="src-var">$field</span><span class="src-sym">) </span><span class="src-key">if </span><span class="src-sym">(</span><span class="src-sym">!</span><span class="src-var">$pkonly </span>|| <span class="src-var">$field</span><span class="src-sym">-></span><span class="src-id">pkey</span><span class="src-sym">) </span><span class="src-sym">{</span></li> ! <li><a name="a159"></a> <span class="src-key">if </span><span class="src-sym">(</span>isset<span class="src-sym">(</span><span class="src-var">$data</span><span class="src-sym">[</span><span class="src-var">$field</span><span class="src-sym">-></span><span class="src-id">name_form</span><span class="src-sym">]</span><span class="src-sym">)) </span><span class="src-var">$where </span>.= <span class="src-sym">(</span><a href="http://www.php.net/strlen">strlen</a><span class="src-sym">(</span><span class="src-var">$where</span><span class="src-sym">)</s... [truncated message content] |
From: Thiago R. <nop...@us...> - 2004-10-05 19:36:08
|
Update of /cvsroot/phpvortex/phpvortex/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23914/test Modified Files: tests.css vortex_test.php Log Message: Some changes for XHTML compilance Index: vortex_test.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/test/vortex_test.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** vortex_test.php 5 Oct 2004 15:10:18 -0000 1.7 --- vortex_test.php 5 Oct 2004 19:35:10 -0000 1.8 *************** *** 20,26 **** <head> <title>Test PHP Vortex Functionality</title> ! <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> ! <link href="tests.css" rel="stylesheet" type="text/css"> ! <link href="vortex_test.css" rel="stylesheet" type="text/css"> </head> --- 20,26 ---- <head> <title>Test PHP Vortex Functionality</title> ! <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> ! <link href="tests.css" rel="stylesheet" type="text/css" /> ! <link href="vortex_test.css" rel="stylesheet" type="text/css" /> </head> Index: tests.css =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/test/tests.css,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** tests.css 5 Oct 2004 15:10:18 -0000 1.3 --- tests.css 5 Oct 2004 19:35:10 -0000 1.4 *************** *** 1,4 **** body { ! font:Verdana, Arial, Helvetica, sans-serif; } --- 1,4 ---- body { ! font-family:Verdana, Arial, Helvetica, sans-serif; } |