phpvortex-commit Mailing List for PHP Vortex Framework (Page 6)
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-01 20:52:22
|
Update of /cvsroot/phpvortex/phpvortex In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28880 Modified Files: FT_Base.class.php Log Message: Changed FT_Base to no more recive a reference to a TB_* Index: FT_Base.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/FT_Base.class.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** FT_Base.class.php 30 Sep 2004 19:33:06 -0000 1.6 --- FT_Base.class.php 1 Oct 2004 20:50:52 -0000 1.7 *************** *** 97,109 **** * Output the field as a HTML Form or just for display. * ! * @param TB_Base $table Table where the field is. * @param bool $form Show field as a INPUT object? */ ! function Show(&$table, $form = TRUE) { ! if (empty($table->data) || !isset($table->data[$this->name_form])) { $value = $this->default; } else { ! $value = $table->data[$this->name_form]; } if ($form) { --- 97,109 ---- * Output the field as a HTML Form or just for display. * ! * @param array $data Array containing the field values as 'field' => 'value'. * @param bool $form Show field as a INPUT object? */ ! function Show(&$data, $form = TRUE) { ! if (empty($data) || !isset($data[$this->name_db])) { $value = $this->default; } else { ! $value = $data[$this->name_db]; } if ($form) { |
From: Thiago R. <nop...@us...> - 2004-09-30 20:47:04
|
Update of /cvsroot/phpvortex/phpvortex/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19270/test Added Files: .htaccess README.txt vortex_test.php vortex_test.sql Log Message: Added some test files to show some basic functionality --- NEW FILE: .htaccess --- php_value include_path ".;.." php_value auto_prepend_file "d_header.php" php_value auto_append_file "d_footer.php" --- NEW FILE: vortex_test.sql --- CREATE DATABASE IF NOT EXISTS vortex_test; USE vortex_test; DROP TABLE IF EXISTS phones; CREATE TABLE phones ( ph_id int(3) unsigned NOT NULL auto_increment, ph_name varchar(250) NOT NULL default '', ph_phone varchar(250) NOT NULL default '', PRIMARY KEY (ph_id) ) TYPE=MyISAM; --- NEW FILE: vortex_test.php --- <?php require_once('../DB_MySQL.class.php'); require_once('../TB_Base.class.php'); require_once('../FT_Text.class.php'); ?> <html> <head> <title>Test PHP Vortex Functionality</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> <?php class TB_Teste extends TB_Base { function TB_Teste(&$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')); $this->fields['ph_phone'] =& new FT_Text($db, array('name' => 'ph_phone')); TB_Base::TB_Base($db); } } $db =& new DB_MySQL(array('server' => 'localhost', 'db' => 'vortex_test', 'user' => 'root', 'pw' => '')); $db->Connect(); $tb =& new TB_Teste($db); $id = $tb->Save(array('ph_id' => '-1', 'ph_name' => 'Test', 'ph_phone' => '555-5551')) or print('Error(Save): '.$tb->Error()); echo 'Added ID:'.$id.'<br>'; $tb->Seek(array('ph_name' => 'Test'), FALSE) or print('Error(Seek): '.$tb->Error()); echo 'Seek ID:'.$tb->data['ph_id'].'<br>'; d('Snapshot', $tb); $tb->Delete() or print('Error(Delete): '.$tb->Error()); echo 'Deleted<br>'; $db->Close(); ?> </body> </html> --- NEW FILE: README.txt --- Instructions for test setup: 1 - Put PHP Vortex and all subfolders somewhere inside your htdocs folder. 2 - Execute the vortex_test.sql in your database server (only MySQL supported for now). It will create a vortex_test database, and some test tables. 3 - If your server does't use .htaccess files, configure it to set the PHP include directory to your PHP Vortex folder. 4 - Change server and username/password to the database server in the test files if you use something more restricting than a 'root'/'' setup. 5 - Open in your web browser the page test.php and see it working. (Use test.php?debug=3 for some cool debug info) 6 - If something went wrong, send us a message with the problem and we will try to figure out what happened. |
From: Thiago R. <nop...@us...> - 2004-09-30 20:46:13
|
Update of /cvsroot/phpvortex/phpvortex/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19160/test Log Message: Directory /cvsroot/phpvortex/phpvortex/test added to the repository |
From: Thiago R. <nop...@us...> - 2004-09-30 19:34:47
|
Update of /cvsroot/phpvortex/phpvortex In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5481 Modified Files: TB_Base.class.php Log Message: Added a lot of functionality to TB_Base. Still a lot to do, but it is already working Index: TB_Base.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/TB_Base.class.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TB_Base.class.php 29 Sep 2004 21:01:39 -0000 1.3 --- TB_Base.class.php 30 Sep 2004 19:34:38 -0000 1.4 *************** *** 11,14 **** --- 11,45 ---- /** + * No Error + * + * Error codes for TB_* + */ + define('TB_ERR_OK', 0); + /** + * Inconsistency detected in a field. + * + * Error codes for TB_* + */ + define('TB_ERR_INCONSIST', 1); + /** + * No Primary Key found. + * + * Error codes for TB_* + */ + define('TB_ERR_NOPKEY', 2); + /** + * Empty parameter or RecordSet. + * + * Error codes for TB_* + */ + define('TB_ERR_EMPTY', 3); + /** + * Database error (use {@link DB_Base::Error()} to discover which error). + * + * Error codes for TB_* + */ + define('TB_ERR_DB', 4); + + /** * Base class for tables in databases. * *************** *** 25,28 **** --- 56,87 ---- /** + * Table name. + * @var string + */ + var $name; + + /** + * Table name in the database. + * Default = {@link $name} + * + * @var string + */ + var $name_db; + + /** + * Label of the table for forms and listings. + * Default = {@link $name} + * + * @var string + */ + var $label; + + /** + * Last error in the object. + * @var int + */ + var $error = TB_ERR_OK; + + /** * Array containing all the fields of the table (FT_* classes). * @var array *************** *** 44,47 **** --- 103,246 ---- { $this->db =& $db; + is_null($this->name_db) and $this->name_db = $this->name; + is_null($this->label) and $this->label = $this->name; + } + + /** + * Get the last error message. + * + * @return string Returns the last error message, or FALSE if no error. + */ + function Error() + { + if ($this->error == TB_ERR_OK) return FALSE; + return $this->error; + } + + /** + * Set the internal to a record to show/edit, or a blank one. + * + * @param array $data Array containing the primary key(s) to the table as 'field' => 'value'. + * @param bool $pkonly Use only the pkey's in the search? + * @return bool Returns TRUE on success, FALSE on error. + */ + function Seek($data = NULL, $pkonly = TRUE) + { + if (empty($data)) { + $this->data = array(); + return TRUE; + } + $where = ''; + foreach ($this->fields as $field) if (!$pkonly || $field->pkey) { + if (isset($data[$field->name_form]) && ($key = $field->Consist($data)) !== FALSE) $where .= (strlen($where)?' AND ':'')."{$field->name_db} = $key"; + } + if (!strlen($where)) { + $this->data = array(); + $this->error = TB_ERR_NOPKEY; + return FALSE; + } + $sql = "SELECT * FROM {$this->name_db} WHERE $where"; + dv(3, 'SEEK SELECT', $sql); + if (!($rs = $this->db->Query($sql))) { + $this->data = array(); + $this->error = TB_ERR_DB; + return FALSE; + } + if (($this->data = $rs->Row()) === FALSE) { + $this->data = array(); + $this->error = TB_ERR_EMPTY; + return FALSE; + } + $rs->Close(); + return TRUE; + } + + /** + * INSERT or UPDATE the data to the database. + * + * @param array $data Array containing all the data to save as 'field' => 'value'. + * @return bool Returns TRUE on success, FALSE on error. + */ + function Save($data) + { + if (empty($data)) { + $this->error = TB_ERR_EMPTY; + return FALSE; + } + $values = array(); + $where = ''; + foreach ($this->fields as $field) { + if (($value = $field->Consist($data)) === FALSE) { + $this->error = TB_ERR_INCONSIST; + return FALSE; + } + if ($field->pkey) { + $where .= (strlen($where)?' AND ':'')."{$field->name_db} = $value"; + } else { + $values[$field->name_db] = $value; + } + } + if (empty($where)) { + if (empty($values)) { + $this->error = TB_ERR_EMPTY; + return FALSE; + } + if (!$this->db->Insert($this->name_db, $values)) { + $this->error = TB_ERR_DB; + return FALSE; + } + return TRUE; + } + if (empty($values)) { + $this->error = TB_ERR_EMPTY; + return FALSE; + } + if (!($rs = $this->db->Query("SELECT COUNT(*) AS cnt FROM {$this->name_db} WHERE $where"))) { + $this->error = TB_ERR_DB; + return FALSE; + } + if (($row = $rs->Row()) === FALSE) { + $this->error = TB_ERR_DB; + return FALSE; + } + $rs->Close(); + if ($row['cnt'] > 0) { + if (!$this->db->Update($this->name_db, $values, $where)) { + $this->error = TB_ERR_DB; + return FALSE; + } + } else { + if (!($rs =& $this->db->Insert($this->name_db, $values))) { + $this->error = TB_ERR_DB; + return FALSE; + } + $id = $rs->LastId(); + return (($id > 0)?$id:TRUE); + } + return TRUE; + } + + /** + * Delete a record from the table. + * + * @param array $data Array containing the primary key(s) to the table as 'field' => 'value', or NULL to delete the current record. + * @return bool Returns TRUE on success, FALSE on error. + */ + function Delete($data = NULL) + { + if (!empty($data)) if (!$this->Seek($data)) return FALSE; + $where = ''; + foreach ($this->fields as $field) if ($field->pkey) { + if (isset($this->data[$field->name_db])) $where .= (strlen($where)?' AND ':'')."{$field->name_db} = ".$field->ConsistFormat($this->data[$field->name_db]); + } + if (!strlen($where)) { + $this->error = TB_ERR_NOPKEY; + return FALSE; + } + if (!$this->db->Delete($this->name_db, $where)) { + $this->error = TB_ERR_DB; + return FALSE; + } + return TRUE; } } |
From: Thiago R. <nop...@us...> - 2004-09-30 19:33:16
|
Update of /cvsroot/phpvortex/phpvortex In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5279 Modified Files: FT_Base.class.php Log Message: Fixed a circular reference problem and some bugs in FT_Base Index: FT_Base.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/FT_Base.class.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** FT_Base.class.php 30 Sep 2004 14:26:01 -0000 1.5 --- FT_Base.class.php 30 Sep 2004 19:33:06 -0000 1.6 *************** *** 19,27 **** { /** ! * Table which the field comes from. * ! * @var TB_Base */ ! var $table; /** --- 19,27 ---- { /** ! * Database where the field is. * ! * @var DB_Base */ ! var $db; /** *************** *** 80,89 **** * Constructor: Load all parameters into member variables. * ! * @param TB_Base $table Table which the field comes from. * @param array $opts Parameters for the object, as 'var' => 'value'. */ ! function FT_Base(&$table, $opts = array()) { ! $this->table =& $table; foreach ($opts as $key => $value) { $this->$key = $value; --- 80,89 ---- * Constructor: Load all parameters into member variables. * ! * @param DB_Base $db Database where the field is. * @param array $opts Parameters for the object, as 'var' => 'value'. */ ! function FT_Base(&$db, $opts = array()) { ! $this->db =& $db; foreach ($opts as $key => $value) { $this->$key = $value; *************** *** 97,108 **** * Output the field as a HTML Form or just for display. * * @param bool $form Show field as a INPUT object? */ ! function Show($form = TRUE) { ! if (empty($this->table->data) || !isset($this->table->data[$this->name_form])) { $value = $this->default; } else { ! $value = $this->table->data[$this->name_form]; } if ($form) { --- 97,109 ---- * Output the field as a HTML Form or just for display. * + * @param TB_Base $table Table where the field is. * @param bool $form Show field as a INPUT object? */ ! function Show(&$table, $form = TRUE) { ! if (empty($table->data) || !isset($table->data[$this->name_form])) { $value = $this->default; } else { ! $value = $table->data[$this->name_form]; } if ($form) { *************** *** 161,166 **** } $field =& $vars[$this->name_form]; ! if (!ConsistTest($field)) return FALSE; ! return ConsistFormat($field); } --- 162,167 ---- } $field =& $vars[$this->name_form]; ! if (!$this->ConsistTest($field)) return FALSE; ! return $this->ConsistFormat($field); } *************** *** 184,188 **** function ConsistFormat(&$field) { ! return "'".$this->table->db->AddSlashes($field)."'"; } } --- 185,189 ---- function ConsistFormat(&$field) { ! return "'".$this->db->AddSlashes($field)."'"; } } |
From: Thiago R. <nop...@us...> - 2004-09-30 19:31:42
|
Update of /cvsroot/phpvortex/phpvortex In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5072 Modified Files: RS_MySQL.class.php Log Message: Fixed some (small but fatal) bugs in RS_MySQL Index: RS_MySQL.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/RS_MySQL.class.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RS_MySQL.class.php 28 Sep 2004 21:06:37 -0000 1.2 --- RS_MySQL.class.php 30 Sep 2004 19:31:26 -0000 1.3 *************** *** 95,99 **** function LastId() { ! return mysql_insert_id($this->db); } --- 95,99 ---- function LastId() { ! return mysql_insert_id($this->db->link); } *************** *** 105,109 **** function Error() { ! return mysql_error($this->db); } --- 105,109 ---- function Error() { ! return mysql_error($this->db->link); } |
From: Thiago R. <nop...@us...> - 2004-09-30 19:30:07
|
Update of /cvsroot/phpvortex/phpvortex In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4789 Modified Files: DB_Base.class.php Log Message: Fixed some bugs and added some debug information (lvl 3) to DB_Base Index: DB_Base.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/DB_Base.class.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** DB_Base.class.php 30 Sep 2004 14:26:00 -0000 1.6 --- DB_Base.class.php 30 Sep 2004 19:29:57 -0000 1.7 *************** *** 97,104 **** $vl = ''; foreach($values as $f => $v) { ! $fl = (strlen($fl)?', ':'') . $f; ! $vl = (strlen($vl)?', ':'') . $v; } $sql = "INSERT INTO $table ($fl) VALUES ($vl)"; return $this->Query($sql); } --- 97,105 ---- $vl = ''; foreach($values as $f => $v) { ! $fl .= (strlen($fl)?', ':'') . $f; ! $vl .= (strlen($vl)?', ':'') . $v; } $sql = "INSERT INTO $table ($fl) VALUES ($vl)"; + dv(3, 'INSERT SQL', $sql); return $this->Query($sql); } *************** *** 116,122 **** $sl = ''; foreach($values as $f => $v) { ! $sl = (strlen($sl)?', ':'') . "$f = $v"; } $sql = "UPDATE $table SET $sl WHERE $where"; return $this->Query($sql); } --- 117,124 ---- $sl = ''; foreach($values as $f => $v) { ! $sl .= (strlen($sl)?', ':'') . "$f = $v"; } $sql = "UPDATE $table SET $sl WHERE $where"; + dv(3, 'UPDATE SQL', $sql); return $this->Query($sql); } *************** *** 132,135 **** --- 134,138 ---- { $sql = "DELETE FROM $table WHERE $where"; + dv(3, 'DELETE SQL', $sql); return $this->Query($sql); } |
From: Thiago R. <nop...@us...> - 2004-09-30 19:28:07
|
Update of /cvsroot/phpvortex/phpvortex In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4391 Modified Files: debug.php Log Message: Fixed a bug and improved a bit the debug functions Index: debug.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/debug.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** debug.php 28 Sep 2004 18:43:24 -0000 1.2 --- debug.php 30 Sep 2004 19:27:47 -0000 1.3 *************** *** 28,34 **** if (!is_null($var)) { if (is_array($var)) { ! print_a($var); } else { ! print_a(array(gettype($var) => $var)); } } --- 28,34 ---- if (!is_null($var)) { if (is_array($var)) { ! print_a($var, 0, TRUE); } else { ! print_a(array(gettype($var) => $var), 0, TRUE); } } *************** *** 44,47 **** --- 44,48 ---- function dv($lvl, $msg, $var = NULL) // Only output if $debug >= $lvl { + global $debug; if ($debug >= $lvl) { d($msg, $var); |
From: Thiago R. <nop...@us...> - 2004-09-30 14:26:11
|
Update of /cvsroot/phpvortex/phpvortex In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7914 Modified Files: DB_Base.class.php FT_Base.class.php SEC_Static.class.php Log Message: Fixed some constructor bugs in DB_Base, FT_Base and SEC_Static Index: DB_Base.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/DB_Base.class.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** DB_Base.class.php 29 Sep 2004 20:04:59 -0000 1.5 --- DB_Base.class.php 30 Sep 2004 14:26:00 -0000 1.6 *************** *** 55,59 **** function DB_Base($opts = array()) { ! $link = NULL; foreach ($opts as $key => $value) { $this->$key = $value; --- 55,59 ---- function DB_Base($opts = array()) { ! $this->link = NULL; foreach ($opts as $key => $value) { $this->$key = $value; Index: SEC_Static.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/SEC_Static.class.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** SEC_Static.class.php 28 Sep 2004 18:43:24 -0000 1.2 --- SEC_Static.class.php 30 Sep 2004 14:26:01 -0000 1.3 *************** *** 34,47 **** /** - * Constructor: Load all parameters into member variables. - * - * @param array $opts Parameters for the object, as 'var' => 'value'. - */ - function SEC_Static($opts = array()) - { - SEC_Base::SEC_Base($opts); - } - - /** * Outputs the section to the client. * --- 34,37 ---- Index: FT_Base.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/FT_Base.class.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** FT_Base.class.php 29 Sep 2004 19:11:33 -0000 1.4 --- FT_Base.class.php 30 Sep 2004 14:26:01 -0000 1.5 *************** *** 89,95 **** $this->$key = $value; } ! is_null($name_db) and $name_db = $name; ! is_null($name_form) and $name_form = $name; ! is_null($label) and $label = $name; } --- 89,95 ---- $this->$key = $value; } ! is_null($this->name_db) and $this->name_db = $this->name; ! is_null($this->name_form) and $this->name_form = $this->name; ! is_null($this->label) and $this->label = $this->name; } |
From: Thiago R. <nop...@us...> - 2004-09-30 13:52:12
|
Update of /cvsroot/phpvortex/phpvortex In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1134 Modified Files: RS_Base.class.php Log Message: Added some extra documentation to RS_Base Index: RS_Base.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/RS_Base.class.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RS_Base.class.php 28 Sep 2004 21:07:53 -0000 1.2 --- RS_Base.class.php 30 Sep 2004 13:52:02 -0000 1.3 *************** *** 10,15 **** --- 10,27 ---- */ + /** + * Return an array with numeric indexes. + * Used by {@link RS_Base::Row()} and {@link RS_Base::All()}. + */ define('RS_ROW_NUM', 1); + /** + * Return an array with field names as index. + * Used by {@link RS_Base::Row()} and {@link RS_Base::All()}. + */ define('RS_ROW_ASSOC', 2); + /** + * Return an array with both numeric and field name indexes. + * Used by {@link RS_Base::Row()} and {@link RS_Base::All()}. + */ define('RS_ROW_BOTH', 3); |
From: Thiago R. <nop...@us...> - 2004-09-30 13:37:58
|
Update of /cvsroot/phpvortex/phpvortex/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30714/doc Added Files: makedoc.bat vortex.ini Log Message: Added the documentation to the CVS --- NEW FILE: makedoc.bat --- @echo off phpdoc -c .\vortex.ini --- NEW FILE: vortex.ini --- ;; phpDocumentor parse configuration file ;; ;; This file is designed to cut down on repetitive typing on the command-line or web interface ;; You can copy this file to create a number of configuration files that can be used with the ;; command-line switch -c, as in phpdoc -c default.ini or phpdoc -c myini.ini. The web ;; interface will automatically generate a list of .ini files that can be used. ;; ;; default.ini is used to generate the online manual at http://www.phpdoc.org/docs ;; ;; ALL .ini files must be in the user subdirectory of phpDocumentor with an extension of .ini ;; ;; Copyright 2002, Greg Beaver <ce...@us...> ;; ;; WARNING: do not change the name of any command-line parameters, phpDocumentor will ignore them [Parse Data] ;; title of all the documentation ;; legal values: any string title = PHP Vortex Documentation ;; parse files that start with a . like .bash_profile ;; legal values: true, false hidden = false ;; show elements marked @access private in documentation by setting this to on ;; legal values: on, off parseprivate = off ;; parse with javadoc-like description (first sentence is always the short description) ;; legal values: on, off javadocdesc = off ;; add any custom @tags separated by commas here ;; legal values: any legal tagname separated by commas. ;customtags = mytag1,mytag2 ;; This is only used by the XML:DocBook/peardoc2 converter defaultcategoryname = Documentation ;; what is the main package? ;; legal values: alphanumeric string plus - and _ defaultpackagename = Vortex ;; output any parsing information? set to on for cron jobs ;; legal values: on ;quiet = on ;; parse a PEAR-style repository. Do not turn this on if your project does ;; not have a parent directory named "pear" ;; legal values: on/off ;pear = on ;; where should the documentation be written? ;; legal values: a legal path target = ./html ;; Which files should be parsed out as special documentation files, such as README, ;; INSTALL and CHANGELOG? This overrides the default files found in ;; phpDocumentor.ini (this file is not a user .ini file, but the global file) readmeinstallchangelog = README, INSTALL, CHANGELOG, NEWS, FAQ, LICENSE ;; limit output to the specified packages, even if others are parsed ;; legal values: package names separated by commas ;packageoutput = package1,package2 ;; comma-separated list of files to parse ;; legal values: paths separated by commas ;filename = /path/to/file1,/path/to/file2,fileincurrentdirectory ;; comma-separated list of directories to parse ;; legal values: directory paths separated by commas ;directory = /path1,/path2,.,..,subdirectory ;directory = /home/jeichorn/cvs/pear directory = ../ ;; template base directory (the equivalent directory of <installdir>/phpDocumentor) ;templatebase = /path/to/my/templates ;; directory to find any example files in through @example and {@example} tags ;examplesdir = /path/to/my/templates ;; comma-separated list of files, directories or wildcards ? and * (any wildcard) to ignore ;; legal values: any wildcard strings separated by commas ;ignore = /path/to/ignore*,*list.php,myfile.php,subdirectory/ ignore = doc/,CVS/,debuglib.php ;; comma-separated list of Converters to use in outputformat:Convertername:templatedirectory format ;; legal values: HTML:frames:default,HTML:frames:l0l33t,HTML:frames:phpdoc.de,HTML:frames:phphtmllib, ;; HTML:frames:earthli, ;; HTML:frames:DOM/default,HTML:frames:DOM/l0l33t,HTML:frames:DOM/phpdoc.de, ;; HTML:frames:DOM/phphtmllib,HTML:frames:DOM/earthli ;; HTML:Smarty:default,HTML:Smarty:PHP,HTML:Smarty:HandS ;; PDF:default:default,CHM:default:default,XML:DocBook/peardoc2:default output=HTML:frames:default ;; turn this option on if you want highlighted source code for every file ;; legal values: on/off sourcecode = on |
Update of /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30714/doc/html/Vortex/Page Added Files: PG_Base.html SEC_Base.html SEC_Static.html _PG_Base_class_php.html _SEC_Base_class_php.html _SEC_Static_class_php.html Log Message: Added the documentation to the CVS --- NEW FILE: PG_Base.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 PG_Base</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 PG_Base</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">Base class for all pages.</p> <p class="notes"> Located in <a class="field" href="_PG_Base_class_php.html">/PG_Base.class.php</a> (line <span class="field"><a href="../..//__filesource/fsource_Vortex_Page_PG_Base.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">array</span> <a href="#$sections" title="details" class="var-name">$sections</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">PG_Base</span> <a href="#PG_Base" title="details" class="method-name">PG_Base</a> () </div> <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="#ShowPage" title="details" class="method-name">ShowPage</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$sections" id="$sections"><!-- --></A> <div class="oddrow"> <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_PG_Base.class.php.html#a24">24</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Page sections list.</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="methodPG_Base" id="PG_Base"><!-- --></a> <div class="evenrow"> <div class="method-header"> <span class="method-title">Constructor PG_Base</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_PG_Base.class.php.html#a29">29</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Constructor: Define site-wide defaults (headers, menus, footers).</p> <div class="method-signature"> <span class="method-result">PG_Base</span> <span class="method-name"> PG_Base </span> () </div> </div> <a name="methodAddSection" id="AddSection"><!-- --></a> <div class="oddrow"> <div class="method-header"> <span class="method-title">AddSection</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_PG_Base.class.php.html#a41">41</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Add a new page 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="evenrow"> <div class="method-header"> <span class="method-title">DelSection</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_PG_Base.class.php.html#a68">68</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Remove a section from the page.</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="methodShowPage" id="ShowPage"><!-- --></a> <div class="oddrow"> <div class="method-header"> <span class="method-title">ShowPage</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_PG_Base.class.php.html#a78">78</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Parse all sections and output the result.</p> <p class="description"><p>Calls the Show() method in all sections, in order.</p></p> <div class="method-signature"> <span class="method-result">void</span> <span class="method-name"> ShowPage </span> () </div> </div> </div> </div> <p class="notes" id="credit"> Documentation generated on Thu, 30 Sep 2004 10:35:39 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> </html> --- NEW FILE: SEC_Base.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_Base</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_Base</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-descendents">Descendents</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">Base class for page sections.</p> <p class="notes"> Located in <a class="field" href="_SEC_Base_class_php.html">/SEC_Base.class.php</a> (line <span class="field"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Base.class.php.html#a18">18</a></span>) </p> <pre></pre> </div> </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-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/Page/SEC_Static.html">SEC_Static</a></td> <td> Class for static page sections. </td> </tr> </table> </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-descendents">Descendents</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_Base</span> <a href="#SEC_Base" title="details" class="method-name">SEC_Base</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-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-descendents">Descendents</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_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> <!-- ========== 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_Base</span> <span class="method-name"> SEC_Base </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_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"> <span class="method-result">void</span> <span class="method-name"> Show </span> () </div> <hr class="separator" /> <div class="notes">Redefined in descendants as:</div> <ul class="redefinitions"> <li> <a href="../../Vortex/Page/SEC_Static.html#methodShow">SEC_Static::Show()</a> : Outputs the section to the client. </li> </ul> </div> </div> </div> <p class="notes" id="credit"> Documentation generated on Thu, 30 Sep 2004 10:35:42 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> </html> --- NEW FILE: SEC_Static.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_Static</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_Static</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 static page sections.</p> <p class="notes"> Located in <a class="field" href="_SEC_Static_class_php.html">/SEC_Static.class.php</a> (line <span class="field"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Static.class.php.html#a21">21</a></span>) </p> <pre><a href="../../Vortex/Page/SEC_Base.html">SEC_Base</a> | --SEC_Static</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="#$code" title="details" class="var-name">$code</a> </div> <div class="var-title"> <span class="var-type">string</span> <a href="#$file" title="details" class="var-name">$file</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_Static</span> <a href="#SEC_Static" title="details" class="method-name">SEC_Static</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$code" id="$code"><!-- --></A> <div class="evenrow"> <div class="var-header"> <span class="var-title"> <span class="var-type">string</span> <span class="var-name">$code</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Static.class.php.html#a33">33</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Optional HTML where the section is.</p> </div> <a name="var$file" id="$file"><!-- --></A> <div class="oddrow"> <div class="var-header"> <span class="var-title"> <span class="var-type">string</span> <span class="var-name">$file</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Static.class.php.html#a27">27</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Optional file where the section is.</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="methodSEC_Static" id="SEC_Static"><!-- --></a> <div class="evenrow"> <div class="method-header"> <span class="method-title">Constructor SEC_Static</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Static.class.php.html#a40">40</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_Static</span> <span class="method-name"> SEC_Static </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_Static.class.php.html#a50">50</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Outputs the section to the client.</p> <p class="description"><p>If a file was informed, output it. If some HTML code was informed, output it.</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#methodShow">SEC_Base::Show()</a></span><br> </blockquote> </div> </div> <p class="notes" id="credit"> Documentation generated on Thu, 30 Sep 2004 10:35:43 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> </html> --- NEW FILE: _SEC_Static_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_Static.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_Static.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_Static.</p> <ul class="tags"> <li><span class="field">filesource:</span> <a href="../..//__filesource/fsource_Vortex_Page_SEC_Static.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_Static.html">SEC_Static</a> </td> <td> Class for static 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_Static.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 Thu, 30 Sep 2004 10:35:43 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> </html> --- NEW FILE: _PG_Base_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 PG_Base.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">/PG_Base.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 PG_Base.</p> <ul class="tags"> <li><span class="field">filesource:</span> <a href="../..//__filesource/fsource_Vortex_Page_PG_Base.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/Page/PG_Base.html">PG_Base</a> </td> <td> Base class for all pages. </td> </tr> </table> </div> </div> <p class="notes" id="credit"> Documentation generated on Thu, 30 Sep 2004 10:35:38 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> </html> --- NEW FILE: _SEC_Base_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_Base.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_Base.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 SEC_Base.</p> <ul class="tags"> <li><span class="field">filesource:</span> <a href="../..//__filesource/fsource_Vortex_Page_SEC_Base.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/Page/SEC_Base.html">SEC_Base</a> </td> <td> Base class for page sections. </td> </tr> </table> </div> </div> <p class="notes" id="credit"> Documentation generated on Thu, 30 Sep 2004 10:35:42 -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-09-30 13:37:58
|
Update of /cvsroot/phpvortex/phpvortex/doc/html/media In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30714/doc/html/media Added Files: banner.css stylesheet.css Log Message: Added the documentation to the CVS --- NEW FILE: stylesheet.css --- a { color: #336699; text-decoration: none; } a:hover { color: #6699CC; text-decoration: underline; } a:active { color: #6699CC; text-decoration: underline; } body { background : #FFFFFF; } body, table { font-family: Georgia, Times New Roman, Times, serif; font-size: 10pt } p, li { line-height: 140% } a img { border: 0px; } dd { margin-left: 0px; padding-left: 1em; } /* Page layout/boxes */ .info-box {} .info-box-title { margin: 1em 0em 0em 0em; padding: .25em; font-weight: normal; font-size: 14pt; border: 2px solid #999999; background-color: #CCCCFF } .info-box-body { border: 1px solid #999999; padding: .5em; } .nav-bar { font-size: 8pt; white-space: nowrap; text-align: right; padding: .2em; margin: 0em 0em 1em 0em; } .oddrow { background-color: #F8F8F8; border: 1px solid #AAAAAA; padding: .5em; margin-bottom: 1em} .evenrow { border: 1px solid #AAAAAA; padding: .5em; margin-bottom: 1em} .page-body { max-width: 800px; margin: auto; } .tree dl { margin: 0px } /* Index formatting classes */ .index-item-body { margin-top: .5em; margin-bottom: .5em} .index-item-description { margin-top: .25em } .index-item-details { font-weight: normal; font-style: italic; font-size: 8pt } .index-letter-section { background-color: #EEEEEE; border: 1px dotted #999999; padding: .5em; margin-bottom: 1em} .index-letter-title { font-size: 12pt; font-weight: bold } .index-letter-menu { text-align: center; margin: 1em } .index-letter { font-size: 12pt } /* Docbook classes */ .description {} .short-description { font-weight: bold; color: #666666; } .tags { padding-left: 0em; margin-left: 3em; color: #666666; list-style-type: square; } .parameters { padding-left: 0em; margin-left: 3em; font-style: italic; list-style-type: square; } .redefinitions { font-size: 8pt; padding-left: 0em; margin-left: 2em; } .package { } .package-title { font-weight: bold; font-size: 14pt; border-bottom: 1px solid black } .package-details { font-size: 85%; } .sub-package { font-weight: bold; font-size: 120% } .tutorial { border-width: thin; border-color: #0066ff } .tutorial-nav-box { width: 100%; border: 1px solid #999999; background-color: #F8F8F8; } .nav-button-disabled { color: #999999; } .nav-button:active, .nav-button:focus, .nav-button:hover { background-color: #DDDDDD; outline: 1px solid #999999; text-decoration: none } .folder-title { font-style: italic } /* Generic formatting */ .field { font-weight: bold; } .detail { font-size: 8pt; } .notes { font-style: italic; font-size: 8pt; } .separator { background-color: #999999; height: 2px; } .warning { color: #FF6600; } .disabled { font-style: italic; color: #999999; } /* Code elements */ .line-number { } .class-table { width: 100%; } .class-table-header { border-bottom: 1px dotted #666666; text-align: left} .class-name { color: #000000; font-weight: bold; } .method-summary { padding-left: 1em; font-size: 8pt } .method-header { } .method-definition { margin-bottom: .3em } .method-title { font-weight: bold; } .method-name { font-weight: bold; } .method-signature { font-size: 85%; color: #666666; margin: .5em 0em } .method-result { font-style: italic; } .var-summary { padding-left: 1em; font-size: 8pt; } .var-header { } .var-title { margin-bottom: .3em } .var-type { font-style: italic; } .var-name { font-weight: bold; } .var-default {} .var-description { font-weight: normal; color: #000000; } .include-title { } .include-type { font-style: italic; } .include-name { font-weight: bold; } .const-title { } .const-name { font-weight: bold; } /* Syntax highlighting */ .src-code { border: 1px solid #336699; padding: 1em; background-color: #EEEEEE; } *[class="src-code"] { line-height : 0.5em } .src-comm { color: green; } .src-id { } .src-inc { color: #0000FF; } .src-key { color: #0000FF; } .src-num { color: #CC0000; } .src-str { color: #66cccc; } .src-sym { font-weight: bold; } .src-var { } .src-php { font-weight: bold; } .src-doc { color: #009999 } .src-doc-close-template { color: #0000FF } .src-doc-coretag { color: #0099FF; font-weight: bold } .src-doc-inlinetag { color: #0099FF } .src-doc-internal { color: #6699cc } .src-doc-tag { color: #0080CC } .src-doc-template { color: #0000FF } .src-doc-type { font-style: italic } .src-doc-var { font-style: italic } .tute-tag { color: #009999 } .tute-attribute-name { color: #0000FF } .tute-attribute-value { color: #0099FF } .tute-entity { font-weight: bold; } .tute-comment { font-style: italic } .tute-inline-tag { color: #636311; font-weight: bold } /* tutorial */ .authors { } .author { font-style: italic; font-weight: bold } .author-blurb { margin: .5em 0em .5em 2em; font-size: 85%; font-weight: normal; font-style: normal } .example { border: 1px dashed #999999; background-color: #EEEEEE; padding: .5em; } *[class="example"] { line-height : 0.5em } .listing { border: 1px dashed #999999; background-color: #EEEEEE; padding: .5em; white-space: nowrap; } *[class="listing"] { line-height : 0.5em } .release-info { font-size: 85%; font-style: italic; margin: 1em 0em } .ref-title-box { } .ref-title { } .ref-purpose { font-style: italic; color: #666666 } .ref-synopsis { } .title { font-weight: bold; margin: 1em 0em 0em 0em; padding: .25em; border: 2px solid #999999; background-color: #CCCCFF } .cmd-synopsis { margin: 1em 0em } .cmd-title { font-weight: bold } .toc { margin-left: 2em; padding-left: 0em } --- NEW FILE: banner.css --- body { background-color: #CCCCFF; margin: 0px; padding: 0px; } /* Banner (top bar) classes */ .banner { } .banner-menu { clear: both; padding: .5em; border-top: 2px solid #6666AA; } .banner-title { text-align: right; font-size: 20pt; font-weight: bold; margin: .2em; } .package-selector { background-color: #AAAADD; border: 1px solid black; color: yellow; } |
From: Thiago R. <nop...@us...> - 2004-09-30 13:37:56
|
Update of /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Util In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30714/doc/html/Vortex/Util Added Files: Template.html _Class Template_php.html Log Message: Added the documentation to the CVS --- NEW FILE: _Class Template_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 Class Template.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">/Class Template.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 Template.</p> <ul class="tags"> <li><span class="field">filesource:</span> <a href="../..//__filesource/fsource_Vortex_Util_Class Template.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/Template.html">Template</a> </td> <td> Class template. </td> </tr> </table> </div> </div> <p class="notes" id="credit"> Documentation generated on Thu, 30 Sep 2004 10:35:30 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> </html> --- NEW FILE: Template.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 Template</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 Template</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 template.</p> <p class="notes"> Located in <a class="field" href="_Class Template_php.html">/Class Template.php</a> (line <span class="field"><a href="../..//__filesource/fsource_Vortex_Util_Class Template.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">mixed</span> <a href="#$variable" title="details" class="var-name">$variable</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">Template</span> <a href="#Template" title="details" class="method-name">Template</a> () </div> <div class="method-definition"> <span class="method-result">mixed</span> <a href="#Func" title="details" class="method-name">Func</a> (<span class="var-type">mixed</span> <span class="var-name">$par</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$variable" id="$variable"><!-- --></A> <div class="evenrow"> <div class="var-header"> <span class="var-title"> <span class="var-type">mixed</span> <span class="var-name">$variable</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Util_Class Template.php.html#a24">24</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Member variable.</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="methodTemplate" id="Template"><!-- --></a> <div class="oddrow"> <div class="method-header"> <span class="method-title">Constructor Template</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Util_Class Template.php.html#a29">29</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Constructor: .</p> <div class="method-signature"> <span class="method-result">Template</span> <span class="method-name"> Template </span> () </div> </div> <a name="methodFunc" id="Func"><!-- --></a> <div class="evenrow"> <div class="method-header"> <span class="method-title">Func</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Util_Class Template.php.html#a39">39</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Member function.</p> <ul class="tags"> <li><span class="field">return:</span> Return value.</li> </ul> <div class="method-signature"> <span class="method-result">mixed</span> <span class="method-name"> Func </span> (<span class="var-type">mixed</span> <span class="var-name">$par</span>) </div> <ul class="parameters"> <li> <span class="var-type">mixed</span> <span class="var-name">$par</span><span class="var-description">: Parameter.</span> </li> </ul> </div> </div> </div> <p class="notes" id="credit"> Documentation generated on Thu, 30 Sep 2004 10:35:31 -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-09-30 13:37:55
|
Update of /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Debug In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30714/doc/html/Vortex/Debug Added Files: _d_footer_php.html _d_header_php.html _debug_php.html Log Message: Added the documentation to the CVS --- NEW FILE: _d_footer_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 d_footer.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">/d_footer.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">Append file for debug.</p> <ul class="tags"> <li><span class="field">filesource:</span> <a href="../..//__filesource/fsource_Vortex_Debug_d_footer.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 Thu, 30 Sep 2004 10:35:35 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> </html> --- NEW FILE: _debug_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 debug.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">/debug.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> | <a href="#sec-functions">Functions</a> </div> <div class="info-box-body"> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Main file of the debug manager.</p> <ul class="tags"> <li><span class="field">filesource:</span> <a href="../..//__filesource/fsource_Vortex_Debug_debug.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> | <a href="#sec-functions">Functions</a> </div> <div class="info-box-body"> <a name="_debuglib_php"><!-- --></a> <div class="oddrow"> <div> <span class="include-title"> <span class="include-type">include_once</span> (<span class="include-name">"debuglib.php"</span>) (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Debug_debug.php.html#a17">17</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Include external debug library.</p> </div> </div> </div> <a name="sec-functions"></a> <div class="info-box"> <div class="info-box-title">Functions</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-includes">Includes</a> | <span class="disabled">Functions</span> </div> <div class="info-box-body"> <a name="functiond" id="functiond"><!-- --></a> <div class="evenrow"> <div> <span class="method-title">d</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Debug_debug.php.html#a25">25</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Outputs a debug message, and optionally a variable's content.</p> <div class="method-signature"> <span class="method-result">void</span> <span class="method-name"> d </span> (<span class="var-type">string</span> <span class="var-name">$msg</span>, [<span class="var-type">mixed</span> <span class="var-name">$var</span> = <span class="var-default">NULL</span>]) </div> <ul class="parameters"> <li> <span class="var-type">string</span> <span class="var-name">$msg</span><span class="var-description">: Message to output.</span> </li> <li> <span class="var-type">mixed</span> <span class="var-name">$var</span><span class="var-description">: Variable to be shown.</span> </li> </ul> </div> <a name="functiondv" id="functiondv"><!-- --></a> <div class="oddrow"> <div> <span class="method-title">dv</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Debug_debug.php.html#a44">44</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Same as d(), but first test the debug level.</p> <ul class="tags"> <li><span class="field">see:</span> <a href="../../Vortex/Debug/_debug_php.html#functiond">d()</a></li> </ul> <div class="method-signature"> <span class="method-result">void</span> <span class="method-name"> dv </span> (<span class="var-type">int</span> <span class="var-name">$lvl</span>, <span class="var-type">string</span> <span class="var-name">$msg</span>, [<span class="var-type">mixed</span> <span class="var-name">$var</span> = <span class="var-default">NULL</span>]) </div> <ul class="parameters"> <li> <span class="var-type">int</span> <span class="var-name">$lvl</span><span class="var-description">: Required debug level for output.</span> </li> <li> <span class="var-type">string</span> <span class="var-name">$msg</span><span class="var-description">: Message to output.</span> </li> <li> <span class="var-type">mixed</span> <span class="var-name">$var</span><span class="var-description">: Variable to be shown.</span> </li> </ul> </div> </div> </div> <p class="notes" id="credit"> Documentation generated on Thu, 30 Sep 2004 10:35:35 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> </html> --- NEW FILE: _d_header_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 d_header.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">/d_header.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">Prepend file for debug.</p> <ul class="tags"> <li><span class="field">filesource:</span> <a href="../..//__filesource/fsource_Vortex_Debug_d_header.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="_debug_php"><!-- --></a> <div class="evenrow"> <div> <span class="include-title"> <span class="include-type">require_once</span> (<span class="include-name"><a href="../../Vortex/Debug/_debug_php.html">"debug.php"</a></span>) (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Debug_d_header.php.html#a13">13</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Include main debugger header.</p> </div> </div> </div> <p class="notes" id="credit"> Documentation generated on Thu, 30 Sep 2004 10:35:35 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> </html> |
Update of /cvsroot/phpvortex/phpvortex/doc/html In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30714/doc/html Added Files: blank.html classtrees_Vortex.html elementindex.html elementindex_Vortex.html errors.html index.html li_Vortex.html packages.html Log Message: Added the documentation to the CVS --- NEW FILE: elementindex.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></title> <link rel="stylesheet" href="media/stylesheet.css" /> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> </head> <body> <a name="top"></a> <h2>Full index</h2> <h3>Package indexes</h3> <ul> <li><a href="elementindex_Vortex.html">Vortex</a></li> </ul> <br /> <div class="index-letter-menu"> <a class="index-letter" href="elementindex.html#a">a</a> <a class="index-letter" href="elementindex.html#b">b</a> <a class="index-letter" href="elementindex.html#c">c</a> <a class="index-letter" href="elementindex.html#d">d</a> <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#i">i</a> <a class="index-letter" href="elementindex.html#j">j</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#p">p</a> <a class="index-letter" href="elementindex.html#q">q</a> <a class="index-letter" href="elementindex.html#r">r</a> <a class="index-letter" href="elementindex.html#s">s</a> <a class="index-letter" href="elementindex.html#t">t</a> <a class="index-letter" href="elementindex.html#u">u</a> <a class="index-letter" href="elementindex.html#v">v</a> </div> <a name="a"></a> <div class="index-letter-section"> <div style="float: left" class="index-letter-title">a</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">AddSection</span> </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"> <span class="method-title">AddSlashes</span> </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> <dt class="field"> <span class="method-title">AddSlashes</span> </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> <dt class="field"> <span class="method-title">All</span> </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> <dt class="field"> <span class="method-title">All</span> </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> </dl> <a name="b"></a> <div class="index-letter-section"> <div style="float: left" class="index-letter-title">b</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">Begin</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/DB_MySQL.html#methodBegin">DB_MySQL::Begin()</a> in DB_MySQL.class.php</div> <div class="index-item-description">Transactions: Begin a new transaction.</div> </dd> <dt class="field"> <span class="method-title">Begin</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/DB_Base.html#methodBegin">DB_Base::Begin()</a> in DB_Base.class.php</div> <div class="index-item-description">Transactions: Begin a new transaction.</div> </dd> </dl> <a name="c"></a> <div class="index-letter-section"> <div style="float: left" class="index-letter-title">c</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">$code</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/Page/SEC_Static.html#var$code">SEC_Static::$code</a> in SEC_Static.class.php</div> <div class="index-item-description">Optional HTML where the section is.</div> </dd> <dt class="field"> <span class="var-title">$cols</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/FT_Text.html#var$cols">FT_Text::$cols</a> in FT_Text.class.php</div> <div class="index-item-description">Number of columns in the field. Use -1 to ignore.</div> </dd> <dt class="field"> <span class="include-title">Class Template.php</span> </dt> <dd class="index-item-body"> <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="method-title">Close</span> </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> <dt class="field"> <span class="method-title">Close</span> </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> <dt class="field"> <span class="method-title">Close</span> </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> <dt class="field"> <span class="method-title">Close</span> </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> <dt class="field"> <span class="method-title">Commit</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/DB_MySQL.html#methodCommit">DB_MySQL::Commit()</a> in DB_MySQL.class.php</div> <div class="index-item-description">Transactions: Commit a transaction.</div> </dd> <dt class="field"> <span class="method-title">Commit</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/DB_Base.html#methodCommit">DB_Base::Commit()</a> in DB_Base.class.php</div> <div class="index-item-description">Transactions: Commit a transaction.</div> </dd> <dt class="field"> <span class="method-title">Connect</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/DB_Base.html#methodConnect">DB_Base::Connect()</a> in DB_Base.class.php</div> <div class="index-item-description">Open a new connection to the database if not already connected.</div> </dd> <dt class="field"> <span class="method-title">Connect</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/DB_MySQL.html#methodConnect">DB_MySQL::Connect()</a> in DB_MySQL.class.php</div> <div class="index-item-description">Open a new connection to the database if not already connected.</div> </dd> <dt class="field"> <span class="method-title">Consist</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/FT_Base.html#methodConsist">FT_Base::Consist()</a> in FT_Base.class.php</div> <div class="index-item-description">Extract the field from $vars, test the field consistency and return it ready for database insertion.</div> </dd> <dt class="field"> <span class="method-title">ConsistFormat</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/FT_Base.html#methodConsistFormat">FT_Base::ConsistFormat()</a> in FT_Base.class.php</div> <div class="index-item-description">Format the field for database insertion.</div> </dd> <dt class="field"> <span class="method-title">ConsistTest</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/FT_Base.html#methodConsistTest">FT_Base::ConsistTest()</a> in FT_Base.class.php</div> <div class="index-item-description">Test the field consistency.</div> </dd> <dt class="field"> <span class="method-title">ConsistTest</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/FT_Text.html#methodConsistTest">FT_Text::ConsistTest()</a> in FT_Text.class.php</div> <div class="index-item-description">Test the field consistency.</div> </dd> </dl> <a name="d"></a> <div class="index-letter-section"> <div style="float: left" class="index-letter-title">d</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">$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 the current row of the table, for output, edit or search.</div> </dd> <dt class="field"> <span class="var-title">$db</span> </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"> <span class="var-title">$db</span> </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"> <span class="var-title">$db</span> </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"> <span class="var-title">$default</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/FT_Base.html#var$default">FT_Base::$default</a> in FT_Base.class.php</div> <div class="index-item-description">Default value of the field.</div> </dd> <dt class="field"> <span class="method-title">d</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/Debug/_debug_php.html#functiond">d()</a> in debug.php</div> <div class="index-item-description">Outputs a debug message, and optionally a variable's content.</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"> <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"> <span class="include-title">DB_Base.class.php</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/_DB_Base_class_php.html">DB_Base.class.php</a> in DB_Base.class.php</div> </dd> <dt class="field"> DB_MySQL </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/DB_MySQL.html">DB_MySQL</a> in DB_MySQL.class.php</div> <div class="index-item-description">Class for MySQL database connection.</div> </dd> <dt class="field"> <span class="include-title">DB_MySQL.class.php</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/_DB_MySQL_class_php.html">DB_MySQL.class.php</a> in DB_MySQL.class.php</div> </dd> <dt class="field"> <span class="include-title">debug.php</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/Debug/_debug_php.html">debug.php</a> in debug.php</div> </dd> <dt class="field"> <span class="method-title">Delete</span> </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"> <span class="method-title">DelSection</span> </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"> <span class="method-title">Duplicate</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/DB_Base.html#methodDuplicate">DB_Base::Duplicate()</a> in DB_Base.class.php</div> <div class="index-item-description">Create a new connection with the same parameters and return it.</div> </dd> <dt class="field"> <span class="method-title">dv</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/Debug/_debug_php.html#functiondv">dv()</a> in debug.php</div> <div class="index-item-description">Same as d(), but first test the debug level.</div> </dd> <dt class="field"> <span class="include-title">d_footer.php</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/Debug/_d_footer_php.html">d_footer.php</a> in d_footer.php</div> </dd> <dt class="field"> <span class="include-title">d_header.php</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/Debug/_d_header_php.html">d_header.php</a> in d_header.php</div> </dd> </dl> <a name="e"></a> <div class="index-letter-section"> <div style="float: left" class="index-letter-title">e</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">Error</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/RS_MySQL.html#methodError">RS_MySQL::Error()</a> in RS_MySQL.class.php</div> <div class="index-item-description">Get the last error message from the RecordSet.</div> </dd> <dt class="field"> <span class="method-title">Error</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/RS_Base.html#methodError">RS_Base::Error()</a> in RS_Base.class.php</div> <div class="index-item-description">Get the last error message from the RecordSet.</div> </dd> <dt class="field"> <span class="method-title">Error</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/DB_MySQL.html#methodError">DB_MySQL::Error()</a> in DB_MySQL.class.php</div> <div class="index-item-description">Get the last error message from the connection.</div> </dd> <dt class="field"> <span class="method-title">Error</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/DB_Base.html#methodError">DB_Base::Error()</a> in DB_Base.class.php</div> <div class="index-item-description">Get the last error message from the connection.</div> </dd> </dl> <a name="f"></a> <div class="index-letter-section"> <div style="float: left" class="index-letter-title">f</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">$fields</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/TB_Base.html#var$fields">TB_Base::$fields</a> in TB_Base.class.php</div> <div class="index-item-description">Array containing all the fields of the table (FT_* classes).</div> </dd> <dt class="field"> <span class="var-title">$file</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/Page/SEC_Static.html#var$file">SEC_Static::$file</a> in SEC_Static.class.php</div> <div class="index-item-description">Optional file where the section is.</div> </dd> <dt class="field"> <span class="method-title">FT_Base</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/FT_Base.html#methodFT_Base">FT_Base::FT_Base()</a> in FT_Base.class.php</div> <div class="index-item-description">Constructor: Load all parameters into member variables.</div> </dd> <dt class="field"> FT_Base </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/FT_Base.html">FT_Base</a> in FT_Base.class.php</div> <div class="index-item-description">Base class for all database fields.</div> </dd> <dt class="field"> <span class="include-title">FT_Base.class.php</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/_FT_Base_class_php.html">FT_Base.class.php</a> in FT_Base.class.php</div> </dd> <dt class="field"> FT_Text </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/FT_Text.html">FT_Text</a> in FT_Text.class.php</div> <div class="index-item-description">Database field, Text type.</div> </dd> <dt class="field"> <span class="include-title">FT_Text.class.php</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/_FT_Text_class_php.html">FT_Text.class.php</a> in FT_Text.class.php</div> </dd> <dt class="field"> <span class="method-title">Func</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/Util/Template.html#methodFunc">Template::Func()</a> in Class Template.php</div> <div class="index-item-description">Member function.</div> </dd> </dl> <a name="i"></a> <div class="index-letter-section"> <div style="float: left" class="index-letter-title">i</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">Insert</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/DB_Base.html#methodInsert">DB_Base::Insert()</a> in DB_Base.class.php</div> <div class="index-item-description">Execute a INSERT INTO query at the database.</div> </dd> </dl> <a name="j"></a> <div class="index-letter-section"> <div style="float: left" class="index-letter-title">j</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">JSConsist</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/FT_Text.html#methodJSConsist">FT_Text::JSConsist()</a> in FT_Text.class.php</div> <div class="index-item-description">Output the field consistency testing in JavaScript.</div> </dd> <dt class="field"> <span class="method-title">JSConsist</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/FT_Base.html#methodJSConsist">FT_Base::JSConsist()</a> in FT_Base.class.php</div> <div class="index-item-description">Output the field consistency testing in JavaScript.</div> </dd> </dl> <a name="l"></a> <div class="index-letter-section"> <div style="float: left" class="index-letter-title">l</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">$label</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/FT_Base.html#var$label">FT_Base::$label</a> in FT_Base.class.php</div> <div class="index-item-description">Label to the field.</div> </dd> <dt class="field"> <span class="var-title">$link</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/DB_Base.html#var$link">DB_Base::$link</a> in DB_Base.class.php</div> <div class="index-item-description">Connection with the database.</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_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> <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> </dl> <a name="n"></a> <div class="index-letter-section"> <div style="float: left" class="index-letter-title">n</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">$name</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/FT_Base.html#var$name">FT_Base::$name</a> in FT_Base.class.php</div> <div class="index-item-description">Field name.</div> </dd> <dt class="field"> <span class="var-title">$name_db</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/FT_Base.html#var$name_db">FT_Base::$name_db</a> in FT_Base.class.php</div> <div class="index-item-description">Name of the field in the database.</div> </dd> <dt class="field"> <span class="var-title">$name_form</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/FT_Base.html#var$name_form">FT_Base::$name_form</a> in FT_Base.class.php</div> <div class="index-item-description">Name of the field in the forms.</div> </dd> </dl> <a name="p"></a> <div class="index-letter-section"> <div style="float: left" class="index-letter-title">p</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">$pkey</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/FT_Base.html#var$pkey">FT_Base::$pkey</a> in FT_Base.class.php</div> <div class="index-item-description">Is the field a Primary Key?</div> </dd> <dt class="field"> <span class="var-title">$pw</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/DB_Base.html#var$pw">DB_Base::$pw</a> in DB_Base.class.php</div> <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> <div class="index-letter-section"> <div style="float: left" class="index-letter-title">q</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">Query</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/DB_MySQL.html#methodQuery">DB_MySQL::Query()</a> in DB_MySQL.class.php</div> <div class="index-item-description">Execute a query at the database.</div> </dd> <dt class="field"> <span class="method-title">Query</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/DB_Base.html#methodQuery">DB_Base::Query()</a> in DB_Base.class.php</div> <div class="index-item-description">Execute a query at the database.</div> </dd> </dl> <a name="r"></a> <div class="index-letter-section"> <div style="float: left" class="index-letter-title">r</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">$required</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/FT_Base.html#var$required">FT_Base::$required</a> in FT_Base.class.php</div> <div class="index-item-description">Is the field required(obligatory)?</div> </dd> <dt class="field"> <span class="var-title">$result</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/RS_Base.html#var$result">RS_Base::$result</a> in RS_Base.class.php</div> <div class="index-item-description">Result from query.</div> </dd> <dt class="field"> <span class="var-title">$row</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/RS_Base.html#var$row">RS_Base::$row</a> in RS_Base.class.php</div> <div class="index-item-description">Current row.</div> </dd> <dt class="field"> <span class="var-title">$rows</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/FT_Text.html#var$rows">FT_Text::$rows</a> in FT_Text.class.php</div> <div class="index-item-description">Number of rows in the text field.</div> </dd> <dt class="field"> <span class="method-title">Rollback</span> </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> <dt class="field"> <span class="method-title">Rollback</span> </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> <dt class="field"> <span class="method-title">Row</span> </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> <dt class="field"> <span class="method-title">Row</span> </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> <dt class="field"> <span class="method-title">RowCount</span> </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">RowCount</span> </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"> <span class="include-title">RS_Base.class.php</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/_RS_Base_class_php.html">RS_Base.class.php</a> in RS_Base.class.php</div> </dd> <dt class="field"> RS_MySQL </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/RS_MySQL.html">RS_MySQL</a> in RS_MySQL.class.php</div> <div class="index-item-description">Class for MySQL RecordSets.</div> </dd> <dt class="field"> <span class="include-title">RS_MySQL.class.php</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/_RS_MySQL_class_php.html">RS_MySQL.class.php</a> in RS_MySQL.class.php</div> </dd> <dt class="field"> <span class="const-title">RS_ROW_ASSOC</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/_RS_Base_class_php.html#defineRS_ROW_ASSOC">RS_ROW_ASSOC</a> in RS_Base.class.php</div> <div class="index-item-description">Return an array with field names as index.</div> </dd> <dt class="field"> <span class="const-title">RS_ROW_BOTH</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/_RS_Base_class_php.html#defineRS_ROW_BOTH">RS_ROW_BOTH</a> in RS_Base.class.php</div> <div class="index-item-description">Return an array with both numeric and field name indexes.</div> </dd> <dt class="field"> <span class="const-title">RS_ROW_NUM</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/_RS_Base_class_php.html#defineRS_ROW_NUM">RS_ROW_NUM</a> in RS_Base.class.php</div> <div class="index-item-description">Return an array with numeric indexes.</div> </dd> </dl> <a name="s"></a> <div class="index-letter-section"> <div style="float: left" class="index-letter-title">s</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">$sections</span> </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"> <span class="var-title">$server</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/DB_Base.html#var$server">DB_Base::$server</a> in DB_Base.class.php</div> <div class="index-item-description">Server host.</div> </dd> <dt class="field"> <span class="var-title">$size</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/FT_Text.html#var$size">FT_Text::$size</a> in FT_Text.class.php</div> <div class="index-item-description">Maximum size of the field. Use -1 for unlimited.</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"> SEC_Base </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/Page/SEC_Base.html">SEC_Base</a> in SEC_Base.class.php</div> <div class="index-item-description">Base class for page sections.</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"> <span class="method-title">SEC_Static</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/Page/SEC_Static.html#methodSEC_Static">SEC_Static::SEC_Static()</a> in SEC_Static.class.php</div> <div class="index-item-description">Constructor: Load all parameters into member variables.</div> </dd> <dt class="field"> SEC_Static </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/Page/SEC_Static.html">SEC_Static</a> in SEC_Static.class.php</div> <div class="index-item-description">Class for static page sections.</div> </dd> <dt class="field"> <span class="include-title">SEC_Static.class.php</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/Page/_SEC_Static_class_php.html">SEC_Static.class.php</a> in SEC_Static.class.php</div> </dd> <dt class="field"> <span class="method-title">SetRow</span> </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> <dt class="field"> <span class="method-title">SetRow</span> </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> <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_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">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">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">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">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"> <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"> <span class="method-title">ShowPlain</span> </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> <dt class="field"> <span class="method-title">ShowPlain</span> </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> </dl> <a name="t"></a> <div class="index-letter-section"> <div style="float: left" class="index-letter-title">t</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">$table</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/FT_Base.html#var$table">FT_Base::$table</a> in FT_Base.class.php</div> <div class="index-item-description">Table which the field comes from.</div> </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"> 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> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/_TB_Base_class_php.html">TB_Base.class.php</a> in TB_Base.class.php</div> </dd> <dt class="field"> Template </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/Util/Template.html">Template</a> in Class Template.php</div> <div class="index-item-description">Class template.</div> </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> <a name="u"></a> <div class="index-letter-section"> <div style="float: left" class="index-letter-title">u</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">$user</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/DB_Base.html#var$user">DB_Base::$user</a> in DB_Base.class.php</div> <div class="index-item-description">Username.</div> </dd> <dt class="field"> <span class="method-title">Update</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/DB_Base.html#methodUpdate">DB_Base::Update()</a> in DB_Base.class.php</div> <div class="index-item-description">Execute a UPDATE query at the database.</div> </dd> </dl> <a name="v"></a> <div class="index-letter-section"> <div style="float: left" class="index-letter-title">v</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">$variable</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/Util/Template.html#var$variable">Template::$variable</a> in Class Template.php</div> <div class="index-item-description">Member variable.</div> </dd> </dl> <div class="index-letter-menu"> <a class="index-letter" href="elementindex.html#a">a</a> <a class="index-letter" href="elementindex.html#b">b</a> <a class="index-letter" href="elementindex.html#c">c</a> <a class="index-letter" href="elementindex.html#d">d</a> <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#i">i</a> <a class="index-letter" href="elementindex.html#j">j</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#p">p</a> <a class="index-letter" href="elementindex.html#q">q</a> <a class="index-letter" href="elementindex.html#r">r</a> <a class="index-letter" href="elementindex.html#s">s</a> <a class="index-letter" href="elementindex.html#t">t</a> <a class="index-letter" href="elementindex.html#u">u</a> <a class="index-letter" href="elementindex.html#v">v</a> </div> </body> </html> --- NEW FILE: errors.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>phpDocumentor Parser Errors and Warnings</title> <link rel="stylesheet" href="media/stylesheet.css" /> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> </head> <body> <a href="#Post-parsing">Post-parsing</a><br> <p class="notes" id="credit"> Documentation generated on Thu, 30 Sep 2004 10:35:44 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> </html> --- NEW FILE: index.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//FR" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <!-- Generated by phpDocumentor on Thu, 30 Sep 2004 10:35:30 -0300 --> <title>PHP Vortex Documentation</title> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> </head> <FRAMESET rows='120,*'> <FRAME src='packages.html' name='left_top' frameborder="1" bordercolor="#999999"> <FRAMESET cols='25%,*'> <FRAME src='li_Vortex.html' name='left_bottom' frameborder="1" bordercolor="#999999"> <FRAME src='blank.html' name='right' frameborder="1" bordercolor="#999999"> </FRAMESET> <NOFRAMES> <H2>Frame Alert</H2> <P>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client.</P> </NOFRAMES> </FRAMESET> </HTML> --- NEW FILE: elementindex_Vortex.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></title> <link rel="stylesheet" href="media/stylesheet.css" /> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> </head> <body> <a name="top"></a> <h2>[Vortex] element index</h2> <a href="elementindex.html">All elements</a> <br /> <div class="index-letter-menu"> <a class="index-letter" href="elementindex_Vortex.html#a">a</a> <a class="index-letter" href="elementindex_Vortex.html#b">b</a> <a class="index-letter" href="elementindex_Vortex.html#c">c</a> <a class="index-letter" href="elementindex_Vortex.html#d">d</a> <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#i">i</a> <a class="index-letter" href="elementindex_Vortex.html#j">j</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#p">p</a> <a class="index-letter" href="elementindex_Vortex.html#q">q</a> <a class="index-letter" href="elementindex_Vortex.html#r">r</a> <a class="index-letter" href="elementindex_Vortex.html#s">s</a> <a class="index-letter" href="elementindex_Vortex.html#t">t</a> <a class="index-letter" href="elementindex_Vortex.html#u">u</a> <a class="index-letter" href="elementindex_Vortex.html#v">v</a> </div> <a name="a"></a> <div class="index-letter-section"> <div style="float: left" class="index-letter-title">a</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">AddSlashes</span> </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> <dt class="field"> <span class="method-title">AddSlashes</span> </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> <dt class="field"> <span class="method-title">All</span> </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> <dt class="field"> <span class="method-title">All</span> </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> <dt class="field"> <span class="method-title">AddSection</span> </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> <a name="b"></a> <div class="index-letter-section"> <div style="float: left" class="index-letter-title">b</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">Begin</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/DB_MySQL.html#methodBegin">DB_MySQL::Begin()</a> in DB_MySQL.class.php</div> <div class="index-item-description">Transactions: Begin a new transaction.</div> </dd> <dt class="field"> <span class="method-title">Begin</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/DB_Base.html#methodBegin">DB_Base::Begin()</a> in DB_Base.class.php</div> <div class="index-item-description">Transactions: Begin a new transaction.</div> </dd> </dl> <a name="c"></a> <div class="index-letter-section"> <div style="float: left" class="index-letter-title">c</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">$cols</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/FT_Text.html#var$cols">FT_Text::$cols</a> in FT_Text.class.php</div> <div class="index-item-description">Number of columns in the field. Use -1 to ignore.</div> </dd> <dt class="field"> <span class="method-title">Close</span> </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> <dt class="field"> <span class="method-title">Close</span> </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> <dt class="field"> <span class="method-title">Close</span> </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> <dt class="field"> <span class="method-title">Close</span> </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> <dt class="field"> <span class="method-title">Commit</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/DB_MySQL.html#methodCommit">DB_MySQL::Commit()</a> in DB_MySQL.class.php</div> <div class="index-item-description">Transactions: Commit a transaction.</div> </dd> <dt class="field"> <span class="method-title">Commit</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/DB_Base.html#methodCommit">DB_Base::Commit()</a> in DB_Base.class.php</div> <div class="index-item-description">Transactions: Commit a transaction.</div> </dd> <dt class="field"> <span class="method-title">Connect</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/DB_Base.html#methodConnect">DB_Base::Connect()</a> in DB_Base.class.php</div> <div class="index-item-description">Open a new connection to the database if not already connected.</div> </dd> <dt class="field"> <span class="method-title">Connect</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/DB_MySQL.html#methodConnect">DB_MySQL::Connect()</a> in DB_MySQL.class.php</div> <div class="index-item-description">Open a new connection to the database if not already connected.</div> </dd> <dt class="field"> <span class="method-title">Consist</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/FT_Base.html#methodConsist">FT_Base::Consist()</a> in FT_Base.class.php</div> <div class="index-item-description">Extract the field from $vars, test the field consistency and return it ready for database insertion.</div> </dd> <dt class="field"> <span class="method-title">ConsistFormat</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/FT_Base.html#methodConsistFormat">FT_Base::ConsistFormat()</a> in FT_Base.class.php</div> <div class="index-item-description">Format the field for database insertion.</div> </dd> <dt class="field"> <span class="method-title">ConsistTest</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/FT_Base.html#methodConsistTest">FT_Base::ConsistTest()</a> in FT_Base.class.php</div> <div class="index-item-description">Test the field consistency.</div> </dd> <dt class="field"> <span class="method-title">ConsistTest</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/FT_Text.html#methodConsistTest">FT_Text::ConsistTest()</a> in FT_Text.class.php</div> <div class="index-item-description">Test the field consistency.</div> </dd> <dt class="field"> <span class="var-title">$code</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/Page/SEC_Static.html#var$code">SEC_Static::$code</a> in SEC_Static.class.php</div> <div class="index-item-description">Optional HTML where the section is.</div> </dd> <dt class="field"> <span class="include-title">Class Template.php</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/Util/_Class Template_php.html">Class Template.php</a> in Class Template.php</div> </dd> </dl> <a name="d"></a> <div class="index-letter-section"> <div style="float: left" class="index-letter-title">d</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">$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 the current row of the table, for output, edit or search.</div> </dd> <dt class="field"> <span class="var-title">$db</span> </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"> <span class="var-title">$db</span> </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"> <span class="var-title">$db</span> </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"> <span class="var-title">$default</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/FT_Base.html#var$default">FT_Base::$default</a> in FT_Base.class.php</div> <div class="index-item-description">Default value of the field.</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"> 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="include-title">DB_Base.class.php</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/_DB_Base_class_php.html">DB_Base.class.php</a> in DB_Base.class.php</div> </dd> <dt class="field"> DB_MySQL </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/DB_MySQL.html">DB_MySQL</a> in DB_MySQL.class.php</div> <div class="index-item-description">Class for MySQL database connection.</div> </dd> <dt class="field"> <span class="include-title">DB_MySQL.class.php</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/_DB_MySQL_class_php.html">DB_MySQL.class.php</a> in DB_MySQL.class.php</div> </dd> <dt class="field"> <span class="method-title">Delete</span> </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"> <span class="method-title">Duplicate</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/DB/DB_Base.html#methodDuplicate">DB_Base::Duplicate()</a> in DB_Base.class.php</div> <div class="index-item-description">Create a new connection with the same parameters and return it.</div> </dd> <dt class="field"> <span class="method-title">d</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/Debug/_debug_php.html#functiond">d()</a> in debug.php</div> <div class="index-item-description">Outputs a debug message, and optionally a variable's content.</div> </dd> <dt class="field"> <span class="include-title">debug.php</span> </dt> <dd class="index-item-body"> <div class="index-item-details"><a href="Vortex/Debug/_debug_php.html">debug.php</a> in debug.php</div> </dd> <dt class="field"> <span class="method-title">dv</span> </dt> <dd c... [truncated message content] |
Update of /cvsroot/phpvortex/phpvortex/doc/html/__filesource In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30714/doc/html/__filesource Added 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_Page_PG_Base.class.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 Log Message: Added the documentation to the CVS --- NEW FILE: fsource_Vortex_Debug_debug.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 debug.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 debug.php</h1> <p>Documentation is available at <a href="../Vortex/Debug/_debug_php.html">debug.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"> * Main file of the debug manager.</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"> Debug</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>isset<span class="src-sym">(</span><span class="src-var">$debug</span><span class="src-sym">) </span><span class="src-key">or </span><span class="src-var">$debug </span>= <span class="src-num">0</span><span class="src-sym">;</span></li> <li><a name="a13"></a>isset<span class="src-sym">(</span><span class="src-var">$_COOKIE</span><span class="src-sym">[</span><span class="src-str">'php_debug'</span><span class="src-sym">]</span><span class="src-sym">) </span><span class="src-key">and </span><span class="src-var">$debug </span>= <a href="http://www.php.net/intval">intval</a><span class="src-sym">(</span><span class="src-var">$_COOKIE</span><span class="src-sym">[</span><span class="src-str">'php_debug'</span><span class="src-sym">]</span><span class="src-sym">)</span><span class="src-sym">;</span></li> <li><a name="a14"></a>isset<span class="src-sym">(</span><span class="src-var">$_REQUEST</span><span class="src-sym">[</span><span class="src-str">'debug'</span><span class="src-sym">]</span><span class="src-sym">) </span><span class="src-key">and </span><a href="http://www.php.net/setcookie">setcookie</a><span class="src-sym">(</span><span class="src-str">'php_debug'</span><span class="src-sym">,</span>(string)<span class="src-sym">(</span><span class="src-var">$debug </span>= <span class="src-sym">(</span><span class="src-var">$_REQUEST</span><span class="src-sym">[</span><span class="src-str">'debug'</span><span class="src-sym">] </span>!= <span class="src-str">''</span><span class="src-sym">)</span>?<a href="http://www.php.net/intval">intval</a><span class="src-sym">(</span><span class="src-var">$_REQUEST</span><span class="src-sym">[</span><span class="src-str">'debug'</span><span class="src-sym">]</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="a15"></a><span class="src-key">if </span><span class="src-sym">(</span><span class="src-var">$debug</span><span class="src-sym">) </span><span class="src-sym">{</span></li> <li><a name="a16"></a> <span class="src-doc">/** Include external debug library. */</span></li> <li><a name="a16"></a> </li> <li><a name="a17"></a> <span class="src-inc">include_once</span><span class="src-sym">(</span><span class="src-str">"debuglib.php"</span><span class="src-sym">)</span><span class="src-sym">;</span></li> <li><a name="a18"></a> </li> <li><a name="a19"></a> <span class="src-doc">/**</span></li> <li><a name="a20"></a><span class="src-doc"> * Outputs a debug message, and optionally a variable's content.</span></li> <li><a name="a21"></a><span class="src-doc"> *</span></li> <li><a name="a22"></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">$msg </span><span class="src-doc">Message to output.</span></li> <li><a name="a23"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@param </span><span class="src-doc-type">mixed </span><span class="src-doc-var">$var </span><span class="src-doc">Variable to be shown.</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/Debug/_debug_php.html#functiond">d</a><span class="src-sym">(</span><span class="src-var">$msg</span><span class="src-sym">, </span><span class="src-var">$var </span>= <span class="src-id">NULL</span><span class="src-sym">) </span></li> <li><a name="a26"></a> <span class="src-sym">{</span></li> <li><a name="a27"></a> echo <span class="src-str">'<span>Debug: '</span>.<a href="http://www.php.net/nl2br">nl2br</a><span class="src-sym">(</span><span class="src-var">$msg</span><span class="src-sym">)</span>.<span class="src-str">'</span><br>'</span><span class="src-sym">;</span></li> <li><a name="a28"></a> <span class="src-key">if </span><span class="src-sym">(</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">$var</span><span class="src-sym">)) </span><span class="src-sym">{</span></li> <li><a name="a29"></a> <span class="src-key">if </span><span class="src-sym">(</span><a href="http://www.php.net/is_array">is_array</a><span class="src-sym">(</span><span class="src-var">$var</span><span class="src-sym">)) </span><span class="src-sym">{</span></li> <li><a name="a30"></a> <span class="src-id">print_a</span><span class="src-sym">(</span><span class="src-var">$var</span><span class="src-sym">)</span><span class="src-sym">;</span></li> <li><a name="a31"></a> <span class="src-sym">} </span><span class="src-key">else </span><span class="src-sym">{</span></li> <li><a name="a32"></a> <span class="src-id">print_a</span><span class="src-sym">(</span><span class="src-key">array</span><span class="src-sym">(</span><a href="http://www.php.net/gettype">gettype</a><span class="src-sym">(</span><span class="src-var">$var</span><span class="src-sym">) </span>=> <span class="src-var">$var</span><span class="src-sym">))</span><span class="src-sym">;</span></li> <li><a name="a33"></a> <span class="src-sym">}</span></li> <li><a name="a34"></a> <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-doc">/**</span></li> <li><a name="a37"></a><span class="src-doc"> * Same as d(), but first test the debug level.</span></li> <li><a name="a38"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@see</span><span class="src-doc"> d</span></li> <li><a name="a39"></a><span class="src-doc"> *</span></li> <li><a name="a40"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@param </span><span class="src-doc-type">int </span><span class="src-doc-var">$lvl </span><span class="src-doc">Required debug level for output.</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">$msg </span><span class="src-doc">Message to output.</span></li> <li><a name="a42"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@param </span><span class="src-doc-type">mixed </span><span class="src-doc-var">$var </span><span class="src-doc">Variable to be shown.</span></li> <li><a name="a43"></a><span class="src-doc"> */</span></li> <li><a name="a44"></a> <span class="src-key">function </span><a href="../Vortex/Debug/_debug_php.html#functiondv">dv</a><span class="src-sym">(</span><span class="src-var">$lvl</span><span class="src-sym">, </span><span class="src-var">$msg</span><span class="src-sym">, </span><span class="src-var">$var </span>= <span class="src-id">NULL</span><span class="src-sym">) </span><span class="src-comm">// Only output if $debug >= $lvl</span></li> <li><a name="a44"></a> </li> <li><a name="a45"></a> <span class="src-sym">{</span></li> <li><a name="a46"></a> <span class="src-key">if </span><span class="src-sym">(</span><span class="src-var">$debug </span>>= <span class="src-var">$lvl</span><span class="src-sym">) </span><span class="src-sym">{</span></li> <li><a name="a47"></a> <a href="../Vortex/Debug/_debug_php.html#functiond">d</a><span class="src-sym">(</span><span class="src-var">$msg</span><span class="src-sym">, </span><span class="src-var">$var</span><span class="src-sym">)</span><span class="src-sym">;</span></li> <li><a name="a48"></a> <span class="src-sym">}</span></li> <li><a name="a49"></a> <span class="src-sym">}</span></li> <li><a name="a50"></a><span class="src-sym">} </span><span class="src-key">else </span><span class="src-sym">{</span></li> <li><a name="a51"></a> <span class="src-doc">/** </span><span class="src-doc-coretag">@ignore</span><span class="src-doc"> */</span></li> <li><a name="a52"></a> <span class="src-key">function </span><a href="../Vortex/Debug/_debug_php.html#functiond">d</a><span class="src-sym">(</span><span class="src-var">$msg</span><span class="src-sym">, </span><span class="src-var">$var </span>= <span class="src-id">NULL</span><span class="src-sym">) </span><span class="src-comm">// Out of debug mode, does nothing.</span></li> <li><a name="a52"></a> </li> <li><a name="a53"></a> <span class="src-sym">{</span></li> <li><a name="a54"></a> <span class="src-key">return</span><span class="src-sym">;</span></li> <li><a name="a55"></a> <span class="src-sym">}</span></li> <li><a name="a56"></a> <span class="src-doc">/** </span><span class="src-doc-coretag">@ignore</span><span class="src-doc"> */</span></li> <li><a name="a57"></a> <span class="src-key">function </span><a href="../Vortex/Debug/_debug_php.html#functiondv">dv</a><span class="src-sym">(</span><span class="src-var">$lvl</span><span class="src-sym">, </span><span class="src-var">$msg</span><span class="src-sym">, </span><span class="src-var">$var </span>= <span class="src-id">NULL</span><span class="src-sym">) </span><span class="src-comm">// Out of debug mode, does nothing.</span></li> <li><a name="a57"></a> </li> <li><a name="a58"></a> <span class="src-sym">{</span></li> <li><a name="a59"></a> <span class="src-key">return</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-sym">}</span></li> <li><a name="a62"></a><span class="src-php">?></span></li> </ol></pre> </div> <p class="notes" id="credit"> Documentation generated on Thu, 30 Sep 2004 10:35:35 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> </html> --- NEW FILE: fsource_Vortex_Page_SEC_Base.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 SEC_Base.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 SEC_Base.class.php</h1> <p>Documentation is available at <a href="../Vortex/Page/_SEC_Base_class_php.html">SEC_Base.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 SEC_Base.</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"> Page</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-doc">/**</span></li> <li><a name="a13"></a><span class="src-doc"> * Base class for page sections.</span></li> <li><a name="a14"></a><span class="src-doc"> *</span></li> <li><a name="a15"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@package</span><span class="src-doc"> Vortex</span></li> <li><a name="a16"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@subpackage</span><span class="src-doc"> Page</span></li> <li><a name="a17"></a><span class="src-doc"> */</span></li> <li><a name="a18"></a><span class="src-key">class </span><a href="../Vortex/Page/SEC_Base.html">SEC_Base</a></li> <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 Thu, 30 Sep 2004 10:35:42 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> </html> --- NEW FILE: fsource_Vortex_DB_RS_MySQL.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 RS_MySQL.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 RS_MySQL.class.php</h1> <p>Documentation is available at <a href="../Vortex/DB/_RS_MySQL_class_php.html">RS_MySQL.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 RS_MySQL.</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"> DB</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-doc">/** Require the base class */</span></li> <li><a name="a12"></a> </li> <li><a name="a13"></a><span class="src-inc">require_once</span><span class="src-sym">(</span><span class="src-str">'RS_Base.class.php'</span><span class="src-sym">)</span><span class="src-sym">;</span></li> <li><a name="a14"></a> </li> <li><a name="a15"></a><span class="src-doc">/**</span></li> <li><a name="a16"></a><span class="src-doc"> * Class for MySQL RecordSets.</span></li> <li><a name="a17"></a><span class="src-doc"> *</span></li> <li><a name="a18"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@package</span><span class="src-doc"> Vortex</span></li> <li><a name="a19"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@subpackage</span><span class="src-doc"> DB</span></li> <li><a name="a20"></a><span class="src-doc"> */</span></li> <li><a name="a21"></a><span class="src-key">class </span><a href="../Vortex/DB/RS_MySQL.html">RS_MySQL</a> <span class="src-key">extends </span><a href="../Vortex/DB/RS_Base.html#methodRS_Base">RS_Base</a></li> <li><a name="a22"></a><span class="src-sym">{</span></li> <li><a name="a23"></a> <span class="src-doc">/**</span></li> <li><a name="a24"></a><span class="src-doc"> * Get the count of rows in the RecordSet.</span></li> <li><a name="a25"></a><span class="src-doc"> *</span></li> <li><a name="a26"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@return </span><span class="src-doc-type">int </span><span class="src-doc">Returns the number of rows in the RecordSet.</span></li> <li><a name="a27"></a><span class="src-doc"> */</span></li> <li><a name="a28"></a> <span class="src-key">function </span><a href="../Vortex/DB/RS_MySQL.html#methodRowCount">RowCount</a><span class="src-sym">(</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-key">return </span><a href="http://www.php.net/mysql_num_rows">mysql_num_rows</a><span class="src-sym">(</span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/RS_Base.html#var$result">result</a><span class="src-sym">)</span><span class="src-sym">;</span></li> <li><a name="a31"></a> <span class="src-sym">}</span></li> <li><a name="a32"></a> </li> <li><a name="a33"></a> <span class="src-doc">/**</span></li> <li><a name="a34"></a><span class="src-doc"> * Get a row from the RecordSet.</span></li> <li><a name="a35"></a><span class="src-doc"> *</span></li> <li><a name="a36"></a><span class="src-doc"> * Case $row is set, return that row, case else, return the next row.</span></li> <li><a name="a37"></a><span class="src-doc"> *</span></li> <li><a name="a38"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@param </span><span class="src-doc-type">int </span><span class="src-doc-var">$row </span><span class="src-doc">Row to return, defaults to next.</span></li> <li><a name="a39"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@param </span><span class="src-doc-type">int </span><span class="src-doc-var">$type </span><span class="src-doc">Type of array to return (RS_ROW_NUM | RS_ROW_ASSOC | RS_ROW_BOTH).</span></li> <li><a name="a40"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@return </span><span class="src-doc-type">array </span><span class="src-doc">Returns the row from the RecordSet, or FALSE if EOF.</span></li> <li><a name="a41"></a><span class="src-doc"> */</span></li> <li><a name="a42"></a> <span class="src-key">function </span><a href="../Vortex/DB/RS_MySQL.html#methodRow">Row</a><span class="src-sym">(</span><span class="src-var">$row </span>= -<span class="src-num">1</span><span class="src-sym">, </span><span class="src-var">$type </span>= <span class="src-id">RS_ROW_ASSOC</span><span class="src-sym">)</span></li> <li><a name="a43"></a> <span class="src-sym">{</span></li> <li><a name="a44"></a> <span class="src-key">if </span><span class="src-sym">(</span><span class="src-var">$row </span>!= -<span class="src-num">1</span><span class="src-sym">) </span><span class="src-sym">{</span></li> <li><a name="a45"></a> <span class="src-key">if </span><span class="src-sym">(</span><span class="src-sym">!</span><a href="http://www.php.net/mysql_data_seek">mysql_data_seek</a><span class="src-sym">(</span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/RS_Base.html#var$result">result</a><span class="src-sym">, </span><span class="src-var">$row</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="a46"></a> <span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/RS_Base.html#var$row">row</a> = <span class="src-var">$row</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-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/RS_Base.html#var$row">row</a>++<span class="src-sym">;</span></li> <li><a name="a49"></a> <span class="src-key">switch </span><span class="src-sym">(</span><span class="src-var">$type</span><span class="src-sym">) </span><span class="src-sym">{</span></li> <li><a name="a50"></a> <span class="src-key">case </span><span class="src-id"><a href="../Vortex/DB/_RS_Base_class_php.html#defineRS_ROW_NUM">RS_ROW_NUM</a></span>:</li> <li><a name="a51"></a> <span class="src-key">return </span><a href="http://www.php.net/mysql_fetch_row">mysql_fetch_row</a><span class="src-sym">(</span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/RS_Base.html#var$result">result</a><span class="src-sym">)</span><span class="src-sym">;</span></li> <li><a name="a52"></a> <span class="src-key">break</span><span class="src-sym">;</span></li> <li><a name="a53"></a> <span class="src-key">case </span><span class="src-id"><a href="../Vortex/DB/_RS_Base_class_php.html#defineRS_ROW_ASSOC">RS_ROW_ASSOC</a></span>:</li> <li><a name="a54"></a> <span class="src-key">return </span><a href="http://www.php.net/mysql_fetch_assoc">mysql_fetch_assoc</a><span class="src-sym">(</span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/RS_Base.html#var$result">result</a><span class="src-sym">)</span><span class="src-sym">;</span></li> <li><a name="a55"></a> <span class="src-key">break</span><span class="src-sym">;</span></li> <li><a name="a56"></a> <span class="src-key">case </span><span class="src-id"><a href="../Vortex/DB/_RS_Base_class_php.html#defineRS_ROW_BOTH">RS_ROW_BOTH</a></span>:</li> <li><a name="a57"></a> <span class="src-key">return </span><a href="http://www.php.net/mysql_fetch_array">mysql_fetch_array</a><span class="src-sym">(</span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/RS_Base.html#var$result">result</a><span class="src-sym">)</span><span class="src-sym">;</span></li> <li><a name="a58"></a> <span class="src-key">break</span><span class="src-sym">;</span></li> <li><a name="a59"></a> <span class="src-sym">}</span></li> <li><a name="a60"></a> <span class="src-key">return </span><span class="src-id">FALSE</span><span class="src-sym">;</span></li> <li><a name="a61"></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"> * Go to a row int the RecordSet.</span></li> <li><a name="a65"></a><span class="src-doc"> *</span></li> <li><a name="a66"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@param </span><span class="src-doc-type">int </span><span class="src-doc-var">$row </span><span class="src-doc">Row to go to.</span></li> <li><a name="a67"></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 if failed.</span></li> <li><a name="a68"></a><span class="src-doc"> */</span></li> <li><a name="a69"></a> <span class="src-key">function </span><a href="../Vortex/DB/RS_MySQL.html#methodSetRow">SetRow</a><span class="src-sym">(</span><span class="src-var">$row </span>= <span class="src-num">0</span><span class="src-sym">)</span></li> <li><a name="a70"></a> <span class="src-sym">{</span></li> <li><a name="a71"></a> <span class="src-key">if </span><span class="src-sym">(</span><span class="src-sym">!</span><a href="http://www.php.net/mysql_data_seek">mysql_data_seek</a><span class="src-sym">(</span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/RS_Base.html#var$result">result</a><span class="src-sym">, </span><span class="src-var">$row</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="a72"></a> <span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/RS_Base.html#var$row">row</a> = <span class="src-var">$row</span><span class="src-sym">;</span></li> <li><a name="a73"></a> <span class="src-key">return </span><span class="src-id">TRUE</span><span class="src-sym">;</span></li> <li><a name="a74"></a> <span class="src-sym">}</span></li> <li><a name="a75"></a> </li> <li><a name="a76"></a> <span class="src-doc">/**</span></li> <li><a name="a77"></a><span class="src-doc"> * Get all rows from the RecordSet.</span></li> <li><a name="a78"></a><span class="src-doc"> *</span></li> <li><a name="a79"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@param </span><span class="src-doc-type">int </span><span class="src-doc-var">$type </span><span class="src-doc">Type of array to return (RS_ROW_NUM | RS_ROW_ASSOC | RS_ROW_BOTH).</span></li> <li><a name="a80"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@return </span><span class="src-doc-type">array </span><span class="src-doc">Returns all the rows from the RecordSet.</span></li> <li><a name="a81"></a><span class="src-doc"> */</span></li> <li><a name="a82"></a> <span class="src-key">function </span><a href="../Vortex/DB/RS_MySQL.html#methodAll">All</a><span class="src-sym">(</span><span class="src-var">$type </span>= <span class="src-id">RS_ROW_ASSOC</span><span class="src-sym">)</span></li> <li><a name="a83"></a> <span class="src-sym">{</span></li> <li><a name="a84"></a> <span class="src-var">$rows </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="a85"></a> <span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/RS_MySQL.html#methodSetRow">SetRow</a><span class="src-sym">(</span><span class="src-sym">)</span><span class="src-sym">;</span></li> <li><a name="a86"></a> <span class="src-key">while </span><span class="src-sym">(</span><span class="src-var">$row </span>= <span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/RS_MySQL.html#methodRow">Row</a><span class="src-sym">(</span>-<span class="src-num">1</span><span class="src-sym">, </span><span class="src-var">$type</span><span class="src-sym">)) </span><span class="src-var">$rows</span><span class="src-sym">[</span><span class="src-sym">] </span>= <span class="src-var">$row</span><span class="src-sym">;</span></li> <li><a name="a87"></a> <span class="src-key">return </span><span class="src-var">$rows</span><span class="src-sym">;</span></li> <li><a name="a88"></a> <span class="src-sym">}</span></li> <li><a name="a89"></a> </li> <li><a name="a90"></a> <span class="src-doc">/**</span></li> <li><a name="a91"></a><span class="src-doc"> * Get the last auto-generated ID from the RecordSet.</span></li> <li><a name="a92"></a><span class="src-doc"> *</span></li> <li><a name="a93"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@return </span><span class="src-doc-type">int </span><span class="src-doc">Returns the last auto-generated ID from the RecordSet.</span></li> <li><a name="a94"></a><span class="src-doc"> */</span></li> <li><a name="a95"></a> <span class="src-key">function </span><a href="../Vortex/DB/RS_MySQL.html#methodLastId">LastId</a><span class="src-sym">(</span><span class="src-sym">)</span></li> <li><a name="a96"></a> <span class="src-sym">{</span></li> <li><a name="a97"></a> <span class="src-key">return </span><a href="http://www.php.net/mysql_insert_id">mysql_insert_id</a><span class="src-sym">(</span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/RS_Base.html#var$db">db</a><span class="src-sym">)</span><span class="src-sym">;</span></li> <li><a name="a98"></a> <span class="src-sym">}</span></li> <li><a name="a99"></a> </li> <li><a name="a100"></a> <span class="src-doc">/**</span></li> <li><a name="a101"></a><span class="src-doc"> * Get the last error message from the RecordSet.</span></li> <li><a name="a102"></a><span class="src-doc"> *</span></li> <li><a name="a103"></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 a string describing the last error that occurred in the RecordSet.</span></li> <li><a name="a104"></a><span class="src-doc"> */</span></li> <li><a name="a105"></a> <span class="src-key">function </span><a href="../Vortex/DB/RS_MySQL.html#methodError">Error</a><span class="src-sym">(</span><span class="src-sym">)</span></li> <li><a name="a106"></a> <span class="src-sym">{</span></li> <li><a name="a107"></a> <span class="src-key">return </span><a href="http://www.php.net/mysql_error">mysql_error</a><span class="src-sym">(</span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/RS_Base.html#var$db">db</a><span class="src-sym">)</span><span class="src-sym">;</span></li> <li><a name="a108"></a> <span class="src-sym">}</span></li> <li><a name="a109"></a> </li> <li><a name="a110"></a> <span class="src-doc">/**</span></li> <li><a name="a111"></a><span class="src-doc"> * Close the RecordSet and free the memory.</span></li> <li><a name="a112"></a><span class="src-doc"> *</span></li> <li><a name="a113"></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 if the RecordSet was closed, FALSE if it failed.</span></li> <li><a name="a114"></a><span class="src-doc"> */</span></li> <li><a name="a115"></a> <span class="src-key">function </span><a href="../Vortex/DB/RS_MySQL.html#methodClose">Close</a><span class="src-sym">(</span><span class="src-sym">)</span></li> <li><a name="a116"></a> <span class="src-sym">{</span></li> <li><a name="a117"></a> <span class="src-key">return </span><a href="http://www.php.net/mysql_free_result">mysql_free_result</a><span class="src-sym">(</span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/RS_Base.html#var$result">result</a><span class="src-sym">)</span><span class="src-sym">;</span></li> <li><a name="a118"></a> <span class="src-sym">}</span></li> <li><a name="a119"></a><span class="src-sym">}</span></li> <li><a name="a120"></a> </li> <li><a name="a121"></a><span class="src-php">?></span></li> </ol></pre> </div> <p class="notes" id="credit"> Documentation generated on Thu, 30 Sep 2004 10:35:41 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> </html> --- NEW FILE: fsource_Vortex_Debug_d_header.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 d_header.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 d_header.php</h1> <p>Documentation is available at <a href="../Vortex/Debug/_d_header_php.html">d_header.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"> * Prepend file for debug.</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"> Debug</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-doc">/** Include main debugger header. */</span></li> <li><a name="a12"></a> </li> <li><a name="a13"></a><span class="src-inc">require_once</span><span class="src-sym">(</span><span class="src-str">"debug.php"</span><span class="src-sym">)</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 Thu, 30 Sep 2004 10:35:36 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> </html> --- NEW FILE: fsource_Vortex_DB_TB_Base.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 TB_Base.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 TB_Base.class.php</h1> <p>Documentation is available at <a href="../Vortex/DB/_TB_Base_class_php.html">TB_Base.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 TB_Base.</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"> DB</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-doc">/**</span></li> <li><a name="a13"></a><span class="src-doc"> * Base class for tables in databases.</span></li> <li><a name="a14"></a><span class="src-doc"> *</span></li> <li><a name="a15"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@package</span><span class="src-doc"> Vortex</span></li> <li><a name="a16"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@subpackage</span><span class="src-doc"> DB</span></li> <li><a name="a17"></a><span class="src-doc"> */</span></li> <li><a name="a18"></a><span class="src-key">class </span><a href="../Vortex/DB/TB_Base.html">TB_Base</a></li> <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"> * Database where the table is.</span></li> <li><a name="a22"></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="a23"></a><span class="src-doc"> */</span></li> <li><a name="a24"></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="a25"></a> </li> <li><a name="a26"></a> <span class="src-doc">/**</span></li> <li><a name="a27"></a><span class="src-doc"> * Array containing all the fields of the table (FT_* classes).</span></li> <li><a name="a28"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@var </span><span class="src-doc-type">array </span></li> <li><a name="a29"></a><span class="src-doc"> */</span></li> <li><a name="a30"></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="a31"></a> </li> <li><a name="a32"></a> <span class="src-doc">/**</span></li> <li><a name="a33"></a><span class="src-doc"> * Array the current row of the table, for output, edit or search.</span></li> <li><a name="a34"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@var </span><span class="src-doc-type">array </span></li> <li><a name="a35"></a><span class="src-doc"> */</span></li> <li><a name="a36"></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="a37"></a> </li> <li><a name="a38"></a> <span class="src-doc">/**</span></li> <li><a name="a39"></a><span class="src-doc"> * Constructor: Init the object, and define the table's fields and relationships.</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">DB_Base </span><span class="src-doc-var">$db </span><span class="src-doc">Database where the table is.</span></li> <li><a name="a42"></a><span class="src-doc"> */</span></li> <li><a name="a43"></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="a44"></a> <span class="src-sym">{</span></li> <li><a name="a45"></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="a46"></a> <span class="src-sym">}</span></li> <li><a name="a47"></a><span class="src-sym">}</span></li> <li><a name="a48"></a> </li> <li><a name="a49"></a><span class="src-php">?></span></li> </ol></pre> </div> <p class="notes" id="credit"> Documentation generated on Thu, 30 Sep 2004 10:35:43 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> </html> --- NEW FILE: fsource_Vortex_DB_RS_Base.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 RS_Base.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 RS_Base.class.php</h1> <p>Documentation is available at <a href="../Vortex/DB/_RS_Base_class_php.html">RS_Base.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 RS_Base.</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"> DB</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-doc">/**</span></li> <li><a name="a13"></a><span class="src-doc"> * Return an array with numeric indexes.</span></li> <li><a name="a14"></a><span class="src-doc"> * Used by </span><span class="src-doc-inlinetag">{@link RS_Base::Row()}</span><span class="src-doc"> and </span><span class="src-doc-inlinetag">{@link RS_Base::All()}</span><span class="src-doc">.</span></li> <li><a name="a15"></a><span class="src-doc"> */</span></li> <li><a name="a16"></a><a href="http://www.php.net/define">define</a><span class="src-sym">(</span><span class="src-str">'RS_ROW_NUM'</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="a17"></a><span class="src-doc">/**</span></li> <li><a name="a18"></a><span class="src-doc"> * Return an array with field names as index.</span></li> <li><a name="a19"></a><span class="src-doc"> * Used by </span><span class="src-doc-inlinetag">{@link RS_Base::Row()}</span><span class="src-doc"> and </span><span class="src-doc-inlinetag">{@link RS_Base::All()}</span><span class="src-doc">.</span></li> <li><a name="a20"></a><span class="src-doc"> */</span></li> <li><a name="a21"></a><a href="http://www.php.net/define">define</a><span class="src-sym">(</span><span class="src-str">'RS_ROW_ASSOC'</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="a22"></a><span class="src-doc">/**</span></li> <li><a name="a23"></a><span class="src-doc"> * Return an array with both numeric and field name indexes.</span></li> <li><a name="a24"></a><span class="src-doc"> * Used by </span><span class="src-doc-inlinetag">{@link RS_Base::Row()}</span><span class="src-doc"> and </span><span class="src-doc-inlinetag">{@link RS_Base::All()}</span><span class="src-doc">.</span></li> <li><a name="a25"></a><span class="src-doc"> */</span></li> <li><a name="a26"></a><a href="http://www.php.net/define">define</a><span class="src-sym">(</span><span class="src-str">'RS_ROW_BOTH'</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="a27"></a> </li> <li><a name="a28"></a><span class="src-doc">/**</span></li> <li><a name="a29"></a><span class="src-doc"> * Base class for RecordSets.</span></li> <li><a name="a30"></a><span class="src-doc"> *</span></li> <li><a name="a31"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@package</span><span class="src-doc"> Vortex</span></li> <li><a name="a32"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@subpackage</span><span class="src-doc"> DB</span></li> <li><a name="a33"></a><span class="src-doc"> */</span></li> <li><a name="a34"></a><span class="src-key">class </span><a href="../Vortex/DB/RS_Base.html">RS_Base</a></li> <li><a name="a35"></a><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.</span></li> <li><a name="a38"></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="a39"></a><span class="src-doc"> */</span></li> <li><a name="a40"></a> <span class="src-key">var </span><a href="../Vortex/DB/RS_Base.html#var$db">$db</a><span class="src-sym">;</span></li> <li><a name="a41"></a> </li> <li><a name="a42"></a> <span class="src-doc">/**</span></li> <li><a name="a43"></a><span class="src-doc"> * Result from query.</span></li> <li><a name="a44"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@var </span><span class="src-doc-type">mixed </span></li> <li><a name="a45"></a><span class="src-doc"> */</span></li> <li><a name="a46"></a> <span class="src-key">var </span><a href="../Vortex/DB/RS_Base.html#var$result">$result</a><span class="src-sym">;</span></li> <li><a name="a47"></a> </li> <li><a name="a48"></a> <span class="src-doc">/**</span></li> <li><a name="a49"></a><span class="src-doc"> * Current row.</span></li> <li><a name="a50"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@var </span><span class="src-doc-type">int </span></li> <li><a name="a51"></a><span class="src-doc"> */</span></li> <li><a name="a52"></a> <span class="src-key">var </span><a href="../Vortex/DB/RS_Base.html#var$row">$row</a><span class="src-sym">;</span></li> <li><a name="a53"></a> </li> <li><a name="a54"></a> <span class="src-doc">/**</span></li> <li><a name="a55"></a><span class="src-doc"> * Constructor: Init the RecordSet from the result of a query.</span></li> <li><a name="a56"></a><span class="src-doc"> *</span></li> <li><a name="a57"></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.</span></li> <li><a name="a58"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@param </span><span class="src-doc-type">mixed </span><span class="src-doc-var">$result </span><span class="src-doc">Result from query.</span></li> <li><a name="a59"></a><span class="src-doc"> */</span></li> <li><a name="a60"></a> <span class="src-key">function </span><a href="../Vortex/DB/RS_Base.html#methodRS_Base">RS_Base</a><span class="src-sym">(</span><span class="src-sym">&</span><span class="src-var">$db</span><span class="src-sym">, </span><span class="src-var">$result</span><span class="src-sym">)</span></li> <li><a name="a61"></a> <span class="src-sym">{</span></li> <li><a name="a62"></a> <span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/RS_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="a63"></a> <span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/RS_Base.html#var$result">result</a> = <span class="src-var">$result</span><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/DB/RS_Base.html#var$row">row</a> = <span class="src-num">0</span><span class="src-sym">;</span></li> <li><a name="a65"></a> <span class="src-sym">}</span></li> <li><a name="a66"></a> </li> <li><a name="a67"></a> <span class="src-doc">/**</span></li> <li><a name="a68"></a><span class="src-doc"> * Get the count of rows in the RecordSet.</span></li> <li><a name="a69"></a><span class="src-doc"> *</span></li> <li><a name="a70"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@abstract</span></li> <li><a name="a71"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@return </span><span class="src-doc-type">int </span><span class="src-doc">Returns the number of rows in the RecordSet.</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/DB/RS_Base.html#methodRowCount">RowCount</a><span class="src-sym">(</span><span class="src-sym">)</span></li> <li><a name="a74"></a> <span class="src-sym">{</span></li> <li><a name="a75"></a> <span class="src-sym">}</span></li> <li><a name="a76"></a> </li> <li><a name="a77"></a> <span class="src-doc">/**</span></li> <li><a name="a78"></a><span class="src-doc"> * Get a row from the RecordSet.</span></li> <li><a name="a79"></a><span class="src-doc"> *</span></li> <li><a name="a80"></a><span class="src-doc"> * Case $row is set, return that row, case else, return the next row.</span></li> <li><a name="a81"></a><span class="src-doc"> *</span></li> <li><a name="a82"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@abstract</span></li> <li><a name="a83"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@param </span><span class="src-doc-type">int </span><span class="src-doc-var">$row </span><span class="src-doc">Row to return, defaults to next.</span></li> <li><a name="a84"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@param </span><span class="src-doc-type">int </span><span class="src-doc-var">$type </span><span class="src-doc">Type of array to return (RS_ROW_NUM | RS_ROW_ASSOC | RS_ROW_BOTH).</span></li> <li><a name="a85"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@return </span><span class="src-doc-type">array </span><span class="src-doc">Returns the row from the RecordSet, or FALSE if EOF.</span></li> <li><a name="a86"></a><span class="src-doc"> */</span></li> <li><a name="a87"></a> <span class="src-key">function </span><a href="../Vortex/DB/RS_Base.html#methodRow">Row</a><span class="src-sym">(</span><span class="src-var">$row </span>= -<span class="src-num">1</span><span class="src-sym">, </span><span class="src-var">$type </span>= <span class="src-id">RS_ROW_ASSOC</span><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-doc">/**</span></li> <li><a name="a92"></a><span class="src-doc"> * Go to a row int the RecordSet.</span></li> <li><a name="a93"></a><span class="src-doc"> *</span></li> <li><a name="a94"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@abstract</span></li> <li><a name="a95"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@param </span><span class="src-doc-type">int </span><span class="src-doc-var">$row </span><span class="src-doc">Row to go to.</span></li> <li><a name="a96"></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 if failed.</span></li> <li><a name="a97"></a><span class="src-doc"> */</span></li> <li><a name="a98"></a> <span class="src-key">function </span><a href="../Vortex/DB/RS_Base.html#methodSetRow">SetRow</a><span class="src-sym">(</span><span class="src-var">$row </span>= <span class="src-num">0</span><span class="src-sym">)</span></li> <li><a name="a99"></a> <span class="src-sym">{</span></li> <li><a name="a100"></a> <span class="src-sym">}</span></li> <li><a name="a101"></a> </li> <li><a name="a102"></a> <span class="src-doc">/**</span></li> <li><a name="a103"></a><span class="src-doc"> * Get all rows from the RecordSet.</span></li> <li><a name="a104"></a><span class="src-doc"> *</span></li> <li><a name="a105"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@abstract</span></li> <li><a name="a106"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@param </span><span class="src-doc-type">int </span><span class="src-doc-var">$type </span><span class="src-doc">Type of array to return (RS_ROW_NUM | RS_ROW_ASSOC | RS_ROW_BOTH).</span></li> <li><a name="a107"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@return </span><span class="src-doc-type">array </span><span class="src-doc">Returns all the rows from the RecordSet.</span></li> <li><a name="a108"></a><span class="src-doc"> */</span></li> <li><a name="a109"></a> <span class="src-key">function </span><a href="../Vortex/DB/RS_Base.html#methodAll">All</a><span class="src-sym">(</span><span class="src-var">$type </span>= <span class="src-id">RS_ROW_ASSOC</span><span class="src-sym">)</span></li> <li><a name="a110"></a> <span class="src-sym">{</span></li> <li><a name="a111"></a> <span class="src-sym">}</span></li> <li><a name="a112"></a> </li> <li><a name="a113"></a> <span class="src-doc">/**</span></li> <li><a name="a114"></a><span class="src-doc"> * Get the last auto-generated ID from the RecordSet.</span></li> <li><a name="a115"></a><span class="src-doc"> *</span></li> <li><a name="a116"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@abstract</span></li> <li><a name="a117"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@return </span><span class="src-doc-type">int </span><span class="src-doc">Returns the last auto-generated ID from the RecordSet.</span></li> <li><a name="a118"></a><span class="src-doc"> */</span></li> <li><a name="a119"></a> <span class="src-key">function </span><a href="../Vortex/DB/RS_Base.html#methodLastId">LastId</a><span class="src-sym">(</span><span class="src-sym">)</span></li> <li><a name="a120"></a> <span class="src-sym">{</span></li> <li><a name="a121"></a> <span class="src-sym">}</span></li> <li><a name="a122"></a> </li> <li><a name="a123"></a> <span class="src-doc">/**</span></li> <li><a name="a124"></a><span class="src-doc"> * Get the last error message from the RecordSet.</span></li> <li><a name="a125"></a><span class="src-doc"> *</span></li> <li><a name="a126"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@abstract</span></li> <li><a name="a127"></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 a string describing the last error that occurred in the RecordSet.</span></li> <li><a name="a128"></a><span class="src-doc"> */</span></li> <li><a name="a129"></a> <span class="src-key">function </span><a href="../Vortex/DB/RS_Base.html#methodError">Error</a><span class="src-sym">(</span><span class="src-sym">)</span></li> <li><a name="a130"></a> <span class="src-sym">{</span></li> <li><a name="a131"></a> <span class="src-key">return </span><span class="src-id">FALSE</span><span class="src-sym">;</span></li> <li><a name="a132"></a> <span class="src-sym">}</span></li> <li><a name="a1... [truncated message content] |
From: Thiago R. <nop...@us...> - 2004-09-30 13:37:37
|
Update of /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30714/doc/html/Vortex/DB Added 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: Added the documentation to the CVS --- NEW FILE: RS_Base.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 RS_Base</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 RS_Base</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-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> <div class="info-box-body"> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Base class for RecordSets.</p> <p class="notes"> Located in <a class="field" href="_RS_Base_class_php.html">/RS_Base.class.php</a> (line <span class="field"><a href="../..//__filesource/fsource_Vortex_DB_RS_Base.class.php.html#a34">34</a></span>) </p> <pre></pre> </div> </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/DB/RS_MySQL.html">RS_MySQL</a></td> <td> Class for MySQL RecordSets. </td> </tr> </table> </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> | <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"><a href="../../Vortex/DB/DB_Base.html">DB_Base</a></span> <a href="#$db" title="details" class="var-name">$db</a> </div> <div class="var-title"> <span class="var-type">mixed</span> <a href="#$result" title="details" class="var-name">$result</a> </div> <div class="var-title"> <span class="var-type">int</span> <a href="#$row" title="details" class="var-name">$row</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-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"> <div class="method-summary"> <div class="method-definition"> <span class="method-result">RS_Base</span> <a href="#RS_Base" title="details" class="method-name">RS_Base</a> (<span class="var-type"><a href="../../Vortex/DB/DB_Base.html">DB_Base</a></span> <span class="var-name">&$db</span>, <span class="var-type">mixed</span> <span class="var-name">$result</span>) </div> <div class="method-definition"> <span class="method-result">array</span> <a href="#All" title="details" class="method-name">All</a> ([<span class="var-type">int</span> <span class="var-name">$type</span> = <span class="var-default">RS_ROW_ASSOC</span>]) </div> <div class="method-definition"> <span class="method-result">bool</span> <a href="#Close" title="details" class="method-name">Close</a> () </div> <div class="method-definition"> <span class="method-result">string</span> <a href="#Error" title="details" class="method-name">Error</a> () </div> <div class="method-definition"> <span class="method-result">int</span> <a href="#LastId" title="details" class="method-name">LastId</a> () </div> <div class="method-definition"> <span class="method-result">array</span> <a href="#Row" title="details" class="method-name">Row</a> ([<span class="var-type">int</span> <span class="var-name">$row</span> = <span class="var-default">-1</span>], [<span class="var-type">int</span> <span class="var-name">$type</span> = <span class="var-default">RS_ROW_ASSOC</span>]) </div> <div class="method-definition"> <span class="method-result">int</span> <a href="#RowCount" title="details" class="method-name">RowCount</a> () </div> <div class="method-definition"> <span class="method-result">bool</span> <a href="#SetRow" title="details" class="method-name">SetRow</a> (<span class="var-type">int</span> <span class="var-name">$row</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-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$db" id="$db"><!-- --></A> <div class="evenrow"> <div class="var-header"> <span class="var-title"> <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_RS_Base.class.php.html#a40">40</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Database.</p> </div> <a name="var$result" id="$result"><!-- --></A> <div class="oddrow"> <div class="var-header"> <span class="var-title"> <span class="var-type">mixed</span> <span class="var-name">$result</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_RS_Base.class.php.html#a46">46</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Result from query.</p> </div> <a name="var$row" id="$row"><!-- --></A> <div class="evenrow"> <div class="var-header"> <span class="var-title"> <span class="var-type">int</span> <span class="var-name">$row</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_RS_Base.class.php.html#a52">52</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Current row.</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-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> <div class="info-box-body"> <A NAME='method_detail'></A> <a name="methodRS_Base" id="RS_Base"><!-- --></a> <div class="oddrow"> <div class="method-header"> <span class="method-title">Constructor RS_Base</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_RS_Base.class.php.html#a60">60</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Constructor: Init the RecordSet from the result of a query.</p> <div class="method-signature"> <span class="method-result">RS_Base</span> <span class="method-name"> RS_Base </span> (<span class="var-type"><a href="../../Vortex/DB/DB_Base.html">DB_Base</a></span> <span class="var-name">&$db</span>, <span class="var-type">mixed</span> <span class="var-name">$result</span>) </div> <ul class="parameters"> <li> <span class="var-type"><a href="../../Vortex/DB/DB_Base.html">DB_Base</a></span> <span class="var-name">$db</span><span class="var-description">: Database.</span> </li> <li> <span class="var-type">mixed</span> <span class="var-name">$result</span><span class="var-description">: Result from query.</span> </li> </ul> </div> <a name="methodAll" id="All"><!-- --></a> <div class="evenrow"> <div class="method-header"> <span class="method-title">All</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_RS_Base.class.php.html#a109">109</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Get all rows from the RecordSet.</p> <ul class="tags"> <li><span class="field">return:</span> Returns all the rows from the RecordSet.</li> <li><span class="field">abstract:</span> </li> </ul> <div class="method-signature"> <span class="method-result">array</span> <span class="method-name"> All </span> ([<span class="var-type">int</span> <span class="var-name">$type</span> = <span class="var-default">RS_ROW_ASSOC</span>]) </div> <ul class="parameters"> <li> <span class="var-type">int</span> <span class="var-name">$type</span><span class="var-description">: Type of array to return (RS_ROW_NUM | RS_ROW_ASSOC | RS_ROW_BOTH).</span> </li> </ul> <hr class="separator" /> <div class="notes">Redefined in descendants as:</div> <ul class="redefinitions"> <li> <a href="../../Vortex/DB/RS_MySQL.html#methodAll">RS_MySQL::All()</a> : Get all rows from the RecordSet. </li> </ul> </div> <a name="methodClose" id="Close"><!-- --></a> <div class="oddrow"> <div class="method-header"> <span class="method-title">Close</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_RS_Base.class.php.html#a140">140</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Close the RecordSet and free the memory.</p> <ul class="tags"> <li><span class="field">return:</span> Returns TRUE if the RecordSet was closed, FALSE if it failed.</li> <li><span class="field">abstract:</span> </li> </ul> <div class="method-signature"> <span class="method-result">bool</span> <span class="method-name"> Close </span> () </div> <hr class="separator" /> <div class="notes">Redefined in descendants as:</div> <ul class="redefinitions"> <li> <a href="../../Vortex/DB/RS_MySQL.html#methodClose">RS_MySQL::Close()</a> : Close the RecordSet and free the memory. </li> </ul> </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_RS_Base.class.php.html#a129">129</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Get the last error message from the RecordSet.</p> <ul class="tags"> <li><span class="field">return:</span> Returns a string describing the last error that occurred in the RecordSet.</li> <li><span class="field">abstract:</span> </li> </ul> <div class="method-signature"> <span class="method-result">string</span> <span class="method-name"> Error </span> () </div> <hr class="separator" /> <div class="notes">Redefined in descendants as:</div> <ul class="redefinitions"> <li> <a href="../../Vortex/DB/RS_MySQL.html#methodError">RS_MySQL::Error()</a> : Get the last error message from the RecordSet. </li> </ul> </div> <a name="methodLastId" id="LastId"><!-- --></a> <div class="oddrow"> <div class="method-header"> <span class="method-title">LastId</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_RS_Base.class.php.html#a119">119</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Get the last auto-generated ID from the RecordSet.</p> <ul class="tags"> <li><span class="field">return:</span> Returns the last auto-generated ID from the RecordSet.</li> <li><span class="field">abstract:</span> </li> </ul> <div class="method-signature"> <span class="method-result">int</span> <span class="method-name"> LastId </span> () </div> <hr class="separator" /> <div class="notes">Redefined in descendants as:</div> <ul class="redefinitions"> <li> <a href="../../Vortex/DB/RS_MySQL.html#methodLastId">RS_MySQL::LastId()</a> : Get the last auto-generated ID from the RecordSet. </li> </ul> </div> <a name="methodRow" id="Row"><!-- --></a> <div class="evenrow"> <div class="method-header"> <span class="method-title">Row</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_RS_Base.class.php.html#a87">87</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Get a row from the RecordSet.</p> <p class="description"><p>Case $row is set, return that row, case else, return the next row.</p></p> <ul class="tags"> <li><span class="field">return:</span> Returns the row from the RecordSet, or FALSE if EOF.</li> <li><span class="field">abstract:</span> </li> </ul> <div class="method-signature"> <span class="method-result">array</span> <span class="method-name"> Row </span> ([<span class="var-type">int</span> <span class="var-name">$row</span> = <span class="var-default">-1</span>], [<span class="var-type">int</span> <span class="var-name">$type</span> = <span class="var-default">RS_ROW_ASSOC</span>]) </div> <ul class="parameters"> <li> <span class="var-type">int</span> <span class="var-name">$row</span><span class="var-description">: Row to return, defaults to next.</span> </li> <li> <span class="var-type">int</span> <span class="var-name">$type</span><span class="var-description">: Type of array to return (RS_ROW_NUM | RS_ROW_ASSOC | RS_ROW_BOTH).</span> </li> </ul> <hr class="separator" /> <div class="notes">Redefined in descendants as:</div> <ul class="redefinitions"> <li> <a href="../../Vortex/DB/RS_MySQL.html#methodRow">RS_MySQL::Row()</a> : Get a row from the RecordSet. </li> </ul> </div> <a name="methodRowCount" id="RowCount"><!-- --></a> <div class="oddrow"> <div class="method-header"> <span class="method-title">RowCount</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_RS_Base.class.php.html#a73">73</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Get the count of rows in the RecordSet.</p> <ul class="tags"> <li><span class="field">return:</span> Returns the number of rows in the RecordSet.</li> <li><span class="field">abstract:</span> </li> </ul> <div class="method-signature"> <span class="method-result">int</span> <span class="method-name"> RowCount </span> () </div> <hr class="separator" /> <div class="notes">Redefined in descendants as:</div> <ul class="redefinitions"> <li> <a href="../../Vortex/DB/RS_MySQL.html#methodRowCount">RS_MySQL::RowCount()</a> : Get the count of rows in the RecordSet. </li> </ul> </div> <a name="methodSetRow" id="SetRow"><!-- --></a> <div class="evenrow"> <div class="method-header"> <span class="method-title">SetRow</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_RS_Base.class.php.html#a98">98</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Go to a row int the RecordSet.</p> <ul class="tags"> <li><span class="field">return:</span> Returns TRUE on success, FALSE if failed.</li> <li><span class="field">abstract:</span> </li> </ul> <div class="method-signature"> <span class="method-result">bool</span> <span class="method-name"> SetRow </span> (<span class="var-type">int</span> <span class="var-name">$row</span>) </div> <ul class="parameters"> <li> <span class="var-type">int</span> <span class="var-name">$row</span><span class="var-description">: Row to go to.</span> </li> </ul> <hr class="separator" /> <div class="notes">Redefined in descendants as:</div> <ul class="redefinitions"> <li> <a href="../../Vortex/DB/RS_MySQL.html#methodSetRow">RS_MySQL::SetRow()</a> : Go to a row int the RecordSet. </li> </ul> </div> </div> </div> <p class="notes" id="credit"> Documentation generated on Thu, 30 Sep 2004 10:35:40 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> </html> --- NEW FILE: RS_MySQL.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 RS_MySQL</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 RS_MySQL</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">Class for MySQL RecordSets.</p> <p class="notes"> Located in <a class="field" href="_RS_MySQL_class_php.html">/RS_MySQL.class.php</a> (line <span class="field"><a href="../..//__filesource/fsource_Vortex_DB_RS_MySQL.class.php.html#a21">21</a></span>) </p> <pre><a href="../../Vortex/DB/RS_Base.html">RS_Base</a> | --RS_MySQL</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">array</span> <a href="#All" title="details" class="method-name">All</a> ([<span class="var-type">int</span> <span class="var-name">$type</span> = <span class="var-default">RS_ROW_ASSOC</span>]) </div> <div class="method-definition"> <span class="method-result">bool</span> <a href="#Close" title="details" class="method-name">Close</a> () </div> <div class="method-definition"> <span class="method-result">string</span> <a href="#Error" title="details" class="method-name">Error</a> () </div> <div class="method-definition"> <span class="method-result">int</span> <a href="#LastId" title="details" class="method-name">LastId</a> () </div> <div class="method-definition"> <span class="method-result">array</span> <a href="#Row" title="details" class="method-name">Row</a> ([<span class="var-type">int</span> <span class="var-name">$row</span> = <span class="var-default">-1</span>], [<span class="var-type">int</span> <span class="var-name">$type</span> = <span class="var-default">RS_ROW_ASSOC</span>]) </div> <div class="method-definition"> <span class="method-result">int</span> <a href="#RowCount" title="details" class="method-name">RowCount</a> () </div> <div class="method-definition"> <span class="method-result">bool</span> <a href="#SetRow" title="details" class="method-name">SetRow</a> (<span class="var-type">int</span> <span class="var-name">$row</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"> <h4>Inherited Variables</h4> <A NAME='inherited_vars'><!-- --></A> <p>Inherited from <span class="classname"><a href="../../Vortex/DB/RS_Base.html">RS_Base</a></span></p> <blockquote> <span class="var-title"> <span class="var-name"><a href="../../Vortex/DB/RS_Base.html#var$db">RS_Base::$db</a></span><br> </span> <span class="var-title"> <span class="var-name"><a href="../../Vortex/DB/RS_Base.html#var$result">RS_Base::$result</a></span><br> </span> <span class="var-title"> <span class="var-name"><a href="../../Vortex/DB/RS_Base.html#var$row">RS_Base::$row</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="methodAll" id="All"><!-- --></a> <div class="evenrow"> <div class="method-header"> <span class="method-title">All</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_RS_MySQL.class.php.html#a82">82</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Get all rows from the RecordSet.</p> <ul class="tags"> <li><span class="field">return:</span> Returns all the rows from the RecordSet.</li> </ul> <div class="method-signature"> <span class="method-result">array</span> <span class="method-name"> All </span> ([<span class="var-type">int</span> <span class="var-name">$type</span> = <span class="var-default">RS_ROW_ASSOC</span>]) </div> <ul class="parameters"> <li> <span class="var-type">int</span> <span class="var-name">$type</span><span class="var-description">: Type of array to return (RS_ROW_NUM | RS_ROW_ASSOC | RS_ROW_BOTH).</span> </li> </ul> <hr class="separator" /> <div class="notes">Redefinition of:</div> <dl> <dt><a href="../../Vortex/DB/RS_Base.html#methodAll">RS_Base::All()</a></dt> <dd>Get all rows from the RecordSet.</dd> </dl> </div> <a name="methodClose" id="Close"><!-- --></a> <div class="oddrow"> <div class="method-header"> <span class="method-title">Close</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_RS_MySQL.class.php.html#a115">115</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Close the RecordSet and free the memory.</p> <ul class="tags"> <li><span class="field">return:</span> Returns TRUE if the RecordSet was closed, FALSE if it failed.</li> </ul> <div class="method-signature"> <span class="method-result">bool</span> <span class="method-name"> Close </span> () </div> <hr class="separator" /> <div class="notes">Redefinition of:</div> <dl> <dt><a href="../../Vortex/DB/RS_Base.html#methodClose">RS_Base::Close()</a></dt> <dd>Close the RecordSet and free the memory.</dd> </dl> </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_RS_MySQL.class.php.html#a105">105</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Get the last error message from the RecordSet.</p> <ul class="tags"> <li><span class="field">return:</span> Returns a string describing the last error that occurred in the RecordSet.</li> </ul> <div class="method-signature"> <span class="method-result">string</span> <span class="method-name"> Error </span> () </div> <hr class="separator" /> <div class="notes">Redefinition of:</div> <dl> <dt><a href="../../Vortex/DB/RS_Base.html#methodError">RS_Base::Error()</a></dt> <dd>Get the last error message from the RecordSet.</dd> </dl> </div> <a name="methodLastId" id="LastId"><!-- --></a> <div class="oddrow"> <div class="method-header"> <span class="method-title">LastId</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_RS_MySQL.class.php.html#a95">95</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Get the last auto-generated ID from the RecordSet.</p> <ul class="tags"> <li><span class="field">return:</span> Returns the last auto-generated ID from the RecordSet.</li> </ul> <div class="method-signature"> <span class="method-result">int</span> <span class="method-name"> LastId </span> () </div> <hr class="separator" /> <div class="notes">Redefinition of:</div> <dl> <dt><a href="../../Vortex/DB/RS_Base.html#methodLastId">RS_Base::LastId()</a></dt> <dd>Get the last auto-generated ID from the RecordSet.</dd> </dl> </div> <a name="methodRow" id="Row"><!-- --></a> <div class="evenrow"> <div class="method-header"> <span class="method-title">Row</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_RS_MySQL.class.php.html#a42">42</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Get a row from the RecordSet.</p> <p class="description"><p>Case $row is set, return that row, case else, return the next row.</p></p> <ul class="tags"> <li><span class="field">return:</span> Returns the row from the RecordSet, or FALSE if EOF.</li> </ul> <div class="method-signature"> <span class="method-result">array</span> <span class="method-name"> Row </span> ([<span class="var-type">int</span> <span class="var-name">$row</span> = <span class="var-default">-1</span>], [<span class="var-type">int</span> <span class="var-name">$type</span> = <span class="var-default">RS_ROW_ASSOC</span>]) </div> <ul class="parameters"> <li> <span class="var-type">int</span> <span class="var-name">$row</span><span class="var-description">: Row to return, defaults to next.</span> </li> <li> <span class="var-type">int</span> <span class="var-name">$type</span><span class="var-description">: Type of array to return (RS_ROW_NUM | RS_ROW_ASSOC | RS_ROW_BOTH).</span> </li> </ul> <hr class="separator" /> <div class="notes">Redefinition of:</div> <dl> <dt><a href="../../Vortex/DB/RS_Base.html#methodRow">RS_Base::Row()</a></dt> <dd>Get a row from the RecordSet.</dd> </dl> </div> <a name="methodRowCount" id="RowCount"><!-- --></a> <div class="oddrow"> <div class="method-header"> <span class="method-title">RowCount</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_RS_MySQL.class.php.html#a28">28</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Get the count of rows in the RecordSet.</p> <ul class="tags"> <li><span class="field">return:</span> Returns the number of rows in the RecordSet.</li> </ul> <div class="method-signature"> <span class="method-result">int</span> <span class="method-name"> RowCount </span> () </div> <hr class="separator" /> <div class="notes">Redefinition of:</div> <dl> <dt><a href="../../Vortex/DB/RS_Base.html#methodRowCount">RS_Base::RowCount()</a></dt> <dd>Get the count of rows in the RecordSet.</dd> </dl> </div> <a name="methodSetRow" id="SetRow"><!-- --></a> <div class="evenrow"> <div class="method-header"> <span class="method-title">SetRow</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_RS_MySQL.class.php.html#a69">69</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Go to a row int the RecordSet.</p> <ul class="tags"> <li><span class="field">return:</span> Returns TRUE on success, FALSE if failed.</li> </ul> <div class="method-signature"> <span class="method-result">bool</span> <span class="method-name"> SetRow </span> (<span class="var-type">int</span> <span class="var-name">$row</span>) </div> <ul class="parameters"> <li> <span class="var-type">int</span> <span class="var-name">$row</span><span class="var-description">: Row to go to.</span> </li> </ul> <hr class="separator" /> <div class="notes">Redefinition of:</div> <dl> <dt><a href="../../Vortex/DB/RS_Base.html#methodSetRow">RS_Base::SetRow()</a></dt> <dd>Go to a row int the RecordSet.</dd> </dl> </div> <h4>Inherited Methods</h4> <a name='inherited_methods'><!-- --></a> <!-- =========== Summary =========== --> <p>Inherited From <span class="classname"><a href="../../Vortex/DB/RS_Base.html">RS_Base</a></span></p> <blockquote> <span class="method-name"><a href="../../Vortex/DB/RS_Base.html#methodRS_Base">RS_Base::RS_Base()</a></span><br> <span class="method-name"><a href="../../Vortex/DB/RS_Base.html#methodAll">RS_Base::All()</a></span><br> <span class="method-name"><a href="../../Vortex/DB/RS_Base.html#methodClose">RS_Base::Close()</a></span><br> <span class="method-name"><a href="../../Vortex/DB/RS_Base.html#methodError">RS_Base::Error()</a></span><br> <span class="method-name"><a href="../../Vortex/DB/RS_Base.html#methodLastId">RS_Base::LastId()</a></span><br> <span class="method-name"><a href="../../Vortex/DB/RS_Base.html#methodRow">RS_Base::Row()</a></span><br> <span class="method-name"><a href="../../Vortex/DB/RS_Base.html#methodRowCount">RS_Base::RowCount()</a></span><br> <span class="method-name"><a href="../../Vortex/DB/RS_Base.html#methodSetRow">RS_Base::SetRow()</a></span><br> </blockquote> </div> </div> <p class="notes" id="credit"> Documentation generated on Thu, 30 Sep 2004 10:35:41 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> </html> --- NEW FILE: _TB_Base_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 TB_Base.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">/TB_Base.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 TB_Base.</p> <ul class="tags"> <li><span class="field">filesource:</span> <a href="../..//__filesource/fsource_Vortex_DB_TB_Base.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/DB/TB_Base.html">TB_Base</a> </td> <td> Base class for tables in databases. </td> </tr> </table> </div> </div> <p class="notes" id="credit"> Documentation generated on Thu, 30 Sep 2004 10:35:43 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> </html> --- NEW FILE: _FT_Base_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 FT_Base.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">/FT_Base.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 FT_Base.</p> <ul class="tags"> <li><span class="field">filesource:</span> <a href="../..//__filesource/fsource_Vortex_DB_FT_Base.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/DB/FT_Base.html">FT_Base</a> </td> <td> Base class for all database fields. </td> </tr> </table> </div> </div> <p class="notes" id="credit"> Documentation generated on Thu, 30 Sep 2004 10:35:36 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> </html> --- NEW FILE: TB_Base.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 TB_Base</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 TB_Base</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">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#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">array</span> <a href="#$data" title="details" class="var-name">$data</a> </div> <div class="var-title"> <span class="var-type"><a href="../../Vortex/DB/DB_Base.html">DB_Base</a></span> <a href="#$db" title="details" class="var-name">$db</a> </div> <div class="var-title"> <span class="var-type">array</span> <a href="#$fields" title="details" class="var-name">$fields</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">TB_Base</span> <a href="#TB_Base" title="details" class="method-name">TB_Base</a> (<span class="var-type"><a href="../../Vortex/DB/DB_Base.html">DB_Base</a></span> <span class="var-name">&$db</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$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">array()</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_TB_Base.class.php.html#a36">36</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> </div> <a name="var$db" id="$db"><!-- --></A> <div class="evenrow"> <div class="var-header"> <span class="var-title"> <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#a24">24</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Database where the table is.</p> </div> <a name="var$fields" id="$fields"><!-- --></A> <div class="oddrow"> <div class="var-header"> <span class="var-title"> <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#a30">30</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Array containing all the fields of the table (FT_* classes).</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="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#a43">43</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Constructor: Init the object, and define the table's fields and relationships.</p> <div class="method-signature"> <span class="method-result">TB_Base</span> <span class="method-name"> TB_Base </span> (<span class="var-type"><a href="../../Vortex/DB/DB_Base.html">DB_Base</a></span> <span class="var-name">&$db</span>) </div> <ul class="parameters"> <li> <span class="var-type"><a href="../../Vortex/DB/DB_Base.html">DB_Base</a></span> <span class="var-name">$db</span><span class="var-description">: Database where the table is.</span> </li> </ul> </div> </div> </div> <p class="notes" id="credit"> Documentation generated on Thu, 30 Sep 2004 10:35:43 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> </html> --- NEW FILE: FT_Base.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 FT_Base</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 FT_Base</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-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> <div class="info-box-body"> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Base class for all database fields.</p> <p class="notes"> Located in <a class="field" href="_FT_Base_class_php.html">/FT_Base.class.php</a> (line <span class="field"><a href="../..//__filesource/fsource_Vortex_DB_FT_Base.class.php.html#a18">18</a></span>) </p> <pre></pre> </div> </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/DB/FT_Text.html">FT_Text</a></td> <td> Database field, Text type. </td> </tr> </table> </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> | <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">string</span> <a href="#$default" title="details" class="var-name">$default</a> </div> <div class="var-title"> <span class="var-type">string</span> <a href="#$label" title="details" class="var-name">$label</a> </div> <div class="var-title"> <span class="var-type">string</span> <a href="#$name" title="details" class="var-name">$name</a> </div> <div class="var-title"> <span class="var-type">string</span> <a href="#$name_db" title="details" class="var-name">$name_db</a> </div> <div class="var-title"> <span class="var-type">string</span> <a href="#$name_form" title="details" class="var-name">$name_form</a> </div> <div class="var-title"> <span class="var-type">bool</span> <a href="#$pkey" title="details" class="var-name">$pkey</a> </div> <div class="var-title"> <span class="var-type">bool</span> <a href="#$required" title="details" class="var-name">$required</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> </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-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"> <div class="method-summary"> <div class="method-definition"> <span class="method-result">FT_Base</span> <a href="#FT_Base" title="details" class="method-name">FT_Base</a> (<span class="var-type"><a href="../../Vortex/DB/TB_Base.html">TB_Base</a></span> <span class="var-name">&$table</span>, [<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">string</span> <a href="#Consist" title="details" class="method-name">Consist</a> (<span class="var-type">array</span> <span class="var-name">&$vars</span>) </div> <div class="method-definition"> <span class="method-result">string</span> <a href="#ConsistFormat" title="details" class="method-name">ConsistFormat</a> (<span class="var-type">string</span> <span class="var-name">&$field</span>) </div> <div class="method-definition"> <span class="method-result">bool</span> <a href="#ConsistTest" title="details" class="method-name">ConsistTest</a> (<span class="var-type">string</span> <span class="var-name">&$field</span>) </div> <div class="method-definition"> <span class="method-result">void</span> <a href="#JSConsist" title="details" class="method-name">JSConsist</a> () </div> <div class="method-definition"> <span class="method-result">void</span> <a href="#Show" title="details" class="method-name">Show</a> ([<span class="var-type">bool</span> <span class="var-name">$form</span> = <span class="var-default">TRUE</span>]) </div> <div class="method-definition"> <span class="method-result">void</span> <a href="#ShowForm" title="details" class="method-name">ShowForm</a> (<span class="var-type">string</span> <span class="var-name">$value</span>) </div> <div class="method-definition"> <span class="method-result">void</span> <a href="#ShowPlain" title="details" class="method-name">ShowPlain</a> (<span class="var-type">string</span> <span class="var-name">$value</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-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$default" id="$default"><!-- --></A> <div class="oddrow"> <div class="var-header"> <span class="var-title"> <span class="var-type">string</span> <span class="var-name">$default</span> = <span class="var-default"> ''</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_FT_Base.class.php.html#a77">77</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Default value of the field.</p> </div> <a name="var$label" id="$label"><!-- --></A> <div class="evenrow"> <div class="var-header"> <span class="var-title"> <span class="var-type">string</span> <span class="var-name">$label</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_FT_Base.class.php.html#a56">56</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Label to the field.</p> <p class="description"><p>Default = <a href="../../Vortex/DB/FT_Base.html#var$name">$name</a></p></p> </div> <a name="var$name" id="$name"><!-- --></A> <div class="oddrow"> <div class="var-header"> <span class="var-title"> <span class="var-type">string</span> <span class="var-name">$name</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_FT_Base.class.php.html#a32">32</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Field name.</p> </div> <a name="var$name_db" id="$name_db"><!-- --></A> <div class="evenrow"> <div class="var-header"> <span class="var-title"> <span class="var-type">string</span> <span class="var-name">$name_db</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_FT_Base.class.php.html#a40">40</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Name of the field in the database.</p> <p class="description"><p>Default = <a href="../../Vortex/DB/FT_Base.html#var$name">$name</a></p></p> </div> <a name="var$name_form" id="$name_form"><!-- --></A> <div class="oddrow"> <div class="var-header"> <span class="var-title"> <span class="var-type">string</span> <span class="var-name">$name_form</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_FT_Base.class.php.html#a48">48</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Name of the field in the forms.</p> <p class="description"><p>Default = <a href="../../Vortex/DB/FT_Base.html#var$name">$name</a></p></p> </div> <a name="var$pkey" id="$pkey"><!-- --></A> <div class="evenrow"> <div class="var-header"> <span class="var-title"> <span class="var-type">bool</span> <span class="var-name">$pkey</span> = <span class="var-default"> FALSE</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_FT_Base.class.php.html#a63">63</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Is the field a Primary Key?</p> </div> <a name="var$required" id="$required"><!-- --></A> <div class="oddrow"> <div class="var-header"> <span class="var-title"> <span class="var-type">bool</span> <span class="var-name">$required</span> = <span class="var-default"> FALSE</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_FT_Base.class.php.html#a70">70</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Is the field required(obligatory)?</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> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_FT_Base.class.php.html#a25">25</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Table which the field comes from.</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-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> <div class="info-box-body"> <A NAME='method_detail'></A> <a name="methodFT_Base" id="FT_Base"><!-- --></a> <div class="oddrow"> <div class="method-header"> <span class="method-title">Constructor FT_Base</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_FT_Base.class.php.html#a85">85</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">FT_Base</span> <span class="method-name"> FT_Base </span> (<span class="var-type"><a href="../../Vortex/DB/TB_Base.html">TB_Base</a></span> <span class="var-name">&$table</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"><a href="../../Vortex/DB/TB_Base.html">TB_Base</a></span> <span class="var-name">$table</span><span class="var-description">: Table which the field comes 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="methodConsist" id="Consist"><!-- --></a> <div class="evenrow"> <div class="method-header"> <span class="method-title">Consist</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_FT_Base.class.php.html#a153">153</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Extract the field from $vars, test the field consistency and return it ready for database insertion.</p> <ul class="tags"> <li><span class="field">return:</span> Returns a string containing the parsed field data, or FALSE if the field is invalid.</li> </ul> <div class="method-signature"> <span class="method-result">string</span> <span class="method-name"> Consist </span> (<span class="var-type">array</span> <span class="var-name">&$vars</span>) </div> <ul class="parameters"> <li> <span class="var-type">array</span> <span class="var-name">$vars</span><span class="var-description">: Array containing the FORM data (usually $_POST).</span> </li> </ul> </div> <a name="methodConsistFormat" id="ConsistFormat"><!-- --></a> <div class="oddrow"> <div class="method-header"> <span class="method-title">ConsistFormat</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_FT_Base.class.php.html#a184">184</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Format the field for database insertion.</p> <ul class="tags"> <li><span class="field">return:</span> Returns the formated field.</li> </ul> <div class="method-signature"> <span class="method-result">string</span> <span class="method-name"> ConsistFormat </span> (<span class="var-type">string</span> <span class="var-name">&$field</span>) </div> <ul class="parameters"> <li> <span class="var-type">string</span> <span class="var-name">$field</span><span class="var-description">: The data from the field to be formated.</span> </li> ... [truncated message content] |
From: Thiago R. <nop...@us...> - 2004-09-30 13:34:48
|
Update of /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30268/DB Log Message: Directory /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB added to the repository |
From: Thiago R. <nop...@us...> - 2004-09-30 13:34:47
|
Update of /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Util In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30268/Util Log Message: Directory /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Util added to the repository |
From: Thiago R. <nop...@us...> - 2004-09-30 13:34:47
|
Update of /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Debug In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30268/Debug Log Message: Directory /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Debug added to the repository |
From: Thiago R. <nop...@us...> - 2004-09-30 13:34:47
|
Update of /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30268/Page Log Message: Directory /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page added to the repository |
From: Thiago R. <nop...@us...> - 2004-09-30 13:34:33
|
Update of /cvsroot/phpvortex/phpvortex/doc/html/__filesource In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30235/__filesource Log Message: Directory /cvsroot/phpvortex/phpvortex/doc/html/__filesource added to the repository |
From: Thiago R. <nop...@us...> - 2004-09-30 13:34:32
|
Update of /cvsroot/phpvortex/phpvortex/doc/html/Vortex In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30235/Vortex Log Message: Directory /cvsroot/phpvortex/phpvortex/doc/html/Vortex added to the repository |
From: Thiago R. <nop...@us...> - 2004-09-30 13:34:32
|
Update of /cvsroot/phpvortex/phpvortex/doc/html/media In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30235/media Log Message: Directory /cvsroot/phpvortex/phpvortex/doc/html/media added to the repository |