phpvortex-commit Mailing List for PHP Vortex Framework
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...> - 2006-11-02 16:54:35
|
Update of /cvsroot/phpvortex/phpvortex In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14412 Modified Files: FT_Base.class.php FT_File.class.php FT_List.class.php FT_ListArray.class.php SEC_Edit.class.php SEC_Page.class.php TB_Base.class.php URL.class.php debug.php Added Files: FT_Numeric.class.php Log Message: Added a FT_Numeric class, and a lot of bug fixes --- NEW FILE: FT_Numeric.class.php --- <?php /** * File for class FT_Numeric. * * @package Vortex * @subpackage DB * @author Thiago Ramon Gonçalves Montoya * @copyright Copyright 2004, Thiago Ramon Gonçalves Montoya * @license http://opensource.org/licenses/lgpl-license.php GNU Lesser General Public License */ /** Require the base class */ require_once('FT_Base.class.php'); /** * Database field, Numeric field. * * @package Vortex * @subpackage DB */ class FT_Numeric extends FT_Base { /** * Output the field as a HTML Form. * * @param string $value Value to load the control with. */ function ShowForm($value, $origin = FT_OR_DB) { echo "<input type='text' name='{$this->name_form}' value='$value' />"; } /** * Output the field as plain text. * * @param string $value Value to load the control with. */ function ShowPlain($value, $origin = FT_OR_DB) { echo $value; } /** * Output the field consistency testing in JavaScript. */ function JSConsist() { if ($this->required) { echo <<<END if (frm.{$this->name_form}.value == "") errors += " * {$this->label}\\n"; END; } } /** * Test the field consistency. * * @param string $field The data from the field to be tested. * @return bool Returns TRUE if the field is consistent, FALSE otherwise. */ function ConsistTest(&$field) { if ($this->required && ($field == '')) return FALSE; return TRUE; } /** * Format the field for a WHERE clause. * * @param string $field The data from the field to be formated. * @return string Returns the formated field. */ function Where(&$field) { return "{$this->name_db} = $field"; } } ?> Index: FT_ListArray.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/FT_ListArray.class.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** FT_ListArray.class.php 29 Sep 2005 20:23:17 -0000 1.2 --- FT_ListArray.class.php 2 Nov 2006 16:54:24 -0000 1.3 *************** *** 88,102 **** return TRUE; } - - /** - * Format the field for database insertion. - * - * @param string $field The data from the field to be formated. - * @return string Returns the formated field. - */ - function ConsistFormat(&$field) - { - return (string)((int)$field); - } } --- 88,91 ---- Index: URL.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/URL.class.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** URL.class.php 6 Aug 2006 14:21:08 -0000 1.3 --- URL.class.php 2 Nov 2006 16:54:24 -0000 1.4 *************** *** 55,59 **** $this->parameters = array(); if (count($parts)==2) { ! $params = explode('&', $parts[1]); foreach ($params as $param) { $pieces = explode('=',$param); --- 55,59 ---- $this->parameters = array(); if (count($parts)==2) { ! $params = explode('&', str_replace('&', '&', $parts[1])); foreach ($params as $param) { $pieces = explode('=',$param); Index: FT_Base.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/FT_Base.class.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** FT_Base.class.php 29 Sep 2005 20:23:17 -0000 1.10 --- FT_Base.class.php 2 Nov 2006 16:54:24 -0000 1.11 *************** *** 158,162 **** return FALSE; } else { ! return "'".$this->default."'"; } } --- 158,162 ---- return FALSE; } else { ! return $this->ConsistFormat($this->default); } } Index: FT_File.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/FT_File.class.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** FT_File.class.php 6 Aug 2006 16:20:48 -0000 1.1 --- FT_File.class.php 2 Nov 2006 16:54:24 -0000 1.2 *************** *** 122,126 **** return FALSE; } else { ! return "'".$this->default."'"; } } --- 122,126 ---- return FALSE; } else { ! return $this->ConsistFormat($this->default); } } Index: SEC_Page.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/SEC_Page.class.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** SEC_Page.class.php 7 Oct 2004 21:21:05 -0000 1.4 --- SEC_Page.class.php 2 Nov 2006 16:54:24 -0000 1.5 *************** *** 81,85 **** $this->AddSection('header', $this->header['class'], $this->header['opts']); } ! $this->AddSection('body_open', 'SEC_Static', array('code' => "<body>".(!empty($this->onload)?" onload='{$this->onload}'":'')."\n")); if (!empty($this->layout)) { foreach ($this->layout as $sect) { --- 81,85 ---- $this->AddSection('header', $this->header['class'], $this->header['opts']); } ! $this->AddSection('body_open', 'SEC_Static', array('code' => "<body".(!empty($this->onload)?" onload='{$this->onload}'":'').">\n")); if (!empty($this->layout)) { foreach ($this->layout as $sect) { Index: FT_List.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/FT_List.class.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** FT_List.class.php 29 Sep 2005 20:23:17 -0000 1.3 --- FT_List.class.php 2 Nov 2006 16:54:24 -0000 1.4 *************** *** 67,71 **** { parent::FT_Base($db, $opts); ! is_null($this->rel_order) and $this->rel_order = $this->rel_label; } --- 67,71 ---- { parent::FT_Base($db, $opts); ! empty($this->rel_order) and $this->rel_order = $this->rel_label; } Index: debug.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/debug.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** debug.php 30 Sep 2004 19:27:47 -0000 1.3 --- debug.php 2 Nov 2006 16:54:24 -0000 1.4 *************** *** 17,20 **** --- 17,22 ---- include_once("debuglib.php"); + error_reporting(E_ALL); + /** * Outputs a debug message, and optionally a variable's content. *************** *** 50,53 **** --- 52,57 ---- } } else { + error_reporting(0); + /** @ignore */ function d($msg, $var = NULL) // Out of debug mode, does nothing. Index: SEC_Edit.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/SEC_Edit.class.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** SEC_Edit.class.php 29 Sep 2005 20:23:17 -0000 1.4 --- SEC_Edit.class.php 2 Nov 2006 16:54:24 -0000 1.5 *************** *** 205,208 **** --- 205,209 ---- $this->AddSection("{$this->table->name}_list", $this->list, $opts); + $url =& new URL(); $url->parameters["{$this->table->name}_action"] = 'S'; $this->AddSection("{$this->table->name}_form", $this->form, array( *************** *** 294,298 **** unset($url->parameters["page_{$this->table->name}"]); $url->parameters["{$this->table->name}_action"] = 'R'; ! $code .= "<script language='JavaScript'>\n\tfunction {$this->table->name}_Reset() {\n\t\tdocument.form_{$this->table->name}.action = '".$url->Get()."';\n\t\tdocument.form_{$this->table->name}.submit();\n\t}\n</script>\n"; if (empty($this->img_reset)) { $code .= "<input type='button' value='".(empty($this->txt_reset)?$vortex_msgs['form_reset']:$this->txt_reset)."' onclick='{$this->table->name}_Reset();' />\n"; --- 295,299 ---- unset($url->parameters["page_{$this->table->name}"]); $url->parameters["{$this->table->name}_action"] = 'R'; ! $code .= "<script language='JavaScript'>\n\tfunction {$this->table->name}_Reset() {\n\t\tdocument.form_{$this->table->name}.action = '".str_replace('&', '&', $url->Get())."';\n\t\tdocument.form_{$this->table->name}.submit();\n\t}\n</script>\n"; if (empty($this->img_reset)) { $code .= "<input type='button' value='".(empty($this->txt_reset)?$vortex_msgs['form_reset']:$this->txt_reset)."' onclick='{$this->table->name}_Reset();' />\n"; *************** *** 303,307 **** $url =& new URL(); $url->parameters["{$this->table->name}_action"] = 'N'; ! $code .= "<script language='JavaScript'>\n\tfunction {$this->table->name}_New() {\n\t\tdocument.form_{$this->table->name}.action = '".$url->Get()."';\n\t\tdocument.form_{$this->table->name}.submit();\n\t}\n</script>\n"; if (empty($this->img_new)) { $code .= "<input type='button' value='".(empty($this->txt_new)?$vortex_msgs['form_new']:$this->txt_new)."' onclick='{$this->table->name}_New();' />\n"; --- 304,308 ---- $url =& new URL(); $url->parameters["{$this->table->name}_action"] = 'N'; ! $code .= "<script language='JavaScript'>\n\tfunction {$this->table->name}_New() {\n\t\tdocument.form_{$this->table->name}.action = '".str_replace('&', '&', $url->Get())."';\n\t\tdocument.form_{$this->table->name}.submit();\n\t}\n</script>\n"; if (empty($this->img_new)) { $code .= "<input type='button' value='".(empty($this->txt_new)?$vortex_msgs['form_new']:$this->txt_new)."' onclick='{$this->table->name}_New();' />\n"; *************** *** 312,316 **** $url =& new URL(); $url->parameters["{$this->table->name}_action"] = 'D'; ! $code .= "<script language='JavaScript'>\n\tfunction {$this->table->name}_Delete() {\n\t\tdocument.form_{$this->table->name}.action = '".$url->Get()."';\n\t\tdocument.form_{$this->table->name}.submit();\n\t}\n</script>\n"; if (empty($this->img_delete)) { $code .= "<input type='button' value='".(empty($this->txt_delete)?$vortex_msgs['form_delete']:$this->txt_delete)."' onclick='{$this->table->name}_Delete();' />\n"; --- 313,317 ---- $url =& new URL(); $url->parameters["{$this->table->name}_action"] = 'D'; ! $code .= "<script language='JavaScript'>\n\tfunction {$this->table->name}_Delete() {\n\t\tdocument.form_{$this->table->name}.action = '".str_replace('&', '&', $url->Get())."';\n\t\tdocument.form_{$this->table->name}.submit();\n\t}\n</script>\n"; if (empty($this->img_delete)) { $code .= "<input type='button' value='".(empty($this->txt_delete)?$vortex_msgs['form_delete']:$this->txt_delete)."' onclick='{$this->table->name}_Delete();' />\n"; *************** *** 322,326 **** unset($url->parameters["page_{$this->table->name}"]); $url->parameters["{$this->table->name}_action"] = 'F'; ! $code .= "<script language='JavaScript'>\n\tfunction {$this->table->name}_Find() {\n\t\tdocument.form_{$this->table->name}.action = '".$url->Get()."';\n\t\tdocument.form_{$this->table->name}.submit();\n\t}\n</script>\n"; if (empty($this->img_find)) { $code .= "<input type='button' value='".(empty($this->txt_find)?$vortex_msgs['form_find']:$this->txt_find)."' onclick='{$this->table->name}_Find();' />\n"; --- 323,327 ---- unset($url->parameters["page_{$this->table->name}"]); $url->parameters["{$this->table->name}_action"] = 'F'; ! $code .= "<script language='JavaScript'>\n\tfunction {$this->table->name}_Find() {\n\t\tdocument.form_{$this->table->name}.action = '".str_replace('&', '&', $url->Get())."';\n\t\tdocument.form_{$this->table->name}.submit();\n\t}\n</script>\n"; if (empty($this->img_find)) { $code .= "<input type='button' value='".(empty($this->txt_find)?$vortex_msgs['form_find']:$this->txt_find)."' onclick='{$this->table->name}_Find();' />\n"; Index: TB_Base.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/TB_Base.class.php,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** TB_Base.class.php 6 Aug 2006 16:20:48 -0000 1.16 --- TB_Base.class.php 2 Nov 2006 16:54:24 -0000 1.17 *************** *** 202,206 **** $where .= (strlen($where)?' AND ':'').$field->Where($value); } else { ! $values[$field->name_db] = $value; } } --- 202,208 ---- $where .= (strlen($where)?' AND ':'').$field->Where($value); } else { ! if (($value != $field->ConsistFormat($field->default)) || isset($data[$field->name_form]) || $field->required) { ! $values[$field->name_db] = $value; ! } } } *************** *** 214,218 **** return FALSE; } ! return TRUE; } if (empty($values)) { --- 216,221 ---- return FALSE; } ! $id = $rs->LastId(); ! return (($id > 0)?$id:TRUE); } if (empty($values)) { |
Update of /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28570/doc/html/Vortex/Page Modified Files: SEC_Base.html SEC_Edit.html SEC_Form.html SEC_Header.html SEC_Include.html SEC_List.html SEC_ListNavigator.html SEC_Page.html SEC_Static.html _SEC_Base_class_php.html _SEC_Edit_class_php.html _SEC_Form_class_php.html _SEC_Header_class_php.html _SEC_Include_class_php.html _SEC_ListNavigator_class_php.html _SEC_List_class_php.html _SEC_Page_class_php.html _SEC_Static_class_php.html Log Message: Updated documentation Index: SEC_ListNavigator.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page/SEC_ListNavigator.html,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** SEC_ListNavigator.html 5 Nov 2004 16:13:39 -0000 1.4 --- SEC_ListNavigator.html 11 Aug 2006 19:21:20 -0000 1.5 *************** *** 130,134 **** <div class="info-box-body"> <a name="var$first" id="$first"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 130,134 ---- <div class="info-box-body"> <a name="var$first" id="$first"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 149,153 **** </div> <a name="var$key" id="$key"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 149,153 ---- </div> <a name="var$key" id="$key"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 168,172 **** </div> <a name="var$last" id="$last"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 168,172 ---- </div> <a name="var$last" id="$last"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 187,191 **** </div> <a name="var$next" id="$next"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 187,191 ---- </div> <a name="var$next" id="$next"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 206,210 **** </div> <a name="var$page" id="$page"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 206,210 ---- </div> <a name="var$page" id="$page"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 225,229 **** </div> <a name="var$pages" id="$pages"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 225,229 ---- </div> <a name="var$pages" id="$pages"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 244,248 **** </div> <a name="var$previous" id="$previous"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 244,248 ---- </div> <a name="var$previous" id="$previous"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 263,267 **** </div> <a name="var$range" id="$range"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 263,267 ---- </div> <a name="var$range" id="$range"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 282,286 **** </div> <a name="var$range_all" id="$range_all"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 282,286 ---- </div> <a name="var$range_all" id="$range_all"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 301,305 **** </div> <a name="var$url" id="$url"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 301,305 ---- </div> <a name="var$url" id="$url"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 343,347 **** <A NAME='method_detail'></A> <a name="methodShow" id="Show"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> --- 343,347 ---- <A NAME='method_detail'></A> <a name="methodShow" id="Show"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> *************** *** 386,390 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:36 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 386,390 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:22:08 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: _SEC_Include_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page/_SEC_Include_class_php.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** _SEC_Include_class_php.html 5 Nov 2004 16:19:06 -0000 1.1 --- _SEC_Include_class_php.html 11 Aug 2006 19:21:21 -0000 1.2 *************** *** 69,73 **** <div class="info-box-body"> <a name="_SEC_Base_class_php"><!-- --></a> ! <div class="oddrow"> <div> --- 69,73 ---- <div class="info-box-body"> <a name="_SEC_Base_class_php"><!-- --></a> ! <div class="evenrow"> <div> *************** *** 90,94 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:33 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 90,94 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:22:07 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: SEC_Edit.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page/SEC_Edit.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** SEC_Edit.html 5 Nov 2004 16:13:39 -0000 1.2 --- SEC_Edit.html 11 Aug 2006 19:21:20 -0000 1.3 *************** *** 82,85 **** --- 82,89 ---- </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">string</span> <a href="#$form" title="details" class="var-name">$form</a> *************** *** 91,94 **** --- 95,102 ---- <div class="var-title"> <span class="var-type">string</span> + <a href="#$img_find" title="details" class="var-name">$img_find</a> + </div> + <div class="var-title"> + <span class="var-type">string</span> <a href="#$img_new" title="details" class="var-name">$img_new</a> </div> *************** *** 119,126 **** --- 127,146 ---- <div class="var-title"> <span class="var-type">string</span> + <a href="#$table_class" title="details" class="var-name">$table_class</a> + </div> + <div class="var-title"> + <span class="var-type">array</span> + <a href="#$table_opts" title="details" class="var-name">$table_opts</a> + </div> + <div class="var-title"> + <span class="var-type">string</span> <a href="#$txt_delete" title="details" class="var-name">$txt_delete</a> </div> <div class="var-title"> <span class="var-type">string</span> + <a href="#$txt_find" title="details" class="var-name">$txt_find</a> + </div> + <div class="var-title"> + <span class="var-type">string</span> <a href="#$txt_new" title="details" class="var-name">$txt_new</a> </div> *************** *** 199,203 **** <span class="var-type">string</span> <span class="var-name">$buttons</span> ! = <span class="var-default"> 'SRND'</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a72">72</a></span>) </span> </div> --- 219,223 ---- <span class="var-type">string</span> <span class="var-name">$buttons</span> ! = <span class="var-default"> 'SRFND'</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a93">93</a></span>) </span> </div> *************** *** 212,223 **** </div> ! <a name="var$form" id="$form"><!-- --></A> <div class="oddrow"> <div class="var-header"> <span class="var-title"> <span class="var-type">string</span> <span class="var-name">$form</span> ! = <span class="var-default"> 'SEC_Form'</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a37">37</a></span>) </span> </div> --- 232,270 ---- </div> ! <a name="var$db" id="$db"><!-- --></A> <div class="oddrow"> <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> + = <span class="var-default"> NULL</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a36">36</a></span>) + </span> + </div> + + <!-- ========== Info from phpDoc block ========= --> + <p class="short-description">DB connection.</p> + + + + <hr class="separator" /> + <div class="notes">Redefined in descendants as:</div> + <ul class="redefinitions"> + <li> + <a href="../../Vortex/Debug/SEC_EditTest.html#var$db">SEC_EditTest::$db</a> + : Database. + </li> + </ul> + + + </div> + <a name="var$form" id="$form"><!-- --></A> + <div class="evenrow"> + + <div class="var-header"> + <span class="var-title"> <span class="var-type">string</span> <span class="var-name">$form</span> ! = <span class="var-default"> 'SEC_Form'</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a57">57</a></span>) </span> </div> *************** *** 232,236 **** </div> <a name="var$img_delete" id="$img_delete"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 279,283 ---- </div> <a name="var$img_delete" id="$img_delete"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 238,242 **** <span class="var-type">string</span> <span class="var-name">$img_delete</span> ! = <span class="var-default"> ''</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a128">128</a></span>) </span> </div> --- 285,289 ---- <span class="var-type">string</span> <span class="var-name">$img_delete</span> ! = <span class="var-default"> ''</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a149">149</a></span>) </span> </div> *************** *** 250,253 **** --- 297,319 ---- </div> + <a name="var$img_find" id="$img_find"><!-- --></A> + <div class="evenrow"> + + <div class="var-header"> + <span class="var-title"> + <span class="var-type">string</span> + <span class="var-name">$img_find</span> + = <span class="var-default"> ''</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a163">163</a></span>) + </span> + </div> + + <!-- ========== Info from phpDoc block ========= --> + <p class="short-description">Image for the find button.</p> + + + + + + </div> <a name="var$img_new" id="$img_new"><!-- --></A> <div class="oddrow"> *************** *** 257,261 **** <span class="var-type">string</span> <span class="var-name">$img_new</span> ! = <span class="var-default"> ''</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a114">114</a></span>) </span> </div> --- 323,327 ---- <span class="var-type">string</span> <span class="var-name">$img_new</span> ! = <span class="var-default"> ''</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a135">135</a></span>) </span> </div> *************** *** 276,280 **** <span class="var-type">string</span> <span class="var-name">$img_reset</span> ! = <span class="var-default"> ''</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a100">100</a></span>) </span> </div> --- 342,346 ---- <span class="var-type">string</span> <span class="var-name">$img_reset</span> ! = <span class="var-default"> ''</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a121">121</a></span>) </span> </div> *************** *** 295,299 **** <span class="var-type">string</span> <span class="var-name">$img_submit</span> ! = <span class="var-default"> ''</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a86">86</a></span>) </span> </div> --- 361,365 ---- <span class="var-type">string</span> <span class="var-name">$img_submit</span> ! = <span class="var-default"> ''</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a107">107</a></span>) </span> </div> *************** *** 314,318 **** <span class="var-type">string</span> <span class="var-name">$list</span> ! = <span class="var-default"> 'SEC_List'</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a44">44</a></span>) </span> </div> --- 380,384 ---- <span class="var-type">string</span> <span class="var-name">$list</span> ! = <span class="var-default"> 'SEC_List'</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a64">64</a></span>) </span> </div> *************** *** 333,337 **** <span class="var-type">string</span> <span class="var-name">$navi</span> ! = <span class="var-default"> 'SEC_ListNavigator'</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a51">51</a></span>) </span> </div> --- 399,403 ---- <span class="var-type">string</span> <span class="var-name">$navi</span> ! = <span class="var-default"> 'SEC_ListNavigator'</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a71">71</a></span>) </span> </div> *************** *** 352,356 **** <span class="var-type">int</span> <span class="var-name">$recspage</span> ! = <span class="var-default"> -1</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a58">58</a></span>) </span> </div> --- 418,422 ---- <span class="var-type">int</span> <span class="var-name">$recspage</span> ! = <span class="var-default"> -1</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a78">78</a></span>) </span> </div> *************** *** 383,386 **** --- 449,490 ---- </div> + <a name="var$table_class" id="$table_class"><!-- --></A> + <div class="evenrow"> + + <div class="var-header"> + <span class="var-title"> + <span class="var-type">string</span> + <span class="var-name">$table_class</span> + = <span class="var-default"> ''</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a43">43</a></span>) + </span> + </div> + + <!-- ========== Info from phpDoc block ========= --> + <p class="short-description">Specify a table class to instantiate.</p> + + + + + + </div> + <a name="var$table_opts" id="$table_opts"><!-- --></A> + <div class="oddrow"> + + <div class="var-header"> + <span class="var-title"> + <span class="var-type">array</span> + <span class="var-name">$table_opts</span> + = <span class="var-default">array()</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a50">50</a></span>) + </span> + </div> + + <!-- ========== Info from phpDoc block ========= --> + <p class="short-description">Specify options to the $table_class instance.</p> + + + + + + </div> <a name="var$txt_delete" id="$txt_delete"><!-- --></A> <div class="evenrow"> *************** *** 390,394 **** <span class="var-type">string</span> <span class="var-name">$txt_delete</span> ! = <span class="var-default"> ''</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a121">121</a></span>) </span> </div> --- 494,498 ---- <span class="var-type">string</span> <span class="var-name">$txt_delete</span> ! = <span class="var-default"> ''</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a142">142</a></span>) </span> </div> *************** *** 402,406 **** </div> ! <a name="var$txt_new" id="$txt_new"><!-- --></A> <div class="oddrow"> --- 506,510 ---- </div> ! <a name="var$txt_find" id="$txt_find"><!-- --></A> <div class="oddrow"> *************** *** 408,413 **** <span class="var-title"> <span class="var-type">string</span> <span class="var-name">$txt_new</span> ! = <span class="var-default"> ''</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a107">107</a></span>) </span> </div> --- 512,536 ---- <span class="var-title"> <span class="var-type">string</span> + <span class="var-name">$txt_find</span> + = <span class="var-default"> ''</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a156">156</a></span>) + </span> + </div> + + <!-- ========== Info from phpDoc block ========= --> + <p class="short-description">Text for the find button.</p> + + + + + + </div> + <a name="var$txt_new" id="$txt_new"><!-- --></A> + <div class="evenrow"> + + <div class="var-header"> + <span class="var-title"> + <span class="var-type">string</span> <span class="var-name">$txt_new</span> ! = <span class="var-default"> ''</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a128">128</a></span>) </span> </div> *************** *** 422,426 **** </div> <a name="var$txt_reset" id="$txt_reset"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 545,549 ---- </div> <a name="var$txt_reset" id="$txt_reset"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 428,432 **** <span class="var-type">string</span> <span class="var-name">$txt_reset</span> ! = <span class="var-default"> ''</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a93">93</a></span>) </span> </div> --- 551,555 ---- <span class="var-type">string</span> <span class="var-name">$txt_reset</span> ! = <span class="var-default"> ''</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a114">114</a></span>) </span> </div> *************** *** 441,445 **** </div> <a name="var$txt_submit" id="$txt_submit"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 564,568 ---- </div> <a name="var$txt_submit" id="$txt_submit"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 447,451 **** <span class="var-type">string</span> <span class="var-name">$txt_submit</span> ! = <span class="var-default"> ''</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a79">79</a></span>) </span> </div> --- 570,574 ---- <span class="var-type">string</span> <span class="var-name">$txt_submit</span> ! = <span class="var-default"> ''</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a100">100</a></span>) </span> </div> *************** *** 484,491 **** <A NAME='method_detail'></A> <a name="methodSEC_Edit" id="SEC_Edit"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> ! <span class="method-title">Constructor SEC_Edit</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a135">135</a></span>) </div> --- 607,614 ---- <A NAME='method_detail'></A> <a name="methodSEC_Edit" id="SEC_Edit"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> ! <span class="method-title">Constructor SEC_Edit</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a170">170</a></span>) </div> *************** *** 510,517 **** </div> <a name="methodBuildButtons" id="BuildButtons"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> ! <span class="method-title">BuildButtons</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a223">223</a></span>) </div> --- 633,640 ---- </div> <a name="methodBuildButtons" id="BuildButtons"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> ! <span class="method-title">BuildButtons</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a276">276</a></span>) </div> *************** *** 534,541 **** </div> <a name="methodPerform" id="Perform"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> ! <span class="method-title">Perform</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a176">176</a></span>) </div> --- 657,664 ---- </div> <a name="methodPerform" id="Perform"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> ! <span class="method-title">Perform</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a220">220</a></span>) </div> *************** *** 554,558 **** <li> <span class="var-type">string</span> ! <span class="var-name">$action</span><span class="var-description">: Action to perform ('S' for INSERT/UPDATE, 'E' for edit, 'N' for new, 'D' for DELETE).</span> </li> </ul> --- 677,681 ---- <li> <span class="var-type">string</span> ! <span class="var-name">$action</span><span class="var-description">: Action to perform ('S' for INSERT/UPDATE, 'E' for edit, 'N' for new, 'D' for DELETE, 'F' for find).</span> </li> </ul> *************** *** 560,567 **** </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_Edit.class.php.html#a268">268</a></span>) </div> --- 683,690 ---- </div> <a name="methodShow" id="Show"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> ! <span class="method-title">Show</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Edit.class.php.html#a338">338</a></span>) </div> *************** *** 602,606 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:30 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 725,729 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:22:05 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: SEC_Static.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page/SEC_Static.html,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** SEC_Static.html 5 Nov 2004 16:13:39 -0000 1.7 --- SEC_Static.html 11 Aug 2006 19:21:20 -0000 1.8 *************** *** 98,102 **** <div class="info-box-body"> <a name="var$code" id="$code"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 98,102 ---- <div class="info-box-body"> <a name="var$code" id="$code"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 117,121 **** </div> <a name="var$file" id="$file"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 117,121 ---- </div> <a name="var$file" id="$file"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 159,163 **** <A NAME='method_detail'></A> <a name="methodShow" id="Show"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> --- 159,163 ---- <A NAME='method_detail'></A> <a name="methodShow" id="Show"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> *************** *** 202,206 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:38 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 202,206 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:22:09 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: SEC_Page.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page/SEC_Page.html,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** SEC_Page.html 5 Nov 2004 16:13:39 -0000 1.5 --- SEC_Page.html 11 Aug 2006 19:21:20 -0000 1.6 *************** *** 141,145 **** <div class="info-box-body"> <a name="var$content" id="$content"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 141,145 ---- <div class="info-box-body"> <a name="var$content" id="$content"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 162,166 **** </div> <a name="var$header" id="$header"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 162,166 ---- </div> <a name="var$header" id="$header"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 183,187 **** </div> <a name="var$layout" id="$layout"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 183,187 ---- </div> <a name="var$layout" id="$layout"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 205,209 **** </div> <a name="var$onload" id="$onload"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 205,209 ---- </div> <a name="var$onload" id="$onload"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 248,252 **** <A NAME='method_detail'></A> <a name="methodSEC_Page" id="SEC_Page"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> --- 248,252 ---- <A NAME='method_detail'></A> <a name="methodSEC_Page" id="SEC_Page"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> *************** *** 274,278 **** </div> <a name="methodShow" id="Show"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> --- 274,278 ---- </div> <a name="methodShow" id="Show"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> *************** *** 317,321 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:37 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 317,321 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:22:09 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: SEC_Include.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page/SEC_Include.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** SEC_Include.html 5 Nov 2004 16:19:06 -0000 1.1 --- SEC_Include.html 11 Aug 2006 19:21:20 -0000 1.2 *************** *** 94,98 **** <div class="info-box-body"> <a name="var$include" id="$include"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 94,98 ---- <div class="info-box-body"> <a name="var$include" id="$include"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 136,140 **** <A NAME='method_detail'></A> <a name="methodShow" id="Show"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> --- 136,140 ---- <A NAME='method_detail'></A> <a name="methodShow" id="Show"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> *************** *** 178,182 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:34 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 178,182 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:22:07 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: SEC_List.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page/SEC_List.html,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** SEC_List.html 5 Nov 2004 16:13:39 -0000 1.4 --- SEC_List.html 11 Aug 2006 19:21:20 -0000 1.5 *************** *** 116,120 **** <div class="info-box-body"> <a name="var$data" id="$data"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 116,120 ---- <div class="info-box-body"> <a name="var$data" id="$data"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 135,139 **** </div> <a name="var$navigator" id="$navigator"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 135,139 ---- </div> <a name="var$navigator" id="$navigator"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 156,160 **** </div> <a name="var$recspage" id="$recspage"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 156,160 ---- </div> <a name="var$recspage" id="$recspage"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 175,179 **** </div> <a name="var$table" id="$table"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 175,179 ---- </div> <a name="var$table" id="$table"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 194,198 **** </div> <a name="var$url" id="$url"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 194,198 ---- </div> <a name="var$url" id="$url"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 236,240 **** <A NAME='method_detail'></A> <a name="methodSEC_List" id="SEC_List"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> --- 236,240 ---- <A NAME='method_detail'></A> <a name="methodSEC_List" id="SEC_List"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> *************** *** 262,266 **** </div> <a name="methodShow" id="Show"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> --- 262,266 ---- </div> <a name="methodShow" id="Show"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> *************** *** 304,308 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:35 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 304,308 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:22:08 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: _SEC_Base_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page/_SEC_Base_class_php.html,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** _SEC_Base_class_php.html 5 Nov 2004 16:13:39 -0000 1.7 --- _SEC_Base_class_php.html 11 Aug 2006 19:21:20 -0000 1.8 *************** *** 62,66 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:13 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 62,66 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:22:00 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: _SEC_Page_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page/_SEC_Page_class_php.html,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** _SEC_Page_class_php.html 5 Nov 2004 16:13:39 -0000 1.5 --- _SEC_Page_class_php.html 11 Aug 2006 19:21:21 -0000 1.6 *************** *** 69,73 **** <div class="info-box-body"> <a name="_SEC_Base_class_php"><!-- --></a> ! <div class="evenrow"> <div> --- 69,73 ---- <div class="info-box-body"> <a name="_SEC_Base_class_php"><!-- --></a> ! <div class="oddrow"> <div> *************** *** 90,94 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:37 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 90,94 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:22:09 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: SEC_Form.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page/SEC_Form.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** SEC_Form.html 5 Nov 2004 16:13:39 -0000 1.3 --- SEC_Form.html 11 Aug 2006 19:21:20 -0000 1.4 *************** *** 106,110 **** <div class="info-box-body"> <a name="var$data" id="$data"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 106,110 ---- <div class="info-box-body"> <a name="var$data" id="$data"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 125,129 **** </div> <a name="var$submit" id="$submit"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 125,129 ---- </div> <a name="var$submit" id="$submit"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 144,148 **** </div> <a name="var$table" id="$table"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 144,148 ---- </div> <a name="var$table" id="$table"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 163,167 **** </div> <a name="var$url" id="$url"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 163,167 ---- </div> <a name="var$url" id="$url"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 205,209 **** <A NAME='method_detail'></A> <a name="methodShow" id="Show"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> --- 205,209 ---- <A NAME='method_detail'></A> <a name="methodShow" id="Show"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> *************** *** 247,251 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:32 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 247,251 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:22:06 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: SEC_Base.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page/SEC_Base.html,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** SEC_Base.html 5 Nov 2004 16:13:39 -0000 1.7 --- SEC_Base.html 11 Aug 2006 19:21:20 -0000 1.8 *************** *** 366,370 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:13 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 366,370 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:22:00 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: SEC_Header.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page/SEC_Header.html,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** SEC_Header.html 5 Nov 2004 16:13:39 -0000 1.5 --- SEC_Header.html 11 Aug 2006 19:21:20 -0000 1.6 *************** *** 98,102 **** <div class="info-box-body"> <a name="var$styles" id="$styles"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 98,102 ---- <div class="info-box-body"> <a name="var$styles" id="$styles"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 117,121 **** </div> <a name="var$title" id="$title"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 117,121 ---- </div> <a name="var$title" id="$title"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 159,163 **** <A NAME='method_detail'></A> <a name="methodShow" id="Show"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> --- 159,163 ---- <A NAME='method_detail'></A> <a name="methodShow" id="Show"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> *************** *** 202,206 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:33 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 202,206 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:22:07 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: _SEC_Form_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page/_SEC_Form_class_php.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** _SEC_Form_class_php.html 5 Nov 2004 16:13:39 -0000 1.3 --- _SEC_Form_class_php.html 11 Aug 2006 19:21:20 -0000 1.4 *************** *** 69,73 **** <div class="info-box-body"> <a name="_SEC_Base_class_php"><!-- --></a> ! <div class="oddrow"> <div> --- 69,73 ---- <div class="info-box-body"> <a name="_SEC_Base_class_php"><!-- --></a> ! <div class="evenrow"> <div> *************** *** 84,88 **** </div> <a name="_URL_class_php"><!-- --></a> ! <div class="evenrow"> <div> --- 84,88 ---- </div> <a name="_URL_class_php"><!-- --></a> ! <div class="oddrow"> <div> *************** *** 105,109 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:32 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 105,109 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:22:06 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: _SEC_Header_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page/_SEC_Header_class_php.html,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** _SEC_Header_class_php.html 5 Nov 2004 16:13:39 -0000 1.5 --- _SEC_Header_class_php.html 11 Aug 2006 19:21:20 -0000 1.6 *************** *** 69,73 **** <div class="info-box-body"> <a name="_SEC_Base_class_php"><!-- --></a> ! <div class="evenrow"> <div> --- 69,73 ---- <div class="info-box-body"> <a name="_SEC_Base_class_php"><!-- --></a> ! <div class="oddrow"> <div> *************** *** 90,94 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:33 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 90,94 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:22:07 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: _SEC_Static_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page/_SEC_Static_class_php.html,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** _SEC_Static_class_php.html 5 Nov 2004 16:13:39 -0000 1.7 --- _SEC_Static_class_php.html 11 Aug 2006 19:21:21 -0000 1.8 *************** *** 69,73 **** <div class="info-box-body"> <a name="_SEC_Base_class_php"><!-- --></a> ! <div class="evenrow"> <div> --- 69,73 ---- <div class="info-box-body"> <a name="_SEC_Base_class_php"><!-- --></a> ! <div class="oddrow"> <div> *************** *** 90,94 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:38 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 90,94 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:22:09 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: _SEC_ListNavigator_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page/_SEC_ListNavigator_class_php.html,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** _SEC_ListNavigator_class_php.html 5 Nov 2004 16:13:39 -0000 1.4 --- _SEC_ListNavigator_class_php.html 11 Aug 2006 19:21:21 -0000 1.5 *************** *** 69,73 **** <div class="info-box-body"> <a name="_SEC_Base_class_php"><!-- --></a> ! <div class="oddrow"> <div> --- 69,73 ---- <div class="info-box-body"> <a name="_SEC_Base_class_php"><!-- --></a> ! <div class="evenrow"> <div> *************** *** 90,94 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:36 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 90,94 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:22:08 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: _SEC_List_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page/_SEC_List_class_php.html,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** _SEC_List_class_php.html 5 Nov 2004 16:13:39 -0000 1.4 --- _SEC_List_class_php.html 11 Aug 2006 19:21:21 -0000 1.5 *************** *** 69,73 **** <div class="info-box-body"> <a name="_SEC_Base_class_php"><!-- --></a> ! <div class="oddrow"> <div> --- 69,73 ---- <div class="info-box-body"> <a name="_SEC_Base_class_php"><!-- --></a> ! <div class="evenrow"> <div> *************** *** 90,94 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:34 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 90,94 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:22:07 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: _SEC_Edit_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page/_SEC_Edit_class_php.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** _SEC_Edit_class_php.html 5 Nov 2004 16:13:39 -0000 1.2 --- _SEC_Edit_class_php.html 11 Aug 2006 19:21:20 -0000 1.3 *************** *** 69,73 **** <div class="info-box-body"> <a name="_SEC_Base_class_php"><!-- --></a> ! <div class="evenrow"> <div> --- 69,73 ---- <div class="info-box-body"> <a name="_SEC_Base_class_php"><!-- --></a> ! <div class="oddrow"> <div> *************** *** 84,88 **** </div> <a name="_URL_class_php"><!-- --></a> ! <div class="oddrow"> <div> --- 84,88 ---- </div> <a name="_URL_class_php"><!-- --></a> ! <div class="evenrow"> <div> *************** *** 105,109 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:14 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 105,109 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:22:01 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> |
Update of /cvsroot/phpvortex/phpvortex/doc/html In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28570/doc/html Modified Files: blank.html classtrees_Vortex.html elementindex.html elementindex_Vortex.html errors.html index.html li_Vortex.html Log Message: Updated documentation Index: index.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/index.html,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** index.html 5 Nov 2004 16:13:44 -0000 1.7 --- index.html 11 Aug 2006 19:21:22 -0000 1.8 *************** *** 5,9 **** <html xmlns="http://www.w3.org/1999/xhtml"> <head> ! <!-- Generated by phpDocumentor on Fri, 5 Nov 2004 14:11:57 -0300 --> <title>PHP Vortex Documentation</title> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> --- 5,9 ---- <html xmlns="http://www.w3.org/1999/xhtml"> <head> ! <!-- Generated by phpDocumentor on Fri, 11 Aug 2006 16:21:45 -0300 --> <title>PHP Vortex Documentation</title> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> Index: li_Vortex.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/li_Vortex.html,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** li_Vortex.html 5 Nov 2004 16:13:44 -0000 1.7 --- li_Vortex.html 11 Aug 2006 19:21:22 -0000 1.8 *************** *** 22,28 **** ! <dt class="folder-title">Files</dt> ! <dd><a href='Vortex/_test_index_php.html' target='right'>index.php</a></dd> ! --- 22,26 ---- ! *************** *** 33,57 **** <dt class="folder-title">Classes</dt> <dd><a href='Vortex/DB/DB_Base.html' target='right'>DB_Base</a></dd> <dd><a href='Vortex/DB/DB_MySQL.html' target='right'>DB_MySQL</a></dd> <dd><a href='Vortex/DB/FT_Base.html' target='right'>FT_Base</a></dd> <dd><a href='Vortex/DB/FT_Hidden.html' target='right'>FT_Hidden</a></dd> <dd><a href='Vortex/DB/FT_List.html' target='right'>FT_List</a></dd> <dd><a href='Vortex/DB/FT_ListArray.html' target='right'>FT_ListArray</a></dd> <dd><a href='Vortex/DB/FT_PKey.html' target='right'>FT_PKey</a></dd> <dd><a href='Vortex/DB/FT_Text.html' target='right'>FT_Text</a></dd> <dd><a href='Vortex/DB/RS_Base.html' target='right'>RS_Base</a></dd> <dd><a href='Vortex/DB/RS_MySQL.html' target='right'>RS_MySQL</a></dd> <dd><a href='Vortex/DB/TB_Base.html' target='right'>TB_Base</a></dd> ! <dt class="folder-title">Files</dt> <dd><a href='Vortex/DB/_DB_Base_class_php.html' target='right'>DB_Base.class.php</a></dd> <dd><a href='Vortex/DB/_DB_MySQL_class_php.html' target='right'>DB_MySQL.class.php</a></dd> <dd><a href='Vortex/DB/_FT_Base_class_php.html' target='right'>FT_Base.class.php</a></dd> <dd><a href='Vortex/DB/_FT_Hidden_class_php.html' target='right'>FT_Hidden.class.php</a></dd> <dd><a href='Vortex/DB/_FT_List_class_php.html' target='right'>FT_List.class.php</a></dd> <dd><a href='Vortex/DB/_FT_ListArray_class_php.html' target='right'>FT_ListArray.class.php</a></dd> <dd><a href='Vortex/DB/_FT_PKey_class_php.html' target='right'>FT_PKey.class.php</a></dd> <dd><a href='Vortex/DB/_FT_Text_class_php.html' target='right'>FT_Text.class.php</a></dd> <dd><a href='Vortex/DB/_RS_Base_class_php.html' target='right'>RS_Base.class.php</a></dd> <dd><a href='Vortex/DB/_RS_MySQL_class_php.html' target='right'>RS_MySQL.class.php</a></dd> <dd><a href='Vortex/DB/_TB_Base_class_php.html' target='right'>TB_Base.class.php</a></dd> </dl> --- 31,71 ---- <dt class="folder-title">Classes</dt> <dd><a href='Vortex/DB/DB_Base.html' target='right'>DB_Base</a></dd> + <dd><a href='Vortex/DB/DB_MSSQL.html' target='right'>DB_MSSQL</a></dd> <dd><a href='Vortex/DB/DB_MySQL.html' target='right'>DB_MySQL</a></dd> + <dd><a href='Vortex/DB/DB_PostgreSQL.html' target='right'>DB_PostgreSQL</a></dd> <dd><a href='Vortex/DB/FT_Base.html' target='right'>FT_Base</a></dd> + <dd><a href='Vortex/DB/FT_DateTime.html' target='right'>FT_DateTime</a></dd> + <dd><a href='Vortex/DB/FT_File.html' target='right'>FT_File</a></dd> <dd><a href='Vortex/DB/FT_Hidden.html' target='right'>FT_Hidden</a></dd> <dd><a href='Vortex/DB/FT_List.html' target='right'>FT_List</a></dd> <dd><a href='Vortex/DB/FT_ListArray.html' target='right'>FT_ListArray</a></dd> + <dd><a href='Vortex/DB/FT_Password.html' target='right'>FT_Password</a></dd> <dd><a href='Vortex/DB/FT_PKey.html' target='right'>FT_PKey</a></dd> <dd><a href='Vortex/DB/FT_Text.html' target='right'>FT_Text</a></dd> <dd><a href='Vortex/DB/RS_Base.html' target='right'>RS_Base</a></dd> + <dd><a href='Vortex/DB/RS_MSSQL.html' target='right'>RS_MSSQL</a></dd> <dd><a href='Vortex/DB/RS_MySQL.html' target='right'>RS_MySQL</a></dd> + <dd><a href='Vortex/DB/RS_PostgreSQL.html' target='right'>RS_PostgreSQL</a></dd> <dd><a href='Vortex/DB/TB_Base.html' target='right'>TB_Base</a></dd> ! <dt class="folder-title">Functions</dt> ! <dd><a href='Vortex/DB/_FT_DateTime_class_php.html#functionarray_combine' target='right'>array_combine</a></dd> ! <dt class="folder-title">Files</dt> <dd><a href='Vortex/DB/_DB_Base_class_php.html' target='right'>DB_Base.class.php</a></dd> + <dd><a href='Vortex/DB/_DB_MSSQL_class_php.html' target='right'>DB_MSSQL.class.php</a></dd> <dd><a href='Vortex/DB/_DB_MySQL_class_php.html' target='right'>DB_MySQL.class.php</a></dd> + <dd><a href='Vortex/DB/_DB_PostgreSQL_class_php.html' target='right'>DB_PostgreSQL.class.php</a></dd> <dd><a href='Vortex/DB/_FT_Base_class_php.html' target='right'>FT_Base.class.php</a></dd> + <dd><a href='Vortex/DB/_FT_DateTime_class_php.html' target='right'>FT_DateTime.class.php</a></dd> + <dd><a href='Vortex/DB/_FT_File_class_php.html' target='right'>FT_File.class.php</a></dd> <dd><a href='Vortex/DB/_FT_Hidden_class_php.html' target='right'>FT_Hidden.class.php</a></dd> <dd><a href='Vortex/DB/_FT_List_class_php.html' target='right'>FT_List.class.php</a></dd> <dd><a href='Vortex/DB/_FT_ListArray_class_php.html' target='right'>FT_ListArray.class.php</a></dd> + <dd><a href='Vortex/DB/_FT_Password_class_php.html' target='right'>FT_Password.class.php</a></dd> <dd><a href='Vortex/DB/_FT_PKey_class_php.html' target='right'>FT_PKey.class.php</a></dd> <dd><a href='Vortex/DB/_FT_Text_class_php.html' target='right'>FT_Text.class.php</a></dd> <dd><a href='Vortex/DB/_RS_Base_class_php.html' target='right'>RS_Base.class.php</a></dd> + <dd><a href='Vortex/DB/_RS_MSSQL_class_php.html' target='right'>RS_MSSQL.class.php</a></dd> <dd><a href='Vortex/DB/_RS_MySQL_class_php.html' target='right'>RS_MySQL.class.php</a></dd> + <dd><a href='Vortex/DB/_RS_PostgreSQL_class_php.html' target='right'>RS_PostgreSQL.class.php</a></dd> <dd><a href='Vortex/DB/_TB_Base_class_php.html' target='right'>TB_Base.class.php</a></dd> </dl> *************** *** 75,78 **** --- 89,93 ---- <dd><a href='Vortex/Debug/_d_footer_php.html' target='right'>d_footer.php</a></dd> <dd><a href='Vortex/Debug/_d_header_php.html' target='right'>d_header.php</a></dd> + <dd><a href='Vortex/Debug/_test_index_php.html' target='right'>index.php</a></dd> <dd><a href='Vortex/Debug/_test_SEC_EditTest_class_php.html' target='right'>SEC_EditTest.class.php</a></dd> <dd><a href='Vortex/Debug/_test_TB_Test_class_php.html' target='right'>TB_Test.class.php</a></dd> *************** *** 134,138 **** </dl> </div> ! <p class="notes"><a href="http://www.phpdoc.org" target="_blank">phpDocumentor v <span class="field">1.3.0RC3</span></a></p> </BODY> </HTML> \ No newline at end of file --- 149,153 ---- </dl> </div> ! <p class="notes"><a href="http://www.phpdoc.org" target="_blank">phpDocumentor v <span class="field">1.3.0RC5</span></a></p> </BODY> </HTML> \ No newline at end of file Index: elementindex.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/elementindex.html,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** elementindex.html 5 Nov 2004 16:13:43 -0000 1.7 --- elementindex.html 11 Aug 2006 19:21:21 -0000 1.8 *************** *** 29,32 **** --- 29,33 ---- <a class="index-letter" href="elementindex.html#k">k</a> <a class="index-letter" href="elementindex.html#l">l</a> + <a class="index-letter" href="elementindex.html#m">m</a> <a class="index-letter" href="elementindex.html#n">n</a> <a class="index-letter" href="elementindex.html#o">o</a> *************** *** 49,52 **** --- 50,60 ---- <dl> [...1429 lines suppressed...] --- 2371,2381 ---- </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> *************** *** 2028,2031 **** --- 2582,2586 ---- <a class="index-letter" href="elementindex.html#k">k</a> <a class="index-letter" href="elementindex.html#l">l</a> + <a class="index-letter" href="elementindex.html#m">m</a> <a class="index-letter" href="elementindex.html#n">n</a> <a class="index-letter" href="elementindex.html#o">o</a> Index: errors.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/errors.html,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** errors.html 5 Nov 2004 16:13:44 -0000 1.7 --- errors.html 11 Aug 2006 19:21:22 -0000 1.8 *************** *** 10,19 **** <body> <a href="#Post-parsing">Post-parsing</a><br> - <a name="index.php"></a> - <h1>index.php</h1> - <h2>Warnings:</h2><br> - <b>Warning on line 12</b> - File "C:\web\htdocs\phpvortex\test\index.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br> <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:45 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> --- 10,15 ---- <body> <a href="#Post-parsing">Post-parsing</a><br> <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:22:15 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </body> Index: elementindex_Vortex.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/elementindex_Vortex.html,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** elementindex_Vortex.html 5 Nov 2004 16:13:43 -0000 1.7 --- elementindex_Vortex.html 11 Aug 2006 19:21:21 -0000 1.8 *************** *** 26,29 **** --- 26,30 ---- <a class="index-letter" href="elementindex_Vortex.html#k">k</a> <a class="index-letter" href="elementindex_Vortex.html#l">l</a> + <a class="index-letter" href="elementindex_Vortex.html#m">m</a> <a class="index-letter" href="elementindex_Vortex.html#n">n</a> <a class="index-letter" href="elementindex_Vortex.html#o">o</a> *************** *** 46,49 **** --- 47,64 ---- <dl> [...1308 lines suppressed...] --- 2384,2394 ---- </dd> <dt class="field"> + <span class="var-title">$txt_find</span> + </dt> + <dd class="index-item-body"> + <div class="index-item-details"><a href="Vortex/Page/SEC_Edit.html#var$txt_find">SEC_Edit::$txt_find</a> in SEC_Edit.class.php</div> + <div class="index-item-description">Text for the find button.</div> + </dd> + <dt class="field"> <span class="var-title">$txt_new</span> </dt> *************** *** 2025,2028 **** --- 2579,2583 ---- <a class="index-letter" href="elementindex_Vortex.html#k">k</a> <a class="index-letter" href="elementindex_Vortex.html#l">l</a> + <a class="index-letter" href="elementindex_Vortex.html#m">m</a> <a class="index-letter" href="elementindex_Vortex.html#n">n</a> <a class="index-letter" href="elementindex_Vortex.html#o">o</a> Index: blank.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/blank.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** blank.html 30 Sep 2004 13:37:33 -0000 1.1 --- blank.html 11 Aug 2006 19:21:21 -0000 1.2 *************** *** 9,13 **** <b>Welcome to Vortex!</b><br /> <br /> ! This documentation was generated by <a href="http://www.phpdoc.org">phpDocumentor v1.3.0RC3</a><br /> </body> </html> \ No newline at end of file --- 9,13 ---- <b>Welcome to Vortex!</b><br /> <br /> ! This documentation was generated by <a href="http://www.phpdoc.org">phpDocumentor v1.3.0RC5</a><br /> </body> </html> \ No newline at end of file Index: classtrees_Vortex.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/classtrees_Vortex.html,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** classtrees_Vortex.html 5 Nov 2004 16:13:43 -0000 1.7 --- classtrees_Vortex.html 11 Aug 2006 19:21:21 -0000 1.8 *************** *** 21,25 **** <ul> <li><a href="Vortex/DB/DB_Base.html">DB_Base</a><ul> ! <li><a href="Vortex/DB/DB_MySQL.html">DB_MySQL</a></li></ul></li> </ul> --- 21,25 ---- <ul> <li><a href="Vortex/DB/DB_Base.html">DB_Base</a><ul> ! <li><a href="Vortex/DB/DB_MSSQL.html">DB_MSSQL</a></li><li><a href="Vortex/DB/DB_MySQL.html">DB_MySQL</a></li><li><a href="Vortex/DB/DB_PostgreSQL.html">DB_PostgreSQL</a></li></ul></li> </ul> *************** *** 27,33 **** <ul> <li><a href="Vortex/DB/FT_Base.html">FT_Base</a><ul> ! <li><a href="Vortex/DB/FT_Hidden.html">FT_Hidden</a><ul> <li><a href="Vortex/DB/FT_PKey.html">FT_PKey</a></li></ul></li> ! <li><a href="Vortex/DB/FT_List.html">FT_List</a></li><li><a href="Vortex/DB/FT_ListArray.html">FT_ListArray</a></li><li><a href="Vortex/DB/FT_Text.html">FT_Text</a></li></ul></li> </ul> --- 27,33 ---- <ul> <li><a href="Vortex/DB/FT_Base.html">FT_Base</a><ul> ! <li><a href="Vortex/DB/FT_DateTime.html">FT_DateTime</a></li><li><a href="Vortex/DB/FT_File.html">FT_File</a></li><li><a href="Vortex/DB/FT_Hidden.html">FT_Hidden</a><ul> <li><a href="Vortex/DB/FT_PKey.html">FT_PKey</a></li></ul></li> ! <li><a href="Vortex/DB/FT_List.html">FT_List</a></li><li><a href="Vortex/DB/FT_ListArray.html">FT_ListArray</a></li><li><a href="Vortex/DB/FT_Password.html">FT_Password</a></li><li><a href="Vortex/DB/FT_Text.html">FT_Text</a></li></ul></li> </ul> *************** *** 35,39 **** <ul> <li><a href="Vortex/DB/RS_Base.html">RS_Base</a><ul> ! <li><a href="Vortex/DB/RS_MySQL.html">RS_MySQL</a></li></ul></li> </ul> --- 35,39 ---- <ul> <li><a href="Vortex/DB/RS_Base.html">RS_Base</a><ul> ! <li><a href="Vortex/DB/RS_MSSQL.html">RS_MSSQL</a></li><li><a href="Vortex/DB/RS_MySQL.html">RS_MySQL</a></li><li><a href="Vortex/DB/RS_PostgreSQL.html">RS_PostgreSQL</a></li></ul></li> </ul> *************** *** 59,63 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:11:58 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> --- 59,63 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:21:45 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </body> |
Update of /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Debug In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28570/doc/html/Vortex/Debug Modified Files: SEC_EditTest.html TB_Test.html Test_Page.html _d_footer_php.html _d_header_php.html _debug_php.html _test_SEC_EditTest_class_php.html _test_TB_Test_class_php.html _test_test_conf_php.html _test_vortex_test_app_php.html _test_vortex_test_page_php.html _test_vortex_test_php.html Added Files: _test_index_php.html Log Message: Updated documentation Index: _d_header_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Debug/_d_header_php.html,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** _d_header_php.html 5 Nov 2004 16:13:39 -0000 1.7 --- _d_header_php.html 11 Aug 2006 19:21:20 -0000 1.8 *************** *** 63,67 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:04 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 63,67 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:21:50 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: _test_vortex_test_app_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Debug/_test_vortex_test_app_php.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** _test_vortex_test_app_php.html 5 Nov 2004 16:19:05 -0000 1.1 --- _test_vortex_test_app_php.html 11 Aug 2006 19:21:20 -0000 1.2 *************** *** 93,97 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:44 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 93,97 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:22:14 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: _test_TB_Test_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Debug/_test_TB_Test_class_php.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** _test_TB_Test_class_php.html 5 Nov 2004 16:13:39 -0000 1.3 --- _test_TB_Test_class_php.html 11 Aug 2006 19:21:20 -0000 1.4 *************** *** 120,124 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:41 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 120,124 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:22:12 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: TB_Test.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Debug/TB_Test.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** TB_Test.html 5 Nov 2004 16:13:38 -0000 1.6 --- TB_Test.html 11 Aug 2006 19:21:20 -0000 1.7 *************** *** 82,85 **** --- 82,88 ---- </span> <span class="var-title"> + <span class="var-name"><a href="../../Vortex/DB/TB_Base.html#var$data_origin">TB_Base::$data_origin</a></span><br> + </span> + <span class="var-title"> <span class="var-name"><a href="../../Vortex/DB/TB_Base.html#var$db">TB_Base::$db</a></span><br> </span> *************** *** 168,172 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:41 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 171,175 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:22:12 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: _debug_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Debug/_debug_php.html,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** _debug_php.html 5 Nov 2004 16:13:39 -0000 1.7 --- _debug_php.html 11 Aug 2006 19:21:20 -0000 1.8 *************** *** 140,144 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:03 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 140,144 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:21:50 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: _test_vortex_test_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Debug/_test_vortex_test_php.html,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** _test_vortex_test_php.html 5 Nov 2004 16:13:39 -0000 1.6 --- _test_vortex_test_php.html 11 Aug 2006 19:21:20 -0000 1.7 *************** *** 108,112 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:43 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 108,112 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:22:13 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> --- NEW FILE: _test_index_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 index.php</title> <link rel="stylesheet" href="../../media/stylesheet.css" /> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> </head> <body> <div class="page-body"> <h2 class="file-name">/test/index.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">Index file for the Test programs.</p> <ul class="tags"> <li><span class="field">filesource:</span> <a href="../..//__filesource/fsource_Vortex_Debug_testindex.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 2006, 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 Fri, 11 Aug 2006 16:21:56 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> </html> Index: _test_SEC_EditTest_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Debug/_test_SEC_EditTest_class_php.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** _test_SEC_EditTest_class_php.html 5 Nov 2004 16:19:05 -0000 1.1 --- _test_SEC_EditTest_class_php.html 11 Aug 2006 19:21:20 -0000 1.2 *************** *** 69,73 **** <div class="info-box-body"> <a name="___/SEC_Edit_class_php"><!-- --></a> ! <div class="evenrow"> <div> --- 69,73 ---- <div class="info-box-body"> <a name="___/SEC_Edit_class_php"><!-- --></a> ! <div class="oddrow"> <div> *************** *** 84,88 **** </div> <a name="_TB_Test_class_php"><!-- --></a> ! <div class="oddrow"> <div> --- 84,88 ---- </div> <a name="_TB_Test_class_php"><!-- --></a> ! <div class="evenrow"> <div> *************** *** 105,109 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:31 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 105,109 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:22:06 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: Test_Page.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Debug/Test_Page.html,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Test_Page.html 5 Nov 2004 16:13:39 -0000 1.4 --- Test_Page.html 11 Aug 2006 19:21:20 -0000 1.5 *************** *** 156,160 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:44 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 156,160 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:22:14 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: _test_vortex_test_page_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Debug/_test_vortex_test_page_php.html,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** _test_vortex_test_page_php.html 5 Nov 2004 16:13:39 -0000 1.4 --- _test_vortex_test_page_php.html 11 Aug 2006 19:21:20 -0000 1.5 *************** *** 135,139 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:44 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 135,139 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:22:14 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: _test_test_conf_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Debug/_test_test_conf_php.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** _test_test_conf_php.html 5 Nov 2004 16:19:05 -0000 1.1 --- _test_test_conf_php.html 11 Aug 2006 19:21:20 -0000 1.2 *************** *** 36,40 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:42 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 36,40 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:22:13 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: SEC_EditTest.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Debug/SEC_EditTest.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** SEC_EditTest.html 5 Nov 2004 16:19:05 -0000 1.1 --- SEC_EditTest.html 11 Aug 2006 19:21:20 -0000 1.2 *************** *** 96,100 **** <div class="info-box-body"> <a name="var$db" id="$db"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 96,100 ---- <div class="info-box-body"> <a name="var$db" id="$db"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 110,113 **** --- 110,119 ---- + <hr class="separator" /> + <div class="notes">Redefinition of:</div> + <dl> + <dt><a href="../../Vortex/Page/SEC_Edit.html#var$db">SEC_Edit::$db</a></dt> + <dd>DB connection.</dd> + </dl> *************** *** 128,131 **** --- 134,140 ---- </span> <span class="var-title"> + <span class="var-name"><a href="../../Vortex/Page/SEC_Edit.html#var$img_find">SEC_Edit::$img_find</a></span><br> + </span> + <span class="var-title"> <span class="var-name"><a href="../../Vortex/Page/SEC_Edit.html#var$img_new">SEC_Edit::$img_new</a></span><br> </span> *************** *** 149,155 **** --- 158,173 ---- </span> <span class="var-title"> + <span class="var-name"><a href="../../Vortex/Page/SEC_Edit.html#var$table_class">SEC_Edit::$table_class</a></span><br> + </span> + <span class="var-title"> + <span class="var-name"><a href="../../Vortex/Page/SEC_Edit.html#var$table_opts">SEC_Edit::$table_opts</a></span><br> + </span> + <span class="var-title"> <span class="var-name"><a href="../../Vortex/Page/SEC_Edit.html#var$txt_delete">SEC_Edit::$txt_delete</a></span><br> </span> <span class="var-title"> + <span class="var-name"><a href="../../Vortex/Page/SEC_Edit.html#var$txt_find">SEC_Edit::$txt_find</a></span><br> + </span> + <span class="var-title"> <span class="var-name"><a href="../../Vortex/Page/SEC_Edit.html#var$txt_new">SEC_Edit::$txt_new</a></span><br> </span> *************** *** 183,187 **** <A NAME='method_detail'></A> <a name="methodSEC_EditTest" id="SEC_EditTest"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> --- 201,205 ---- <A NAME='method_detail'></A> <a name="methodSEC_EditTest" id="SEC_EditTest"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> *************** *** 232,236 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:31 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 250,254 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:22:06 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: _d_footer_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Debug/_d_footer_php.html,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** _d_footer_php.html 5 Nov 2004 16:13:39 -0000 1.7 --- _d_footer_php.html 11 Aug 2006 19:21:20 -0000 1.8 *************** *** 36,40 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:03 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 36,40 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:21:50 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> |
From: Thiago R. <nop...@us...> - 2006-08-11 19:21:27
|
Update of /cvsroot/phpvortex/phpvortex/doc/html/Vortex In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28570/doc/html/Vortex Modified Files: _test_index_php.html Log Message: Updated documentation Index: _test_index_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/_test_index_php.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** _test_index_php.html 5 Nov 2004 16:19:07 -0000 1.1 --- _test_index_php.html 11 Aug 2006 19:21:21 -0000 1.2 *************** *** 32,36 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:10 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 32,36 ---- <p class="notes" id="credit"> ! Documentation generated on Wed, 22 Mar 2006 14:22:00 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> |
From: Thiago R. <nop...@us...> - 2006-08-11 19:21:27
|
Update of /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Util In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28570/doc/html/Vortex/Util Modified Files: APP_Base.html URL.html _APP_Base_class_php.html _URL_class_php.html _conf_conf_php.html _conf_lang_en_php.html _conf_lang_pt_br_php.html Log Message: Updated documentation Index: _URL_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Util/_URL_class_php.html,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** _URL_class_php.html 5 Nov 2004 16:13:40 -0000 1.4 --- _URL_class_php.html 11 Aug 2006 19:21:21 -0000 1.5 *************** *** 62,66 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:42 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 62,66 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:22:13 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: _conf_lang_en_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Util/_conf_lang_en_php.html,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** _conf_lang_en_php.html 5 Nov 2004 16:13:40 -0000 1.5 --- _conf_lang_en_php.html 11 Aug 2006 19:21:21 -0000 1.6 *************** *** 36,40 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:10 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 36,40 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:21:56 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: _APP_Base_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Util/_APP_Base_class_php.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** _APP_Base_class_php.html 5 Nov 2004 16:19:07 -0000 1.1 --- _APP_Base_class_php.html 11 Aug 2006 19:21:21 -0000 1.2 *************** *** 90,94 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:11:58 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 90,94 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:21:45 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: _conf_conf_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Util/_conf_conf_php.html,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** _conf_conf_php.html 5 Nov 2004 16:13:40 -0000 1.5 --- _conf_conf_php.html 11 Aug 2006 19:21:21 -0000 1.6 *************** *** 50,54 **** <span class="include-type">require_once</span> (<span class="include-name"><a href="../../Vortex/Util/_conf_lang_en_php.html">'lang_en.php'</a></span>) ! (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Util_confconf.php.html#a44">44</a></span>) </span> </div> --- 50,54 ---- <span class="include-type">require_once</span> (<span class="include-name"><a href="../../Vortex/Util/_conf_lang_en_php.html">'lang_en.php'</a></span>) ! (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Util_confconf.php.html#a54">54</a></span>) </span> </div> *************** *** 70,74 **** </div> <div class="info-box-body"> ! <a name="defineTB_ERR_DB"><!-- --></a> <div class="oddrow"> --- 70,106 ---- </div> <div class="info-box-body"> ! <a name="defineFT_OR_DB"><!-- --></a> ! <div class="oddrow"> ! ! <div> ! <span class="const-title"> ! <span class="const-name">FT_OR_DB</span> = 1 ! (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Util_confconf.php.html#a46">46</a></span>) ! </span> ! </div> ! ! <!-- ========== Info from phpDoc block ========= --> ! <p class="short-description">Field origin is from DataBase.</p> ! <p class="description"><p>Used by <a href="../../Vortex/DB/FT_Base.html#methodShowForm">FT_Base::ShowForm()</a> and <a href="../../Vortex/DB/FT_Base.html#methodShowPlain">FT_Base::ShowPlain()</a>.</p></p> ! ! ! </div> ! <a name="defineFT_OR_USER"><!-- --></a> ! <div class="evenrow"> ! ! <div> ! <span class="const-title"> ! <span class="const-name">FT_OR_USER</span> = 2 ! (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Util_confconf.php.html#a51">51</a></span>) ! </span> ! </div> ! ! <!-- ========== Info from phpDoc block ========= --> ! <p class="short-description">Field origin is from User.</p> ! <p class="description"><p>Used by <a href="../../Vortex/DB/FT_Base.html#methodShowForm">FT_Base::ShowForm()</a> and <a href="../../Vortex/DB/FT_Base.html#methodShowPlain">FT_Base::ShowPlain()</a>.</p></p> ! ! ! </div> ! <a name="defineTB_ERR_DB"><!-- --></a> <div class="oddrow"> *************** *** 139,143 **** <div> <span class="const-title"> ! <span class="const-name">TB_ERR_OK</span> = (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Util_confconf.php.html#a17">17</a></span>) </span> --- 171,175 ---- <div> <span class="const-title"> ! <span class="const-name">TB_ERR_OK</span> = 0 (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Util_confconf.php.html#a17">17</a></span>) </span> *************** *** 156,160 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:00 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 188,192 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:21:46 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: APP_Base.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Util/APP_Base.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** APP_Base.html 5 Nov 2004 16:19:07 -0000 1.1 --- APP_Base.html 11 Aug 2006 19:21:21 -0000 1.2 *************** *** 337,341 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:11:59 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 337,341 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:21:45 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: URL.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Util/URL.html,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** URL.html 5 Nov 2004 16:13:40 -0000 1.4 --- URL.html 11 Aug 2006 19:21:21 -0000 1.5 *************** *** 237,241 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:42 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 237,241 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:22:13 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: _conf_lang_pt_br_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Util/_conf_lang_pt_br_php.html,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** _conf_lang_pt_br_php.html 5 Nov 2004 16:13:40 -0000 1.5 --- _conf_lang_pt_br_php.html 11 Aug 2006 19:21:21 -0000 1.6 *************** *** 36,40 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:10 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 36,40 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:21:57 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> |
Update of /cvsroot/phpvortex/phpvortex/doc/html/__filesource In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28570/doc/html/__filesource Modified Files: fsource_Vortex_DB_DB_Base.class.php.html fsource_Vortex_DB_DB_MySQL.class.php.html fsource_Vortex_DB_FT_Base.class.php.html fsource_Vortex_DB_FT_Hidden.class.php.html fsource_Vortex_DB_FT_List.class.php.html fsource_Vortex_DB_FT_ListArray.class.php.html fsource_Vortex_DB_FT_PKey.class.php.html fsource_Vortex_DB_FT_Text.class.php.html fsource_Vortex_DB_RS_Base.class.php.html fsource_Vortex_DB_RS_MySQL.class.php.html fsource_Vortex_DB_TB_Base.class.php.html fsource_Vortex_Debug_d_footer.php.html fsource_Vortex_Debug_d_header.php.html fsource_Vortex_Debug_debug.php.html fsource_Vortex_Debug_testSEC_EditTest.class.php.html fsource_Vortex_Debug_testTB_Test.class.php.html fsource_Vortex_Debug_testtest_conf.php.html fsource_Vortex_Debug_testvortex_test.php.html fsource_Vortex_Debug_testvortex_test_app.php.html fsource_Vortex_Debug_testvortex_test_page.php.html fsource_Vortex_Page_SEC_Base.class.php.html fsource_Vortex_Page_SEC_Edit.class.php.html fsource_Vortex_Page_SEC_Form.class.php.html fsource_Vortex_Page_SEC_Header.class.php.html fsource_Vortex_Page_SEC_Include.class.php.html fsource_Vortex_Page_SEC_List.class.php.html fsource_Vortex_Page_SEC_ListNavigator.class.php.html fsource_Vortex_Page_SEC_Page.class.php.html fsource_Vortex_Page_SEC_Static.class.php.html fsource_Vortex_Util_APP_Base.class.php.html fsource_Vortex_Util_URL.class.php.html fsource_Vortex_Util_confconf.php.html fsource_Vortex_Util_conflang_en.php.html fsource_Vortex_Util_conflang_pt_br.php.html fsource_Vortex__testindex.php.html Added Files: fsource_Vortex_DB_DB_MSSQL.class.php.html fsource_Vortex_DB_DB_PostgreSQL.class.php.html fsource_Vortex_DB_FT_DateTime.class.php.html fsource_Vortex_DB_FT_File.class.php.html fsource_Vortex_DB_FT_Password.class.php.html fsource_Vortex_DB_RS_MSSQL.class.php.html fsource_Vortex_DB_RS_PostgreSQL.class.php.html fsource_Vortex_Debug_testindex.php.html Log Message: Updated documentation Index: fsource_Vortex_DB_FT_ListArray.class.php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/__filesource/fsource_Vortex_DB_FT_ListArray.class.php.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** fsource_Vortex_DB_FT_ListArray.class.php.html 5 Nov 2004 16:19:07 -0000 1.1 --- fsource_Vortex_DB_FT_ListArray.class.php.html 11 Aug 2006 19:21:21 -0000 1.2 *************** *** 24,29 **** <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">'FT_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> --- 24,28 ---- <li><a name="a11"></a> </li> <li><a name="a12"></a><span class="src-doc">/** Require the base class */</span></li> ! <li><a name="a13"></a><span class="src-sym">(</span><span class="src-str">'FT_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> *************** *** 56,60 **** <li><a name="a42"></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">$value </span><span class="src-doc">Value to load the control with.</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/DB/FT_ListArray.html#methodShowForm">ShowForm</a><span class="src-sym">(</span><span class="src-var">$value</span><span class="src-sym">)</span></li> <li><a name="a45"></a> <span class="src-sym">{</span></li> <li><a name="a46"></a> <span class="src-key">global </span><span class="src-var">$vortex_msgs</span><span class="src-sym">;</span></li> --- 55,59 ---- <li><a name="a42"></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">$value </span><span class="src-doc">Value to load the control with.</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/DB/FT_ListArray.html#methodShowForm">ShowForm</a><span class="src-sym">(</span><span class="src-var">$value</span><span class="src-sym">, </span><span class="src-var">$origin </span>= <span class="src-id">FT_OR_DB</span><span class="src-sym">)</span></li> <li><a name="a45"></a> <span class="src-sym">{</span></li> <li><a name="a46"></a> <span class="src-key">global </span><span class="src-var">$vortex_msgs</span><span class="src-sym">;</span></li> *************** *** 68,84 **** <li><a name="a54"></a></span><span class="src-str"> <span class="src-sym">}</span></span></li> <li><a name="a55"></a> </li> ! <li><a name="a56"></a></span><span class="src-str"> /**</span></li> ! <li><a name="a57"></a></span><span class="src-str"> * Output the field as plain text.</span></li> ! <li><a name="a58"></a></span><span class="src-str"> *</span></li> ! <li><a name="a59"></a></span><span class="src-str"> * @param string $value Value to load the control with.</span></li> ! <li><a name="a60"></a></span><span class="src-str"> */</span></li> ! <li><a name="a61"></a></span><span class="src-str"> <span class="src-key">function</span> <span class="src-id">ShowPlain</span><span class="src-sym">(</span><span class="src-var">$value</span><span class="src-sym">)</span></span></li> <li><a name="a62"></a></span><span class="src-str"> <span class="src-sym">{</span></span></li> <li><a name="a63"></a></span><span class="src-str"> echo <span class="src-var">$this</span></span><span class="src-sym">-></span><a href="../Vortex/DB/FT_ListArray.html#var$list_array">list_array</a><span class="src-sym">[</span><span class="src-var">$value</span><span class="src-sym">]</span><span class="src-sym">;</span></li> <li><a name="a64"></a> </span><span class="src-str"><span class="src-sym">}</span></span></li> <li><a name="a65"></a> </li> ! <li><a name="a66"></a></span><span class="src-str"> /**</span></li> ! <li><a name="a67"></a></span><span class="src-str"> * Output the field consistency testing in JavaScript.</span></li> ! <li><a name="a68"></a></span><span class="src-str"> */</span></li> <li><a name="a69"></a></span><span class="src-str"> <span class="src-key">function</span> <span class="src-id">JSConsist</span><span class="src-sym">(</span><span class="src-sym">)</span></span></li> <li><a name="a70"></a></span><span class="src-str"> <span class="src-sym">{</span></span></li> --- 67,83 ---- <li><a name="a54"></a></span><span class="src-str"> <span class="src-sym">}</span></span></li> <li><a name="a55"></a> </li> ! <li><a name="a56"></a></span><span class="src-str"> <span class="src-comm">/**</span></span></li> ! <li><a name="a57"></a></span><span class="src-str"><span class="src-comm"> * Output the field as plain text.</span></span></li> ! <li><a name="a58"></a></span><span class="src-str"><span class="src-comm"> *</span></span></li> ! <li><a name="a59"></a></span><span class="src-str"><span class="src-comm"> * @param string $value Value to load the control with.</span></span></li> ! <li><a name="a60"></a></span><span class="src-str"><span class="src-comm"> */</span></span></li> ! <li><a name="a61"></a></span><span class="src-str"> <span class="src-key">function</span> <span class="src-id">ShowPlain</span><span class="src-sym">(</span><span class="src-var">$value</span><span class="src-sym">,</span> <span class="src-var">$origin</span> = <span class="src-id">FT_OR_DB</span><span class="src-sym">)</span></span></li> <li><a name="a62"></a></span><span class="src-str"> <span class="src-sym">{</span></span></li> <li><a name="a63"></a></span><span class="src-str"> echo <span class="src-var">$this</span></span><span class="src-sym">-></span><a href="../Vortex/DB/FT_ListArray.html#var$list_array">list_array</a><span class="src-sym">[</span><span class="src-var">$value</span><span class="src-sym">]</span><span class="src-sym">;</span></li> <li><a name="a64"></a> </span><span class="src-str"><span class="src-sym">}</span></span></li> <li><a name="a65"></a> </li> ! <li><a name="a66"></a></span><span class="src-str"> <span class="src-comm">/**</span></span></li> ! <li><a name="a67"></a></span><span class="src-str"><span class="src-comm"> * Output the field consistency testing in JavaScript.</span></span></li> ! <li><a name="a68"></a></span><span class="src-str"><span class="src-comm"> */</span></span></li> <li><a name="a69"></a></span><span class="src-str"> <span class="src-key">function</span> <span class="src-id">JSConsist</span><span class="src-sym">(</span><span class="src-sym">)</span></span></li> <li><a name="a70"></a></span><span class="src-str"> <span class="src-sym">{</span></span></li> *************** *** 90,99 **** <li><a name="a76"></a></span><span class="src-str"> <span class="src-sym">}</span></span></li> <li><a name="a77"></a> </li> ! <li><a name="a78"></a></span><span class="src-str"> /**</span></li> ! <li><a name="a79"></a></span><span class="src-str"> * Test the field consistency.</span></li> ! <li><a name="a80"></a></span><span class="src-str"> *</span></li> ! <li><a name="a81"></a></span><span class="src-str"> * @param string $field The data from the field to be tested.</span></li> ! <li><a name="a82"></a></span><span class="src-str"> * @return bool Returns TRUE if the field is consistent, FALSE otherwise.</span></li> ! <li><a name="a83"></a></span><span class="src-str"> */</span></li> <li><a name="a84"></a></span><span class="src-str"> <span class="src-key">function</span> <span class="src-id">ConsistTest</span><span class="src-sym">(</span><span class="src-sym">&</span><span class="src-var">$field</span><span class="src-sym">)</span></span></li> <li><a name="a85"></a></span><span class="src-str"> <span class="src-sym">{</span></span></li> --- 89,98 ---- <li><a name="a76"></a></span><span class="src-str"> <span class="src-sym">}</span></span></li> <li><a name="a77"></a> </li> ! <li><a name="a78"></a></span><span class="src-str"> <span class="src-comm">/**</span></span></li> ! <li><a name="a79"></a></span><span class="src-str"><span class="src-comm"> * Test the field consistency.</span></span></li> ! <li><a name="a80"></a></span><span class="src-str"><span class="src-comm"> *</span></span></li> ! <li><a name="a81"></a></span><span class="src-str"><span class="src-comm"> * @param string $field The data from the field to be tested.</span></span></li> ! <li><a name="a82"></a></span><span class="src-str"><span class="src-comm"> * @return bool Returns TRUE if the field is consistent, FALSE otherwise.</span></span></li> ! <li><a name="a83"></a></span><span class="src-str"><span class="src-comm"> */</span></span></li> <li><a name="a84"></a></span><span class="src-str"> <span class="src-key">function</span> <span class="src-id">ConsistTest</span><span class="src-sym">(</span><span class="src-sym">&</span><span class="src-var">$field</span><span class="src-sym">)</span></span></li> <li><a name="a85"></a></span><span class="src-str"> <span class="src-sym">{</span></span></li> *************** *** 102,111 **** <li><a name="a88"></a> </span><span class="src-str"><span class="src-sym">}</span></span></li> <li><a name="a89"></a> </li> ! <li><a name="a90"></a></span><span class="src-str"> /**</span></li> ! <li><a name="a91"></a></span><span class="src-str"> * Format the field for database insertion.</span></li> ! <li><a name="a92"></a></span><span class="src-str"> *</span></li> ! <li><a name="a93"></a></span><span class="src-str"> * @param string $field The data from the field to be formated.</span></li> ! <li><a name="a94"></a></span><span class="src-str"> * @return string Returns the formated field.</span></li> ! <li><a name="a95"></a></span><span class="src-str"> */</span></li> <li><a name="a96"></a></span><span class="src-str"> <span class="src-key">function</span> <span class="src-id">ConsistFormat</span><span class="src-sym">(</span><span class="src-sym">&</span><span class="src-var">$field</span><span class="src-sym">)</span></span></li> <li><a name="a97"></a></span><span class="src-str"> <span class="src-sym">{</span></span></li> --- 101,110 ---- <li><a name="a88"></a> </span><span class="src-str"><span class="src-sym">}</span></span></li> <li><a name="a89"></a> </li> ! <li><a name="a90"></a></span><span class="src-str"> <span class="src-comm">/**</span></span></li> ! <li><a name="a91"></a></span><span class="src-str"><span class="src-comm"> * Format the field for database insertion.</span></span></li> ! <li><a name="a92"></a></span><span class="src-str"><span class="src-comm"> *</span></span></li> ! <li><a name="a93"></a></span><span class="src-str"><span class="src-comm"> * @param string $field The data from the field to be formated.</span></span></li> ! <li><a name="a94"></a></span><span class="src-str"><span class="src-comm"> * @return string Returns the formated field.</span></span></li> ! <li><a name="a95"></a></span><span class="src-str"><span class="src-comm"> */</span></span></li> <li><a name="a96"></a></span><span class="src-str"> <span class="src-key">function</span> <span class="src-id">ConsistFormat</span><span class="src-sym">(</span><span class="src-sym">&</span><span class="src-var">$field</span><span class="src-sym">)</span></span></li> <li><a name="a97"></a></span><span class="src-str"> <span class="src-sym">{</span></span></li> *************** *** 117,121 **** </div> <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:07 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </body> --- 116,120 ---- </div> <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:21:54 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </body> --- NEW FILE: fsource_Vortex_DB_RS_MSSQL.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_MSSQL.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_MSSQL.class.php</h1> <p>Documentation is available at <a href="../Vortex/DB/_RS_MSSQL_class_php.html">RS_MSSQL.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_MSSQL.</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="a13"></a><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 MS SQL Server 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_MSSQL.html">RS_MSSQL</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_MSSQL.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/mssql_num_rows">mssql_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_MSSQL.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/mssql_data_seek">mssql_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/mssql_fetch_row">mssql_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/mssql_fetch_assoc">mssql_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/mssql_fetch_array">mssql_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_MSSQL.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/mssql_num_rows">mssql_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-key">return </span><span class="src-id">FALSE</span><span class="src-sym">;</span></li> <li><a name="a72"></a> <span class="src-key">if </span><span class="src-sym">(</span><span class="src-sym">!</span><a href="http://www.php.net/mssql_data_seek">mssql_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="a73"></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="a74"></a> <span class="src-key">return </span><span class="src-id">TRUE</span><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 all rows 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"> * </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="a81"></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="a82"></a><span class="src-doc"> */</span></li> <li><a name="a83"></a> <span class="src-key">function </span><a href="../Vortex/DB/RS_MSSQL.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="a84"></a> <span class="src-sym">{</span></li> <li><a name="a85"></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="a86"></a> <span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/RS_MSSQL.html#methodSetRow">SetRow</a><span class="src-sym">(</span><span class="src-sym">)</span><span class="src-sym">;</span></li> <li><a name="a87"></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_MSSQL.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="a88"></a> <span class="src-key">return </span><span class="src-var">$rows</span><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"> * Get the last auto-generated ID from 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">@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="a95"></a><span class="src-doc"> */</span></li> <li><a name="a96"></a> <span class="src-key">function </span><a href="../Vortex/DB/RS_MSSQL.html#methodLastId">LastId</a><span class="src-sym">(</span><span class="src-sym">)</span></li> <li><a name="a97"></a> <span class="src-sym">{</span></li> <li><a name="a98"></a> <span class="src-var">$tmp </span>= <a href="http://www.php.net/mssql_query">mssql_query</a><span class="src-sym">(</span><span class="src-str">"SELECT @@IDENTITY"</span><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-id">link</span><span class="src-sym">)</span><span class="src-sym">;</span></li> <li><a name="a99"></a> <span class="src-var">$id </span>= <a href="http://www.php.net/mssql_result">mssql_result</a><span class="src-sym">(</span><span class="src-var">$tmp</span><span class="src-sym">, </span><span class="src-num">0</span><span class="src-sym">, </span><span class="src-num">0</span><span class="src-sym">)</span><span class="src-sym">;</span></li> <li><a name="a100"></a> <a href="http://www.php.net/mssql_free_result">mssql_free_result</a><span class="src-sym">(</span><span class="src-var">$tmp</span><span class="src-sym">)</span><span class="src-sym">;</span></li> <li><a name="a101"></a> <span class="src-key">return </span><span class="src-var">$id</span><span class="src-sym">;</span></li> <li><a name="a102"></a> <span class="src-sym">}</span></li> <li><a name="a103"></a> </li> <li><a name="a104"></a> <span class="src-doc">/**</span></li> <li><a name="a105"></a><span class="src-doc"> * Close the RecordSet and free the memory.</span></li> <li><a name="a106"></a><span class="src-doc"> *</span></li> <li><a name="a107"></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="a108"></a><span class="src-doc"> */</span></li> <li><a name="a109"></a> <span class="src-key">function </span><a href="../Vortex/DB/RS_MSSQL.html#methodClose">Close</a><span class="src-sym">(</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-key">return </span><a href="http://www.php.net/mssql_free_result">mssql_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="a112"></a> <span class="src-sym">}</span></li> <li><a name="a113"></a><span class="src-sym">}</span></li> <li><a name="a114"></a> </li> <li><a name="a115"></a><span class="src-php">?></span></li> </ol></pre> </div> <p class="notes" id="credit"> Documentation generated on Fri, 11 Aug 2006 16:21:58 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </body> </html> --- NEW FILE: fsource_Vortex_DB_DB_MSSQL.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 DB_MSSQL.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 DB_MSSQL.class.php</h1> <p>Documentation is available at <a href="../Vortex/DB/_DB_MSSQL_class_php.html">DB_MSSQL.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 DB_MSSQL.</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="a13"></a><span class="src-sym">(</span><span class="src-str">'DB_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">/** Require the RecordSet class header. */</span></li> <li><a name="a16"></a><span class="src-sym">(</span><span class="src-str">'RS_MSSQL.class.php'</span><span class="src-sym">)</span><span class="src-sym">;</span></li> <li><a name="a17"></a> </li> <li><a name="a18"></a><span class="src-doc">/**</span></li> <li><a name="a19"></a><span class="src-doc"> * Class for MS SQL Server database connection.</span></li> <li><a name="a20"></a><span class="src-doc"> *</span></li> <li><a name="a21"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@package</span><span class="src-doc"> Vortex</span></li> <li><a name="a22"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@subpackage</span><span class="src-doc"> DB</span></li> <li><a name="a23"></a><span class="src-doc"> */</span></li> <li><a name="a24"></a><span class="src-key">class </span><a href="../Vortex/DB/DB_MSSQL.html">DB_MSSQL</a> <span class="src-key">extends </span><a href="../Vortex/DB/DB_Base.html#methodDB_Base">DB_Base</a></li> <li><a name="a25"></a><span class="src-sym">{</span></li> <li><a name="a26"></a> <span class="src-doc">/**</span></li> <li><a name="a27"></a><span class="src-doc"> * Open a new connection to the database if not already connected.</span></li> <li><a name="a28"></a><span class="src-doc"> *</span></li> <li><a name="a29"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@param </span><span class="src-doc-type">bool </span><span class="src-doc-var">$persist </span><span class="src-doc">Open a persistent connection?</span></li> <li><a name="a30"></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 connection was successfully established, FALSE if an error occurred.</span></li> <li><a name="a31"></a><span class="src-doc"> */</span></li> <li><a name="a32"></a> <span class="src-key">function </span><a href="../Vortex/DB/DB_MSSQL.html#methodConnect">Connect</a><span class="src-sym">(</span><span class="src-var">$persist</span>=<span class="src-id">FALSE</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-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">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/DB_Base.html#var$link">link</a><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="a35"></a> <span class="src-key">if </span><span class="src-sym">(</span><span class="src-var">$persist</span><span class="src-sym">) </span><span class="src-sym">{</span></li> <li><a name="a36"></a> <span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/DB_Base.html#var$link">link</a> = <a href="http://www.php.net/mssql_pconnect">mssql_pconnect</a><span class="src-sym">(</span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/DB_Base.html#var$server">server</a><span class="src-sym">, </span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/DB_Base.html#var$user">user</a><span class="src-sym">, </span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/DB_Base.html#var$pw">pw</a><span class="src-sym">)</span><span class="src-sym">;</span></li> <li><a name="a37"></a> <span class="src-sym">} </span><span class="src-key">else </span><span class="src-sym">{</span></li> <li><a name="a38"></a> <span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/DB_Base.html#var$link">link</a> = <a href="http://www.php.net/mssql_connect">mssql_connect</a><span class="src-sym">(</span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/DB_Base.html#var$server">server</a><span class="src-sym">, </span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/DB_Base.html#var$user">user</a><span class="src-sym">, </span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/DB_Base.html#var$pw">pw</a><span class="src-sym">)</span><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-key">if </span><span class="src-sym">(</span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/DB_Base.html#var$link">link</a> !== <span class="src-id">FALSE</span><span class="src-sym">) </span><span class="src-sym">{</span></li> <li><a name="a41"></a> <span class="src-key">if </span><span class="src-sym">(</span><a href="http://www.php.net/mssql_select_db">mssql_select_db</a><span class="src-sym">(</span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/DB_Base.html#var$db">db</a><span class="src-sym">, </span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/DB_Base.html#var$link">link</a><span class="src-sym">)) </span><span class="src-sym">{</span></li> <li><a name="a42"></a> <span class="src-key">return </span><span class="src-id">TRUE</span><span class="src-sym">;</span></li> <li><a name="a43"></a> <span class="src-sym">}</span></li> <li><a name="a44"></a> <a href="http://www.php.net/mssql_close">mssql_close</a><span class="src-sym">(</span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/DB_Base.html#var$link">link</a><span class="src-sym">)</span><span class="src-sym">;</span></li> <li><a name="a45"></a> <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/DB_Base.html#var$link">link</a> = <span class="src-id">NULL</span><span class="src-sym">;</span></li> <li><a name="a47"></a> <span class="src-key">return </span><span class="src-id">FALSE</span><span class="src-sym">;</span></li> <li><a name="a48"></a> <span class="src-sym">}</span></li> <li><a name="a49"></a> </li> <li><a name="a50"></a> <span class="src-doc">/**</span></li> <li><a name="a51"></a><span class="src-doc"> * Execute a query at the database.</span></li> <li><a name="a52"></a><span class="src-doc"> *</span></li> <li><a name="a53"></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">$sql </span><span class="src-doc">Query to run.</span></li> <li><a name="a54"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@return </span><span class="src-doc-type">RS_Base </span><span class="src-doc">Returns a RecordSet object if there is a result to the query or TRUE if it was successfull, FALSE if a error occurred.</span></li> <li><a name="a55"></a><span class="src-doc"> */</span></li> <li><a name="a56"></a> <span class="src-key">function </span><span class="src-sym">&</span><a href="../Vortex/DB/DB_MSSQL.html#methodQuery">Query</a><span class="src-sym">(</span><span class="src-var">$sql</span><span class="src-sym">)</span></li> <li><a name="a57"></a> <span class="src-sym">{</span></li> <li><a name="a58"></a> <span class="src-var">$rs </span>= <a href="http://www.php.net/mssql_query">mssql_query</a><span class="src-sym">(</span><span class="src-var">$sql</span><span class="src-sym">,</span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/DB_Base.html#var$link">link</a><span class="src-sym">)</span><span class="src-sym">;</span></li> <li><a name="a59"></a> <span class="src-key">if </span><span class="src-sym">(</span><span class="src-var">$rs </span>=== <span class="src-id">FALSE</span><span class="src-sym">) </span><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> <span class="src-key">return </span><span class="src-key">new </span><span class="src-id"><a href="../Vortex/DB/RS_MSSQL.html">RS_MSSQL</a></span><span class="src-sym">(</span><span class="src-var">$this</span><span class="src-sym">, </span><span class="src-var">$rs</span><span class="src-sym">)</span><span class="src-sym">;</span></li> <li><a name="a63"></a> <span class="src-sym">}</span></li> <li><a name="a64"></a> </li> <li><a name="a65"></a> <span class="src-doc">/**</span></li> <li><a name="a66"></a><span class="src-doc"> * Close the connection to the database if still connected.</span></li> <li><a name="a67"></a><span class="src-doc"> *</span></li> <li><a name="a68"></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 connection was closed, FALSE if it failed.</span></li> <li><a name="a69"></a><span class="src-doc"> */</span></li> <li><a name="a70"></a> <span class="src-key">function </span><a href="../Vortex/DB/DB_MSSQL.html#methodClose">Close</a><span class="src-sym">(</span><span class="src-sym">)</span></li> <li><a name="a71"></a> <span class="src-sym">{</span></li> <li><a name="a72"></a> <span class="src-key">if </span><span class="src-sym">(</span><a href="http://www.php.net/mssql_close">mssql_close</a><span class="src-sym">(</span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/DB_Base.html#var$link">link</a><span class="src-sym">)) </span><span class="src-sym">{</span></li> <li><a name="a73"></a> <span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/DB_Base.html#var$link">link</a> = <span class="src-id">NULL</span><span class="src-sym">;</span></li> <li><a name="a74"></a> <span class="src-key">return </span><span class="src-id">TRUE</span><span class="src-sym">;</span></li> <li><a name="a75"></a> <span class="src-sym">}</span></li> <li><a name="a76"></a> <span class="src-key">return </span><span class="src-id">FALSE</span><span class="src-sym">;</span></li> <li><a name="a77"></a> <span class="src-sym">}</span></li> <li><a name="a78"></a> </li> <li><a name="a79"></a> <span class="src-doc">/**</span></li> <li><a name="a80"></a><span class="src-doc"> * Transactions: Begin a new transaction.</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">@return </span><span class="src-doc-type">bool </span><span class="src-doc">Returns TRUE if the new transaction began, FALSE if it failed.</span></li> <li><a name="a83"></a><span class="src-doc"> */</span></li> <li><a name="a84"></a> <span class="src-key">function </span><a href="../Vortex/DB/DB_MSSQL.html#methodBegin">Begin</a><span class="src-sym">(</span><span class="src-sym">)</span></li> <li><a name="a85"></a> <span class="src-sym">{</span></li> <li><a name="a86"></a> <span class="src-key">return </span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/DB_MSSQL.html#methodQuery">Query</a><span class="src-sym">(</span><span class="src-str">'BEGIN TRANSACTION'</span><span class="src-sym">)</span><span class="src-sym">;</span></li> <li><a name="a87"></a> <span class="src-sym">}</span></li> <li><a name="a88"></a> </li> <li><a name="a89"></a> <span class="src-doc">/**</span></li> <li><a name="a90"></a><span class="src-doc"> * Transactions: Commit a transaction.</span></li> <li><a name="a91"></a><span class="src-doc"> *</span></li> <li><a name="a92"></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 transaction was commited, FALSE if it failed.</span></li> <li><a name="a93"></a><span class="src-doc"> */</span></li> <li><a name="a94"></a> <span class="src-key">function </span><a href="../Vortex/DB/DB_MSSQL.html#methodCommit">Commit</a><span class="src-sym">(</span><span class="src-sym">)</span></li> <li><a name="a95"></a> <span class="src-sym">{</span></li> <li><a name="a96"></a> <span class="src-key">return </span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/DB_MSSQL.html#methodQuery">Query</a><span class="src-sym">(</span><span class="src-str">'COMMIT TRANSACTION'</span><span class="src-sym">)</span><span class="src-sym">;</span></li> <li><a name="a97"></a> <span class="src-sym">}</span></li> <li><a name="a98"></a> </li> <li><a name="a99"></a> <span class="src-doc">/**</span></li> <li><a name="a100"></a><span class="src-doc"> * Transactions: Rollback a transaction.</span></li> <li><a name="a101"></a><span class="src-doc"> *</span></li> <li><a name="a102"></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 transaction was cancelled, FALSE if it failed.</span></li> <li><a name="a103"></a><span class="src-doc"> */</span></li> <li><a name="a104"></a> <span class="src-key">function </span><a href="../Vortex/DB/DB_MSSQL.html#methodRollback">Rollback</a><span class="src-sym">(</span><span class="src-sym">)</span></li> <li><a name="a105"></a> <span class="src-sym">{</span></li> <li><a name="a106"></a> <span class="src-key">return </span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/DB_MSSQL.html#methodQuery">Query</a><span class="src-sym">(</span><span class="src-str">'ROLLBACK TRANSACTION'</span><span class="src-sym">)</span><span class="src-sym">;</span></li> <li><a name="a107"></a> <span class="src-sym">}</span></li> <li><a name="a108"></a> </li> <li><a name="a109"></a> <span class="src-doc">/**</span></li> <li><a name="a110"></a><span class="src-doc"> * Process a string for safe use in a database insertion.</span></li> <li><a name="a111"></a><span class="src-doc"> *</span></li> <li><a name="a112"></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">$data </span><span class="src-doc">The string to be processed.</span></li> <li><a name="a113"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@return </span><span class="src-doc-type">string </span><span class="src-doc">Returns the processed string.</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/DB_MSSQL.html#methodAddSlashes">AddSlashes</a><span class="src-sym">(</span><span class="src-var">$data</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/addslashes">addslashes</a><span class="src-sym">(</span><span class="src-var">$data</span><span class="src-sym">)</span><span class="src-sym">;</span></li> <li><a name="a118"></a> <span class="src-sym">}</span></li> <li><a name="a119"></a><span class="src-sym">}</span></li> <li><a name="a120"></a><span class="src-php">?></span></li> </ol></pre> </div> <p class="notes" id="credit"> Documentation generated on Fri, 11 Aug 2006 16:21:48 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </body> </html> Index: fsource_Vortex_DB_TB_Base.class.php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/__filesource/fsource_Vortex_DB_TB_Base.class.php.html,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** fsource_Vortex_DB_TB_Base.class.php.html 5 Nov 2004 16:13:41 -0000 1.7 --- fsource_Vortex_DB_TB_Base.class.php.html 11 Aug 2006 19:21:21 -0000 1.8 *************** *** 24,29 **** <li><a name="a11"></a> </li> <li><a name="a12"></a><span class="src-doc">/** Require the global configuration file for access to the localized messages */</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">'conf/conf.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> --- 24,28 ---- <li><a name="a11"></a> </li> <li><a name="a12"></a><span class="src-doc">/** Require the global configuration file for access to the localized messages */</span></li> ! <li><a name="a13"></a><span class="src-sym">(</span><span class="src-str">'conf/conf.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> *************** *** 106,416 **** <li><a name="a92"></a> </li> <li><a name="a93"></a> <span class="src-doc">/**</span></li> ! <li><a name="a94"></a><span class="src-doc"> * Constructor: Init the object, and define the table's fields and relationships.</span></li> ! <li><a name="a95"></a><span class="src-doc"> *</span></li> ! <li><a name="a96"></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="a97"></a><span class="src-doc"> */</span></li> ! <li><a name="a98"></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="a99"></a> <span class="src-sym">{</span></li> ! <li><a name="a100"></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="a101"></a> <a href="http://www.php.net/is_null">is_null</a><span class="src-sym">(</span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$name_db">name_db</a><span class="src-sym">) </span><span class="src-key">and </span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$name_db">name_db</a> = <span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$name">name</a><span class="src-sym">;</span></li> ! <li><a name="a102"></a> <a href="http://www.php.net/is_null">is_null</a><span class="src-sym">(</span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$label">label</a><span class="src-sym">) </span><span class="src-key">and </span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$label">label</a> = <span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$name">name</a><span class="src-sym">;</span></li> ! <li><a name="a103"></a> <span class="src-sym">}</span></li> ! <li><a name="a104"></a> </li> ! <li><a name="a105"></a> <span class="src-doc">/**</span></li> ! <li><a name="a106"></a><span class="src-doc"> * Get the last error message.</span></li> ! <li><a name="a107"></a><span class="src-doc"> *</span></li> ! <li><a name="a108"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@return </span><span class="src-doc-type">string </span><span class="src-doc">Returns the last error message, or FALSE if no error.</span></li> ! <li><a name="a109"></a><span class="src-doc"> */</span></li> ! <li><a name="a110"></a> <span class="src-key">function </span><a href="../Vortex/DB/TB_Base.html#methodError">Error</a><span class="src-sym">(</span><span class="src-sym">)</span></li> ! <li><a name="a111"></a> <span class="src-sym">{</span></li> ! <li><a name="a112"></a> <span class="src-key">if </span><span class="src-sym">(</span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$error">error</a> == <span class="src-id"><a href="../Vortex/Util/_conf_conf_php.html#defineTB_ERR_OK">TB_ERR_OK</a></span><span class="src-sym">) </span><span class="src-key">return </span><span class="src-id">FALSE</span><span class="src-sym">;</span></li> ! <li><a name="a113"></a> <span class="src-key">return </span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$error">error</a><span class="src-sym">;</span></li> ! <li><a name="a114"></a> <span class="src-sym">}</span></li> ! <li><a name="a115"></a> </li> ! <li><a name="a116"></a> <span class="src-doc">/**</span></li> ! <li><a name="a117"></a><span class="src-doc"> * Set the internal buffer to a record to show/edit, or a blank one.</span></li> ! <li><a name="a118"></a><span class="src-doc"> *</span></li> ! <li><a name="a119"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@param </span><span class="src-doc-type">array </span><span class="src-doc-var">$data </span><span class="src-doc">Array containing the data to seek as 'field' => 'value'.</span></li> ! <li><a name="a120"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@param </span><span class="src-doc-type">bool </span><span class="src-doc-var">$pkonly </span><span class="src-doc">Use only the pkey's in the search?</span></li> ! <li><a name="a121"></a><span class="src-doc"> * </span><span class="src-doc-coretag">@return </span><span class="src-doc-type">bool </span><span class="src-doc">Returns TRUE on success, FALSE on error.</span></li> ! <li><a name="a122"></a><span class="src-doc"> */</span></li> ! <li><a name="a123"></a> <span class="src-key">function </span><a href="../Vortex/DB/TB_Base.html#methodSeek">Seek</a><span class="src-sym">(</span><span class="src-var">$data </span>= <span class="src-id">NULL</span><span class="src-sym">, </span><span class="src-var">$pkonly </span>= <span class="src-id">TRUE</span><span class="src-sym">)</span></li> ! <li><a name="a124"></a> <span class="src-sym">{</span></li> ! <li><a name="a125"></a> <span class="src-key">if </span><span class="src-sym">(</span><span class="src-key">empty</span><span class="src-sym">(</span><span class="src-var">$data</span><span class="src-sym">)) </span><span class="src-sym">{</span></li> ! <li><a name="a126"></a> <span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$data">data</a> = <span class="src-key">array</span><span class="src-sym">(</span><span class="src-sym">)</span><span class="src-sym">;</span></li> ! <li><a name="a127"></a> <span class="src-key">return </span><span class="src-id">TRUE</span><span class="src-sym">;</span></li> ! <li><a name="a128"></a> <span class="src-sym">}</span></li> ! <li><a name="a129"></a> <span class="src-var">$where </span>= <span class="src-str">''</span><span class="src-sym">;</span></li> ! <li><a name="a130"></a> <span class="src-key">foreach </span><span class="src-sym">(</span><span class="src-var">$this</span><span class="src-sym">-></span><a href="../Vortex/DB/TB_Base.html#var$fields">fields</a> <span class="src-key">as </span><span class="src-var">$field</span><span class="src-sym">) </span><span class="src-key">if </span><span class="src-sym">(</span><span class="src-sym">!</span><span class="src-var">$pkonly </span>|| <span class="src-var">$field</span><span class="src-sym">-></span><span class="src-id">pkey</span><span class="src-sym">) </span><span class="src-sym">{</span></li> ! <li><a name="a131"></a> <span class="src-key">if </span><span class="src-sym">(</span>isset<span class="src-sym">(</span><span class="src-var">$data</span><span class="src-sym">[</span><span class="src-var">$field</span><span class="src-sym">-></span><span class="src-id">name_form</span><span class="src-sym">]</span><span class="src-sym">)) </span><span class="src-var">$where </span>.= <span class="src-sym">(</span><a href="http://www.php.net/strlen">strlen</a><span class="src-sym">(</span><span class="src-var">$where</span><span class="src-sym">)</span>?<span class="src-str">' AND '</span>:<span class="src-str">''</span><span class="src-sym">)</span>.<span class="src-var">$field</span><span class="src-sym">-></span><span class="src-id">Where</span><span class="src-sym">(</span><span class="src-va... [truncated message content] |
Update of /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28570/doc/html/Vortex/DB Modified Files: DB_Base.html DB_MySQL.html FT_Base.html FT_Hidden.html FT_List.html FT_ListArray.html FT_PKey.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_Hidden_class_php.html _FT_ListArray_class_php.html _FT_List_class_php.html _FT_PKey_class_php.html _FT_Text_class_php.html _RS_Base_class_php.html _RS_MySQL_class_php.html _TB_Base_class_php.html Added Files: DB_MSSQL.html DB_PostgreSQL.html FT_DateTime.html FT_File.html FT_Password.html RS_MSSQL.html RS_PostgreSQL.html _DB_MSSQL_class_php.html _DB_PostgreSQL_class_php.html _FT_DateTime_class_php.html _FT_File_class_php.html _FT_Password_class_php.html _RS_MSSQL_class_php.html _RS_PostgreSQL_class_php.html Log Message: Updated documentation --- NEW FILE: RS_PostgreSQL.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_PostgreSQL</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_PostgreSQL</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 PostgreSQL RecordSets.</p> <p class="notes"> Located in <a class="field" href="_RS_PostgreSQL_class_php.html">/RS_PostgreSQL.class.php</a> (line <span class="field"><a href="../..//__filesource/fsource_Vortex_DB_RS_PostgreSQL.class.php.html#a21">21</a></span>) </p> <pre><a href="../../Vortex/DB/RS_Base.html">RS_Base</a> | --RS_PostgreSQL</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="oddrow"> <div class="method-header"> <span class="method-title">All</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_RS_PostgreSQL.class.php.html#a96">96</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="evenrow"> <div class="method-header"> <span class="method-title">Close</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_RS_PostgreSQL.class.php.html#a129">129</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="oddrow"> <div class="method-header"> <span class="method-title">Error</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_RS_PostgreSQL.class.php.html#a119">119</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="evenrow"> <div class="method-header"> <span class="method-title">LastId</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_RS_PostgreSQL.class.php.html#a109">109</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="oddrow"> <div class="method-header"> <span class="method-title">Row</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_RS_PostgreSQL.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="evenrow"> <div class="method-header"> <span class="method-title">RowCount</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_RS_PostgreSQL.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="oddrow"> <div class="method-header"> <span class="method-title">SetRow</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_RS_PostgreSQL.class.php.html#a80">80</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 Fri, 11 Aug 2006 16:22:00 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> </html> Index: RS_MySQL.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB/RS_MySQL.html,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** RS_MySQL.html 5 Nov 2004 16:13:38 -0000 1.7 --- RS_MySQL.html 11 Aug 2006 19:21:20 -0000 1.8 *************** *** 388,392 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:12 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 388,392 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:21:59 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: _FT_Base_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB/_FT_Base_class_php.html,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** _FT_Base_class_php.html 5 Nov 2004 16:13:38 -0000 1.7 --- _FT_Base_class_php.html 11 Aug 2006 19:21:20 -0000 1.8 *************** *** 62,66 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:04 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 62,66 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:21:51 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: RS_Base.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB/RS_Base.html,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** RS_Base.html 5 Nov 2004 16:13:38 -0000 1.7 --- RS_Base.html 11 Aug 2006 19:21:20 -0000 1.8 *************** *** 52,55 **** --- 52,61 ---- </tr> <tr> + <td style="padding-right: 2em"><a href="../../Vortex/DB/RS_MSSQL.html">RS_MSSQL</a></td> + <td> + Class for MS SQL Server RecordSets. + </td> + </tr> + <tr> <td style="padding-right: 2em"><a href="../../Vortex/DB/RS_MySQL.html">RS_MySQL</a></td> <td> *************** *** 57,60 **** --- 63,72 ---- </td> </tr> + <tr> + <td style="padding-right: 2em"><a href="../../Vortex/DB/RS_PostgreSQL.html">RS_PostgreSQL</a></td> + <td> + Class for PostgreSQL RecordSets. + </td> + </tr> </table> </div> *************** *** 171,175 **** <div class="info-box-body"> <a name="var$db" id="$db"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 183,187 ---- <div class="info-box-body"> <a name="var$db" id="$db"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 190,194 **** </div> <a name="var$result" id="$result"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 202,206 ---- </div> <a name="var$result" id="$result"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 209,213 **** </div> <a name="var$row" id="$row"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 221,225 ---- </div> <a name="var$row" id="$row"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 244,248 **** <A NAME='method_detail'></A> <a name="methodRS_Base" id="RS_Base"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> --- 256,260 ---- <A NAME='method_detail'></A> <a name="methodRS_Base" id="RS_Base"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> *************** *** 273,277 **** </div> <a name="methodAll" id="All"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> --- 285,289 ---- </div> <a name="methodAll" id="All"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> *************** *** 305,315 **** <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="evenrow"> <div class="method-header"> --- 317,335 ---- <ul class="redefinitions"> <li> + <a href="../../Vortex/DB/RS_MSSQL.html#methodAll">RS_MSSQL::All()</a> + : Get all rows from the RecordSet. + </li> + <li> <a href="../../Vortex/DB/RS_MySQL.html#methodAll">RS_MySQL::All()</a> : Get all rows from the RecordSet. </li> + <li> + <a href="../../Vortex/DB/RS_PostgreSQL.html#methodAll">RS_PostgreSQL::All()</a> + : Get all rows from the RecordSet. + </li> </ul> </div> <a name="methodClose" id="Close"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> *************** *** 338,348 **** <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="oddrow"> <div class="method-header"> --- 358,376 ---- <ul class="redefinitions"> <li> + <a href="../../Vortex/DB/RS_MSSQL.html#methodClose">RS_MSSQL::Close()</a> + : Close the RecordSet and free the memory. + </li> + <li> <a href="../../Vortex/DB/RS_MySQL.html#methodClose">RS_MySQL::Close()</a> : Close the RecordSet and free the memory. </li> + <li> + <a href="../../Vortex/DB/RS_PostgreSQL.html#methodClose">RS_PostgreSQL::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"> *************** *** 374,381 **** : Get the last error message from the RecordSet. </li> </ul> </div> <a name="methodLastId" id="LastId"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> --- 402,413 ---- : Get the last error message from the RecordSet. </li> + <li> + <a href="../../Vortex/DB/RS_PostgreSQL.html#methodError">RS_PostgreSQL::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"> *************** *** 404,414 **** <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="oddrow"> <div class="method-header"> --- 436,454 ---- <ul class="redefinitions"> <li> + <a href="../../Vortex/DB/RS_MSSQL.html#methodLastId">RS_MSSQL::LastId()</a> + : Get the last auto-generated ID from the RecordSet. + </li> + <li> <a href="../../Vortex/DB/RS_MySQL.html#methodLastId">RS_MySQL::LastId()</a> : Get the last auto-generated ID from the RecordSet. </li> + <li> + <a href="../../Vortex/DB/RS_PostgreSQL.html#methodLastId">RS_PostgreSQL::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"> *************** *** 446,456 **** <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="evenrow"> <div class="method-header"> --- 486,504 ---- <ul class="redefinitions"> <li> + <a href="../../Vortex/DB/RS_MSSQL.html#methodRow">RS_MSSQL::Row()</a> + : Get a row from the RecordSet. + </li> + <li> <a href="../../Vortex/DB/RS_MySQL.html#methodRow">RS_MySQL::Row()</a> : Get a row from the RecordSet. </li> + <li> + <a href="../../Vortex/DB/RS_PostgreSQL.html#methodRow">RS_PostgreSQL::Row()</a> + : Get a row from the RecordSet. + </li> </ul> </div> <a name="methodRowCount" id="RowCount"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> *************** *** 479,489 **** <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="oddrow"> <div class="method-header"> --- 527,545 ---- <ul class="redefinitions"> <li> + <a href="../../Vortex/DB/RS_MSSQL.html#methodRowCount">RS_MSSQL::RowCount()</a> + : Get the count of rows in the RecordSet. + </li> + <li> <a href="../../Vortex/DB/RS_MySQL.html#methodRowCount">RS_MySQL::RowCount()</a> : Get the count of rows in the RecordSet. </li> + <li> + <a href="../../Vortex/DB/RS_PostgreSQL.html#methodRowCount">RS_PostgreSQL::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"> *************** *** 517,523 **** --- 573,587 ---- <ul class="redefinitions"> <li> + <a href="../../Vortex/DB/RS_MSSQL.html#methodSetRow">RS_MSSQL::SetRow()</a> + : Go to a row int the RecordSet. + </li> + <li> <a href="../../Vortex/DB/RS_MySQL.html#methodSetRow">RS_MySQL::SetRow()</a> : Go to a row int the RecordSet. </li> + <li> + <a href="../../Vortex/DB/RS_PostgreSQL.html#methodSetRow">RS_PostgreSQL::SetRow()</a> + : Go to a row int the RecordSet. + </li> </ul> </div> *************** *** 528,532 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:11 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 592,596 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:21:57 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> --- NEW FILE: DB_PostgreSQL.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 DB_PostgreSQL</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 DB_PostgreSQL</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 PostgreSQL database connection.</p> <p class="notes"> Located in <a class="field" href="_DB_PostgreSQL_class_php.html">/DB_PostgreSQL.class.php</a> (line <span class="field"><a href="../..//__filesource/fsource_Vortex_DB_DB_PostgreSQL.class.php.html#a24">24</a></span>) </p> <pre><a href="../../Vortex/DB/DB_Base.html">DB_Base</a> | --DB_PostgreSQL</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">string</span> <a href="#AddSlashes" title="details" class="method-name">AddSlashes</a> (<span class="var-type">string</span> <span class="var-name">$data</span>) </div> <div class="method-definition"> <span class="method-result">bool</span> <a href="#Begin" title="details" class="method-name">Begin</a> () </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">bool</span> <a href="#Commit" title="details" class="method-name">Commit</a> () </div> <div class="method-definition"> <span class="method-result">bool</span> <a href="#Connect" title="details" class="method-name">Connect</a> ([<span class="var-type">bool</span> <span class="var-name">$persist</span> = <span class="var-default">FALSE</span>]) </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"><a href="../../Vortex/DB/RS_Base.html">RS_Base</a></span> <a href="#Query" title="details" class="method-name">&Query</a> (<span class="var-type">string</span> <span class="var-name">$sql</span>) </div> <div class="method-definition"> <span class="method-result">bool</span> <a href="#Rollback" title="details" class="method-name">Rollback</a> () </div> </div> </div> </div> <a name="sec-vars"></a> <div class="info-box"> <div class="info-box-title">Variables</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-var-summary">Vars</a> (<span class="disabled">details</span>) | <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) </div> <div class="info-box-body"> <h4>Inherited Variables</h4> <A NAME='inherited_vars'><!-- --></A> <p>Inherited from <span class="classname"><a href="../../Vortex/DB/DB_Base.html">DB_Base</a></span></p> <blockquote> <span class="var-title"> <span class="var-name"><a href="../../Vortex/DB/DB_Base.html#var$db">DB_Base::$db</a></span><br> </span> <span class="var-title"> <span class="var-name"><a href="../../Vortex/DB/DB_Base.html#var$link">DB_Base::$link</a></span><br> </span> <span class="var-title"> <span class="var-name"><a href="../../Vortex/DB/DB_Base.html#var$pw">DB_Base::$pw</a></span><br> </span> <span class="var-title"> <span class="var-name"><a href="../../Vortex/DB/DB_Base.html#var$server">DB_Base::$server</a></span><br> </span> <span class="var-title"> <span class="var-name"><a href="../../Vortex/DB/DB_Base.html#var$user">DB_Base::$user</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="methodAddSlashes" id="AddSlashes"><!-- --></a> <div class="evenrow"> <div class="method-header"> <span class="method-title">AddSlashes</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_DB_PostgreSQL.class.php.html#a123">123</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Process a string for safe use in a database insertion.</p> <ul class="tags"> <li><span class="field">return:</span> Returns the processed string.</li> </ul> <div class="method-signature"> <span class="method-result">string</span> <span class="method-name"> AddSlashes </span> (<span class="var-type">string</span> <span class="var-name">$data</span>) </div> <ul class="parameters"> <li> <span class="var-type">string</span> <span class="var-name">$data</span><span class="var-description">: The string to be processed.</span> </li> </ul> <hr class="separator" /> <div class="notes">Redefinition of:</div> <dl> <dt><a href="../../Vortex/DB/DB_Base.html#methodAddSlashes">DB_Base::AddSlashes()</a></dt> <dd>Process a string for safe use in a database insertion.</dd> </dl> </div> <a name="methodBegin" id="Begin"><!-- --></a> <div class="oddrow"> <div class="method-header"> <span class="method-title">Begin</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_DB_PostgreSQL.class.php.html#a92">92</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Transactions: Begin a new transaction.</p> <ul class="tags"> <li><span class="field">return:</span> Returns TRUE if the new transaction began, FALSE if it failed.</li> </ul> <div class="method-signature"> <span class="method-result">bool</span> <span class="method-name"> Begin </span> () </div> <hr class="separator" /> <div class="notes">Redefinition of:</div> <dl> <dt><a href="../../Vortex/DB/DB_Base.html#methodBegin">DB_Base::Begin()</a></dt> <dd>Transactions: Begin a new transaction.</dd> </dl> </div> <a name="methodClose" id="Close"><!-- --></a> <div class="evenrow"> <div class="method-header"> <span class="method-title">Close</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_DB_PostgreSQL.class.php.html#a68">68</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Close the connection to the database if still connected.</p> <ul class="tags"> <li><span class="field">return:</span> Returns TRUE if the connection 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/DB_Base.html#methodClose">DB_Base::Close()</a></dt> <dd>Close the connection to the database if still connected.</dd> </dl> </div> <a name="methodCommit" id="Commit"><!-- --></a> <div class="oddrow"> <div class="method-header"> <span class="method-title">Commit</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_DB_PostgreSQL.class.php.html#a102">102</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Transactions: Commit a transaction.</p> <ul class="tags"> <li><span class="field">return:</span> Returns TRUE if the transaction was commited, FALSE if it failed.</li> </ul> <div class="method-signature"> <span class="method-result">bool</span> <span class="method-name"> Commit </span> () </div> <hr class="separator" /> <div class="notes">Redefinition of:</div> <dl> <dt><a href="../../Vortex/DB/DB_Base.html#methodCommit">DB_Base::Commit()</a></dt> <dd>Transactions: Commit a transaction.</dd> </dl> </div> <a name="methodConnect" id="Connect"><!-- --></a> <div class="evenrow"> <div class="method-header"> <span class="method-title">Connect</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_DB_PostgreSQL.class.php.html#a32">32</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Open a new connection to the database if not already connected.</p> <ul class="tags"> <li><span class="field">return:</span> Returns TRUE if the connection was successfully established, FALSE if an error occurred.</li> </ul> <div class="method-signature"> <span class="method-result">bool</span> <span class="method-name"> Connect </span> ([<span class="var-type">bool</span> <span class="var-name">$persist</span> = <span class="var-default">FALSE</span>]) </div> <ul class="parameters"> <li> <span class="var-type">bool</span> <span class="var-name">$persist</span><span class="var-description">: Open a persistent connection?</span> </li> </ul> <hr class="separator" /> <div class="notes">Redefinition of:</div> <dl> <dt><a href="../../Vortex/DB/DB_Base.html#methodConnect">DB_Base::Connect()</a></dt> <dd>Open a new connection to the database if not already connected.</dd> </dl> </div> <a name="methodError" id="Error"><!-- --></a> <div class="oddrow"> <div class="method-header"> <span class="method-title">Error</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_DB_PostgreSQL.class.php.html#a82">82</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Get the last error message from the connection.</p> <ul class="tags"> <li><span class="field">return:</span> Returns a string describing the last error that occurred in the connection.</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/DB_Base.html#methodError">DB_Base::Error()</a></dt> <dd>Get the last error message from the connection.</dd> </dl> </div> <a name="methodQuery" id="Query"><!-- --></a> <div class="evenrow"> <div class="method-header"> <span class="method-title">Query</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_DB_PostgreSQL.class.php.html#a53">53</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Execute a query at the database.</p> <ul class="tags"> <li><span class="field">return:</span> Returns a RecordSet object if there is a result to the query or TRUE if it was successfull, FALSE if a error occurred.</li> </ul> <div class="method-signature"> <span class="method-result"><a href="../../Vortex/DB/RS_Base.html">RS_Base</a></span> <span class="method-name"> &Query </span> (<span class="var-type">string</span> <span class="var-name">$sql</span>) </div> <ul class="parameters"> <li> <span class="var-type">string</span> <span class="var-name">$sql</span><span class="var-description">: Query to run.</span> </li> </ul> <hr class="separator" /> <div class="notes">Redefinition of:</div> <dl> <dt><a href="../../Vortex/DB/DB_Base.html#methodQuery">DB_Base::Query()</a></dt> <dd>Execute a query at the database.</dd> </dl> </div> <a name="methodRollback" id="Rollback"><!-- --></a> <div class="oddrow"> <div class="method-header"> <span class="method-title">Rollback</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_DB_PostgreSQL.class.php.html#a112">112</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Transactions: Rollback a transaction.</p> <ul class="tags"> <li><span class="field">return:</span> Returns TRUE if the transaction was cancelled, FALSE if it failed.</li> </ul> <div class="method-signature"> <span class="method-result">bool</span> <span class="method-name"> Rollback </span> () </div> <hr class="separator" /> <div class="notes">Redefinition of:</div> <dl> <dt><a href="../../Vortex/DB/DB_Base.html#methodRollback">DB_Base::Rollback()</a></dt> <dd>Transactions: Rollback a transaction.</dd> </dl> </div> <h4>Inherited Methods</h4> <a name='inherited_methods'><!-- --></a> <!-- =========== Summary =========== --> <p>Inherited From <span class="classname"><a href="../../Vortex/DB/DB_Base.html">DB_Base</a></span></p> <blockquote> <span class="method-name"><a href="../../Vortex/DB/DB_Base.html#methodDB_Base">DB_Base::DB_Base()</a></span><br> <span class="method-name"><a href="../../Vortex/DB/DB_Base.html#methodAddSlashes">DB_Base::AddSlashes()</a></span><br> <span class="method-name"><a href="../../Vortex/DB/DB_Base.html#methodBegin">DB_Base::Begin()</a></span><br> <span class="method-name"><a href="../../Vortex/DB/DB_Base.html#methodClose">DB_Base::Close()</a></span><br> <span class="method-name"><a href="../../Vortex/DB/DB_Base.html#methodCommit">DB_Base::Commit()</a></span><br> <span class="method-name"><a href="../../Vortex/DB/DB_Base.html#methodConnect">DB_Base::Connect()</a></span><br> <span class="method-name"><a href="../../Vortex/DB/DB_Base.html#methodDelete">DB_Base::Delete()</a></span><br> <span class="method-name"><a href="../../Vortex/DB/DB_Base.html#methodDuplicate">DB_Base::Duplicate()</a></span><br> <span class="method-name"><a href="../../Vortex/DB/DB_Base.html#methodError">DB_Base::Error()</a></span><br> <span class="method-name"><a href="../../Vortex/DB/DB_Base.html#methodInsert">DB_Base::Insert()</a></span><br> <span class="method-name"><a href="../../Vortex/DB/DB_Base.html#methodQuery">DB_Base::Query()</a></span><br> <span class="method-name"><a href="../../Vortex/DB/DB_Base.html#methodRollback">DB_Base::Rollback()</a></span><br> <span class="method-name"><a href="../../Vortex/DB/DB_Base.html#methodSelect">DB_Base::Select()</a></span><br> <span class="method-name"><a href="../../Vortex/DB/DB_Base.html#methodUpdate">DB_Base::Update()</a></span><br> </blockquote> </div> </div> <p class="notes" id="credit"> Documentation generated on Fri, 11 Aug 2006 16:21:50 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> </html> Index: FT_Text.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB/FT_Text.html,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** FT_Text.html 5 Nov 2004 16:13:38 -0000 1.7 --- FT_Text.html 11 Aug 2006 19:21:20 -0000 1.8 *************** *** 94,98 **** <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> --- 94,98 ---- <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>, [<span class="var-type">mixed</span> <span class="var-name">$origin</span> = <span class="var-default">FT_OR_DB</span>]) </div> *************** *** 100,104 **** <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> --- 100,104 ---- <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>, [<span class="var-type">mixed</span> <span class="var-name">$origin</span> = <span class="var-default">FT_OR_DB</span>]) </div> *************** *** 126,130 **** <div class="info-box-body"> <a name="var$cols" id="$cols"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 126,130 ---- <div class="info-box-body"> <a name="var$cols" id="$cols"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 145,149 **** </div> <a name="var$rows" id="$rows"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> --- 145,149 ---- </div> <a name="var$rows" id="$rows"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> *************** *** 164,168 **** </div> <a name="var$size" id="$size"><!-- --></A> ! <div class="evenrow"> <div class="var-header"> --- 164,168 ---- </div> <a name="var$size" id="$size"><!-- --></A> ! <div class="oddrow"> <div class="var-header"> *************** *** 227,231 **** <A NAME='method_detail'></A> <a name="methodConsistTest" id="ConsistTest"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> --- 227,231 ---- <A NAME='method_detail'></A> <a name="methodConsistTest" id="ConsistTest"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> *************** *** 262,266 **** </div> <a name="methodJSConsist" id="JSConsist"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> --- 262,266 ---- </div> <a name="methodJSConsist" id="JSConsist"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> *************** *** 289,293 **** </div> <a name="methodShowForm" id="ShowForm"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> --- 289,293 ---- </div> <a name="methodShowForm" id="ShowForm"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> *************** *** 303,307 **** ShowForm </span> ! (<span class="var-type">string</span> <span class="var-name">$value</span>) </div> --- 303,307 ---- ShowForm </span> ! (<span class="var-type">string</span> <span class="var-name">$value</span>, [<span class="var-type">mixed</span> <span class="var-name">$origin</span> = <span class="var-default">FT_OR_DB</span>]) </div> *************** *** 321,325 **** </div> <a name="methodShowPlain" id="ShowPlain"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> --- 321,325 ---- </div> <a name="methodShowPlain" id="ShowPlain"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> *************** *** 335,339 **** ShowPlain </span> ! (<span class="var-type">string</span> <span class="var-name">$value</span>) </div> --- 335,339 ---- ShowPlain </span> ! (<span class="var-type">string</span> <span class="var-name">$value</span>, [<span class="var-type">mixed</span> <span class="var-name">$origin</span> = <span class="var-default">FT_OR_DB</span>]) </div> *************** *** 353,357 **** </div> <a name="methodWhere" id="Where"><!-- --></a> ! <div class="oddrow"> <div class="method-header"> --- 353,357 ---- </div> <a name="methodWhere" id="Where"><!-- --></a> ! <div class="evenrow"> <div class="method-header"> *************** *** 408,412 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:09 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 408,412 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:21:56 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: _FT_Text_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB/_FT_Text_class_php.html,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** _FT_Text_class_php.html 5 Nov 2004 16:13:38 -0000 1.7 --- _FT_Text_class_php.html 11 Aug 2006 19:21:20 -0000 1.8 *************** *** 69,73 **** <div class="info-box-body"> <a name="_FT_Base_class_php"><!-- --></a> ! <div class="evenrow"> <div> --- 69,73 ---- <div class="info-box-body"> <a name="_FT_Base_class_php"><!-- --></a> ! <div class="oddrow"> <div> *************** *** 90,94 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:09 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 90,94 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:21:56 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> --- NEW FILE: _FT_DateTime_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_DateTime.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_DateTime.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> | <a href="#sec-constants">Constants</a> | <a href="#sec-functions">Functions</a> </div> <div class="info-box-body"> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">File for class FT_DateTime.</p> <ul class="tags"> <li><span class="field">filesource:</span> <a href="../..//__filesource/fsource_Vortex_DB_FT_DateTime.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 2005, 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> | <a href="#sec-constants">Constants</a> | <a href="#sec-functions">Functions</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/DB/FT_DateTime.html">FT_DateTime</a> </td> <td> Database field, Date/Time type. </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> | <a href="#sec-constants">Constants</a> | <a href="#sec-functions">Functions</a> </div> <div class="info-box-body"> <a name="_FT_Base_class_php"><!-- --></a> <div class="oddrow"> <div> <span class="include-title"> <span class="include-type">require_once</span> (<span class="include-name"><a href="../../Vortex/DB/_FT_Base_class_php.html">'FT_Base.class.php'</a></span>) (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_FT_DateTime.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> <a name="sec-constants"></a> <div class="info-box"> <div class="info-box-title">Constants</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-classes">Classes</a> | <a href="#sec-includes">Includes</a> | <span class="disabled">Constants</span> | <a href="#sec-functions">Functions</a> </div> <div class="info-box-body"> <a name="defineFT_DATE"><!-- --></a> <div class="evenrow"> <div> <span class="const-title"> <span class="const-name">FT_DATE</span> = 1 (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_FT_DateTime.class.php.html#a19">19</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Date only field.</p> <p class="description"><p>Used in <a href="../../Vortex/DB/FT_DateTime.html#var$type">FT_DateTime::$type</a>.</p></p> </div> <a name="defineFT_DATETIME"><!-- --></a> <div class="oddrow"> <div> <span class="const-title"> <span class="const-name">FT_DATETIME</span> = 3 (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_FT_DateTime.class.php.html#a31">31</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Combined date/time field.</p> <p class="description"><p>Used in <a href="../../Vortex/DB/FT_DateTime.html#var$type">FT_DateTime::$type</a>.</p></p> </div> <a name="defineFT_TIME"><!-- --></a> <div class="evenrow"> <div> <span class="const-title"> <span class="const-name">FT_TIME</span> = 2 (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_FT_DateTime.class.php.html#a25">25</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Time only field.</p> <p class="description"><p>Used in <a href="../../Vortex/DB/FT_DateTime.html#var$type">FT_DateTime::$type</a>.</p></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-classes">Classes</a> | <a href="#sec-includes">Includes</a> | <a href="#sec-constants">Constants</a> | <span class="disabled">Functions</span> </div> <div class="info-box-body"> <a name="functionarray_combine" id="functionarray_combine"><!-- --></a> <div class="oddrow"> <div> <span class="method-title">array_combine</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_DB_FT_DateTime.class.php.html#a34">34</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <div class="method-signature"> <span class="method-result">void</span> <span class="method-name"> array_combine </span> (<span class="var-type">mixed</span> <span class="var-name">$keys</span>, <span class="var-type">mixed</span> <span class="var-name">$values</span>) </div> </div> </div> </div> <p class="notes" id="credit"> Documentation generated on Fri, 11 Aug 2006 16:21:51 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> </html> Index: _FT_ListArray_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB/_FT_ListArray_class_php.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** _FT_ListArray_class_php.html 5 Nov 2004 16:19:05 -0000 1.1 --- _FT_ListArray_class_php.html 11 Aug 2006 19:21:20 -0000 1.2 *************** *** 69,73 **** <div class="info-box-body"> <a name="_FT_Base_class_php"><!-- --></a> ! <div class="evenrow"> <div> --- 69,73 ---- <div class="info-box-body"> <a name="_FT_Base_class_php"><!-- --></a> ! <div class="oddrow"> <div> *************** *** 90,94 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:07 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 90,94 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:21:54 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: _FT_PKey_class_php.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB/_FT_PKey_class_php.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** _FT_PKey_class_php.html 5 Nov 2004 16:13:38 -0000 1.3 --- _FT_PKey_class_php.html 11 Aug 2006 19:21:20 -0000 1.4 *************** *** 69,73 **** <div class="info-box-body"> <a name="_FT_Hidden_class_php"><!-- --></a> ! <div class="oddrow"> <div> --- 69,73 ---- <div class="info-box-body"> <a name="_FT_Hidden_class_php"><!-- --></a> ! <div class="evenrow"> <div> *************** *** 90,94 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:08 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 90,94 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:21:55 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> Index: DB_MySQL.html =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/doc/html/Vortex/DB/DB_MySQL.html,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** DB_MySQL.html 5 Nov 2004 16:13:37 -0000 1.7 --- DB_MySQL.html 11 Aug 2006 19:21:20 -0000 1.8 *************** *** 423,426 **** --- 423,427 ---- <span class="method-name"><a href="../../Vortex/DB/DB_Base.html#methodQuery">DB_Base::Query()</a></span><br> <span class="method-name"><a href="../../Vortex/DB/DB_Base.html#methodRollback">DB_Base::Rollback()</a></span><br> + <span class="method-name"><a href="../../Vortex/DB/DB_Base.html#methodSelect">DB_Base::Select()</a></span><br> <span class="method-name"><a href="../../Vortex/DB/DB_Base.html#methodUpdate">DB_Base::Update()</a></span><br> </blockquote> *************** *** 431,435 **** <p class="notes" id="credit"> ! Documentation generated on Fri, 5 Nov 2004 14:12:02 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> --- 432,436 ---- <p class="notes" id="credit"> ! Documentation generated on Fri, 11 Aug 2006 16:21:49 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC5</a> </p> </div></body> --- NEW FILE: _DB_MSSQL_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 DB_MSSQL.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">/DB_MSSQL.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... [truncated message content] |
From: Thiago R. <nop...@us...> - 2006-08-11 19:21:24
|
Update of /cvsroot/phpvortex/phpvortex/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28570/test Modified Files: index.php Log Message: Updated documentation Index: index.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/test/index.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** index.php 8 Oct 2004 18:49:23 -0000 1.1 --- index.php 11 Aug 2006 19:21:22 -0000 1.2 *************** *** 1,2 **** --- 1,13 ---- + <?php + /** + * Index file for the Test programs. + * + * @package Vortex + * @subpackage Debug + * @author Thiago Ramon Gonçalves Montoya + * @copyright Copyright 2006, Thiago Ramon Gonçalves Montoya + * @license http://opensource.org/licenses/lgpl-license.php GNU Lesser General Public License + */ + ?> <!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"> |
From: Thiago R. <nop...@us...> - 2006-08-11 19:14:01
|
Update of /cvsroot/phpvortex/phpvortex In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26432 Added Files: FT_Password.class.php Log Message: Added FT_Password Class --- NEW FILE: FT_Password.class.php --- <?php /** * File for class FT_Password. * * @package Vortex * @subpackage DB * @author Thiago Ramon Gonçalves Montoya * @copyright Copyright 2006, Thiago Ramon Gonçalves Montoya * @license http://opensource.org/licenses/lgpl-license.php GNU Lesser General Public License */ /** Require the base class */ require_once('FT_Base.class.php'); /** * Database field, Password type. * * @package Vortex * @subpackage DB */ class FT_Password extends FT_Base { /** * Encription to use, use a SQL function. * * @var string */ var $enc = 'MD5'; /** * Output the field as a HTML Form. * * @param string $value Value to load the control with. */ function ShowForm($value, $origin = FT_OR_DB) { if ($origin == FT_OR_DB) { echo "<input type='password' name='{$this->name_form}' value='__VORTEX_PASS__$value' />"; } else { echo "<input type='password' name='{$this->name_form}' value='$value' />"; } } /** * Output the field consistency testing in JavaScript. */ function JSConsist() { if ($this->required) { echo <<<END if (frm.{$this->name_form}.value == "") errors += " * {$this->label}\\n"; END; } } /** * Test the field consistency. * * @param string $field The data from the field to be tested. * @return bool Returns TRUE if the field is consistent, FALSE otherwise. */ function ConsistTest(&$field) { if ($this->required && empty($field)) return FALSE; return TRUE; } /** * Format the field for database insertion. * * @param string $field The data from the field to be formated. * @return string Returns the formated field. */ function ConsistFormat(&$field) { if (strstr($field, '__VORTEX_PASS__') !== FALSE) { $tmp = substr($field, 15); return "'".$this->db->AddSlashes($tmp)."'"; } else { return "{$this->enc}('".$this->db->AddSlashes($field)."')"; } } } ?> |
From: Thiago R. <nop...@us...> - 2006-08-06 16:20:53
|
Update of /cvsroot/phpvortex/phpvortex In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13540 Modified Files: TB_Base.class.php Added Files: FT_File.class.php Log Message: Added a FT_File class --- NEW FILE: FT_File.class.php --- <?php /** * File for class FT_File. * * @package Vortex * @subpackage DB * @author Thiago Ramon Gonçalves Montoya * @copyright Copyright 2004, Thiago Ramon Gonçalves Montoya * @license http://opensource.org/licenses/lgpl-license.php GNU Lesser General Public License */ /** Require the base class */ require_once('FT_Base.class.php'); /** * Database field, uploaded file stored in the FS. * * @package Vortex * @subpackage DB */ class FT_File extends FT_Base { /** * Where to move the uploaded file. * * @var string */ var $path = '.'; /** * Permission for the new file. * * @var int */ var $mode = 0664; /** * Delete the old file if a new is uploaded? * * @var bool */ var $delete_old = TRUE; /** * Rename file at upload? * * @var bool */ var $rename = FALSE; /** * Name for the new uploaded file, you can use the following macros: * %name% - Old file name, without extension. * %ext% - Old file extension. * %d% - day (01-31). * %m% - month (01-12). * %y% - year (1900-2999). * %h% - hour (00-23). * %i% - minute (00-59). * %s% - second (00-59). * %r% - random number (0-9999). * * @var string */ var $rename_mask = '%name%_%y%_%m%_%d%_%h%_%i%_%s%_%r%.%ext%'; /** * Overwrite file if exists? * If file exists and overwrite is FALSE, the file is renamed. * * @var bool */ var $overwrite = FALSE; /** * Allowed extensions, separated by ':', or empty if any. * * @var string */ var $allowed_extensions = ''; /** * Denied extensions, separated by ':', or empty if none. * * @var string */ var $denied_extensions = 'php:php3:php4:phtml'; /** * Output the field as a HTML Form. * * @param string $value Value to load the control with. */ function ShowForm($value, $origin = FT_OR_DB) { echo (empty($value)?'':"<font size='-2'>($value)</font> ")."<input type='file' name='{$this->name_form}' /><input type='hidden' name='{$this->name_form}_old_name' value='$value' />"; } /** * Output the field consistency testing in JavaScript. */ function JSConsist() { if ($this->required) { echo <<<END if (frm.{$this->name_form}.value == "") errors += " * {$this->label}\\n"; END; } } /** * Extract the field from $vars, test the field consistency and return it ready for database insertion. * * @param array $vars Array containing the FORM data (usually $_POST). * @return string Returns a string containing the parsed field data, or FALSE if the field is invalid. */ function Consist(&$vars) { if (!isset($_FILES[$this->name_form])) { if ($this->required) { return FALSE; } else { return "'".$this->default."'"; } } $file =& $_FILES[$this->name_form]; if (empty($file['name'])) return "'".$vars[$this->name_form.'_old_name']."'"; $ext = substr(strrchr($file['name'], "."), 1); $fn = substr($file['name'], 0, -1 * (strlen($ext) + 1)); if (!empty($this->allowed_extensions)) { $ae = explode(':', $this->allowed_extensions); if (!in_array($ext, $ae)) return FALSE; } if (!empty($this->denied_extensions)) { $de = explode(':', $this->denied_extensions); if (in_array($ext, $de)) return FALSE; } $path = realpath($this->path); if ($this->delete_old && !empty($var[$this->name_form.'_old_name']) && file_exists($path.DIRECTORY_SEPARATOR.$var[$this->name_form.'_old_name'])) unlink($path.DIRECTORY_SEPARATOR.$var[$this->name_form.'_old_name']); $name = $file['name']; if ($this->rename || file_exists($path.DIRECTORY_SEPARATOR.$name) && !$this->overwrite) { $ra = array('%name%' => $fn, '%ext%' => $ext, '%r%' => rand(0, 9999)); list($ra['%d%'], $ra['%m%'], $ra['%y%'], $ra['%h%'], $ra['%i%'], $ra['%s%']) = explode(':', date('d:m:Y:H:i:s')); $name = strtr($this->rename_mask, $ra); if (file_exists($path.DIRECTORY_SEPARATOR.$name) && !$this->overwrite) { if (strpos($this->rename_mask, '%r%') !== FALSE) { while (file_exists($path.DIRECTORY_SEPARATOR.$name)) { $ra = array('%name%' => $fn, '%ext%' => $ext, '%r%' => rand(0, 9999)); list($ra['%d%'], $ra['%m%'], $ra['%y%'], $ra['%h%'], $ra['%i%'], $ra['%s%']) = explode(':', date('d:m:Y:H:i:s')); $name = strtr($this->rename_mask, $ra); } } else { return FALSE; } } } if (!move_uploaded_file($file['tmp_name'], $path.DIRECTORY_SEPARATOR.$name)) return FALSE; chmod($path.DIRECTORY_SEPARATOR.$name, $this->mode); if (!empty($GLOBALS['debug'])) { dv(1, 'PATH', $path); dv(1, 'NAME', $name); } return "'$name'"; } } ?> Index: TB_Base.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/TB_Base.class.php,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** TB_Base.class.php 29 Sep 2005 20:23:17 -0000 1.15 --- TB_Base.class.php 6 Aug 2006 16:20:48 -0000 1.16 *************** *** 202,206 **** $where .= (strlen($where)?' AND ':'').$field->Where($value); } else { ! isset($data[$field->name_form]) and $values[$field->name_db] = $value; } } --- 202,206 ---- $where .= (strlen($where)?' AND ':'').$field->Where($value); } else { ! $values[$field->name_db] = $value; } } *************** *** 407,411 **** </script> <table> ! <form name="{$name}" action="{$action}" method="post" onSubmit="return Submit_{$name}(this);"> <tbody> END; --- 407,411 ---- </script> <table> ! <form name="{$name}" action="{$action}" method="post" enctype="multipart/form-data" onSubmit="return Submit_{$name}(this);"> <tbody> END; |
From: Thiago R. <nop...@us...> - 2006-08-06 14:21:18
|
Update of /cvsroot/phpvortex/phpvortex In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2604 Modified Files: URL.class.php Log Message: Small bug fixes Index: URL.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/URL.class.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** URL.class.php 7 Oct 2004 17:43:02 -0000 1.2 --- URL.class.php 6 Aug 2006 14:21:08 -0000 1.3 *************** *** 74,78 **** $pieces = array(); foreach ($this->parameters as $key => $value) $pieces[] = "$key=$value"; ! $url .= '?'.implode('&',$pieces); } return $url; --- 74,78 ---- $pieces = array(); foreach ($this->parameters as $key => $value) $pieces[] = "$key=$value"; ! $url .= '?'.implode('&',$pieces); } return $url; |
From: Thiago R. <nop...@us...> - 2006-08-06 14:19:46
|
Update of /cvsroot/phpvortex/phpvortex In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2152 Modified Files: FT_DateTime.class.php Log Message: PHP 5 compatibility fixes Index: FT_DateTime.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/FT_DateTime.class.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** FT_DateTime.class.php 29 Sep 2005 20:23:17 -0000 1.2 --- FT_DateTime.class.php 6 Aug 2006 14:19:43 -0000 1.3 *************** *** 31,43 **** define('FT_DATETIME', 3); ! function array_combine ($keys, $values) { ! if ( (count($keys) === count($values)) && (count($keys) > 0 && count($values) > 0) ) { ! $keys = array_values($keys); ! $values = array_values($values); ! for (@$i = 0; $i < count($values); $i++) ! @$return[$keys[$i]] =& $values[$i]; ! return $return; ! } else { ! return false; } } --- 31,45 ---- define('FT_DATETIME', 3); ! if (!function_exists('array_combine')) { ! function array_combine ($keys, $values) { ! if ( (count($keys) === count($values)) && (count($keys) > 0 && count($values) > 0) ) { ! $keys = array_values($keys); ! $values = array_values($values); ! for (@$i = 0; $i < count($values); $i++) ! @$return[$keys[$i]] =& $values[$i]; ! return $return; ! } else { ! return false; ! } } } |
From: Thiago R. <nop...@us...> - 2005-09-29 20:23:26
|
Update of /cvsroot/phpvortex/phpvortex In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8777 Modified Files: DB_Base.class.php DB_PostgreSQL.class.php FT_Base.class.php FT_DateTime.class.php FT_Hidden.class.php FT_List.class.php FT_ListArray.class.php FT_Text.class.php RS_PostgreSQL.class.php SEC_Edit.class.php TB_Base.class.php Log Message: Added a Select function to DB_Base class, changed other classes to use it and fixed some assorted bugs. Index: FT_Text.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/FT_Text.class.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** FT_Text.class.php 5 Oct 2004 19:35:09 -0000 1.4 --- FT_Text.class.php 29 Sep 2005 20:23:17 -0000 1.5 *************** *** 47,51 **** * @param string $value Value to load the control with. */ ! function ShowForm($value) { if ($this->rows > 1) { --- 47,51 ---- * @param string $value Value to load the control with. */ ! function ShowForm($value, $origin = FT_OR_DB) { if ($this->rows > 1) { *************** *** 61,65 **** * @param string $value Value to load the control with. */ ! function ShowPlain($value) { echo nl2br($value); --- 61,65 ---- * @param string $value Value to load the control with. */ ! function ShowPlain($value, $origin = FT_OR_DB) { echo nl2br($value); Index: FT_ListArray.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/FT_ListArray.class.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** FT_ListArray.class.php 20 Oct 2004 20:10:18 -0000 1.1 --- FT_ListArray.class.php 29 Sep 2005 20:23:17 -0000 1.2 *************** *** 42,46 **** * @param string $value Value to load the control with. */ ! function ShowForm($value) { global $vortex_msgs; --- 42,46 ---- * @param string $value Value to load the control with. */ ! function ShowForm($value, $origin = FT_OR_DB) { global $vortex_msgs; *************** *** 59,63 **** * @param string $value Value to load the control with. */ ! function ShowPlain($value) { echo $this->list_array[$value]; --- 59,63 ---- * @param string $value Value to load the control with. */ ! function ShowPlain($value, $origin = FT_OR_DB) { echo $this->list_array[$value]; Index: FT_Base.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/FT_Base.class.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** FT_Base.class.php 4 Oct 2004 21:13:08 -0000 1.9 --- FT_Base.class.php 29 Sep 2005 20:23:17 -0000 1.10 *************** *** 100,104 **** * @param bool $form Show field as a INPUT object? */ ! function Show(&$data, $form = TRUE) { if (empty($data) || !isset($data[$this->name_db])) { --- 100,104 ---- * @param bool $form Show field as a INPUT object? */ ! function Show(&$data, $form = TRUE, $origin = FT_OR_DB) { if (empty($data) || !isset($data[$this->name_db])) { *************** *** 109,117 **** if ($form) { echo "<tr class='ft_{$this->name}'><th>".$this->label.'</th><td>'; ! $this->ShowForm($value); echo "</td></tr>\n"; } else { echo $this->label.': '; ! $this->ShowPlain($value); } } --- 109,117 ---- if ($form) { echo "<tr class='ft_{$this->name}'><th>".$this->label.'</th><td>'; ! $this->ShowForm($value, $origin); echo "</td></tr>\n"; } else { echo $this->label.': '; ! $this->ShowPlain($value, $origin); } } *************** *** 123,127 **** * @param string $value Value to load the control with. */ ! function ShowForm($value) { } --- 123,127 ---- * @param string $value Value to load the control with. */ ! function ShowForm($value, $origin = FT_OR_DB) { } *************** *** 132,136 **** * @param string $value Value to load the control with. */ ! function ShowPlain($value) { echo $value; --- 132,136 ---- * @param string $value Value to load the control with. */ ! function ShowPlain($value, $origin = FT_OR_DB) { echo $value; Index: DB_Base.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/DB_Base.class.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** DB_Base.class.php 5 Oct 2004 19:02:33 -0000 1.8 --- DB_Base.class.php 29 Sep 2005 20:23:17 -0000 1.9 *************** *** 86,89 **** --- 86,127 ---- /** + * Execute a SELECT query at the database. + * + * @param array $opts Parameters to the SELECT query, as 'option' => 'value'. + * @return RS_Base Returns a RecordSet object if there is a result to the query or FALSE if a error occurred. + */ + function &Select($opts = array()) + { + $sel = "SELECT "; + if (isset($opts['distinct'])) $sel .= "DISTINCT "; + if (isset($opts['fields'])) { + $fl = ''; + foreach ($opts['fields'] as $a => $f) if (is_int($a)) { + $fl .= (strlen($fl)?', ':'') . $f; + } else { + $fl .= (strlen($fl)?', ':'') . $f . ' as ' . $a; + } + $sel .= $fl . ' '; + } else { + $sel .= "* "; + } + if (isset($opts['from'])) { + $fl = ''; + foreach ($opts['from'] as $a => $f) if (is_int($a)) { + $fl .= (strlen($fl)?', ':'') . $f; + } else { + $fl .= (strlen($fl)?', ':'') . $f . ' as ' . $a; + } + $sel .= "FROM $fl "; + } + if (isset($opts['where'])) $sel .= "WHERE {$opts['where']} "; + if (isset($opts['group'])) $sel .= "GROUP BY {$opts['group']} "; + if (isset($opts['having'])) $sel .= "HAVING {$opts['having']} "; + if (isset($opts['order'])) $sel .= "ORDER BY {$opts['order']} "; + if (!empty($GLOBALS['debug'])) dv(3, 'SELECT SQL', $sel); + return $this->Query($sel); + } + + /** * Execute a INSERT INTO query at the database. * *************** *** 101,105 **** } $sql = "INSERT INTO $table ($fl) VALUES ($vl)"; ! if (!empty($debug)) dv(3, 'INSERT SQL', $sql); return $this->Query($sql); } --- 139,143 ---- } $sql = "INSERT INTO $table ($fl) VALUES ($vl)"; ! if (!empty($GLOBALS['debug'])) dv(3, 'INSERT SQL', $sql); return $this->Query($sql); } *************** *** 120,124 **** } $sql = "UPDATE $table SET $sl WHERE $where"; ! if (!empty($debug)) dv(3, 'UPDATE SQL', $sql); return $this->Query($sql); } --- 158,162 ---- } $sql = "UPDATE $table SET $sl WHERE $where"; ! if (!empty($GLOBALS['debug'])) dv(3, 'UPDATE SQL', $sql); return $this->Query($sql); } *************** *** 134,138 **** { $sql = "DELETE FROM $table WHERE $where"; ! if (!empty($debug)) dv(3, 'DELETE SQL', $sql); return $this->Query($sql); } --- 172,176 ---- { $sql = "DELETE FROM $table WHERE $where"; ! if (!empty($GLOBALS['debug'])) dv(3, 'DELETE SQL', $sql); return $this->Query($sql); } Index: FT_List.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/FT_List.class.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** FT_List.class.php 20 Oct 2004 20:10:18 -0000 1.2 --- FT_List.class.php 29 Sep 2005 20:23:17 -0000 1.3 *************** *** 75,85 **** * @param string $value Value to load the control with. */ ! function ShowForm($value) { global $vortex_msgs; ! $sql = "SELECT {$this->rel_key}, {$this->rel_label} FROM {$this->rel_table}".(empty($this->rel_order)?'':" ORDER BY {$this->rel_order}"); ! if (!empty($debug)) dv(3, 'FT_List::ShowForm() SELECT', $sql); ! if (!($rs = $this->db->Query($sql))) { return; } --- 75,88 ---- * @param string $value Value to load the control with. */ ! function ShowForm($value, $origin = FT_OR_DB) { global $vortex_msgs; ! $sel = array( ! 'fields' => array($this->rel_key, $this->rel_label), ! 'from' => array($this->rel_table) ! ); ! if (!empty($this->rel_order)) $sel['order'] = $this->rel_order; ! if (!($rs = $this->db->Select($sel))) { return; } *************** *** 87,91 **** echo "\t<option value='-1'".((-1 == $value)?' selected':'').">{$vortex_msgs['list_default']}</option>\n"; while ($row = $rs->Row()) { ! echo "\t<option value='{$row['$this->rel_key']}'".(($this->rel_key == $value)?' selected':'').">{$this->rel_label}</option>\n"; } echo "</select>\n"; --- 90,94 ---- echo "\t<option value='-1'".((-1 == $value)?' selected':'').">{$vortex_msgs['list_default']}</option>\n"; while ($row = $rs->Row()) { ! echo "\t<option value='{$row[$this->rel_key]}'".(($row[$this->rel_key] == $value)?' selected':'').">{$row[$this->rel_label]}</option>\n"; } echo "</select>\n"; *************** *** 97,105 **** * @param string $value Value to load the control with. */ ! function ShowPlain($value) { ! $sql = "SELECT {$this->rel_label} FROM {$this->rel_table} WHERE {$this->rel_key} = $value"; ! if (!empty($debug)) dv(3, 'FT_List::ShowPlain() SELECT', $sql); ! if (!($rs = $this->db->Query($sql))) { return; } --- 100,106 ---- * @param string $value Value to load the control with. */ ! function ShowPlain($value, $origin = FT_OR_DB) { ! if (!($rs = $this->db->Select(array('from' => array($this->rel_table), 'fields' => array($this->rel_label), 'where' => "{$this->rel_key} = $value")))) { return; } Index: RS_PostgreSQL.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/RS_PostgreSQL.class.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** RS_PostgreSQL.class.php 28 Sep 2005 19:04:21 -0000 1.1 --- RS_PostgreSQL.class.php 29 Sep 2005 20:23:17 -0000 1.2 *************** *** 42,56 **** function Row($row = -1, $type = RS_ROW_ASSOC) { ! if ($row != -1) $this->row = $row; $this->row++; switch ($type) { case RS_ROW_NUM: ! return pg_fetch_row($this->result, $this->row - 1); break; case RS_ROW_ASSOC: ! return pg_fetch_assoc($this->result, $this->row - 1); break; case RS_ROW_BOTH: ! return pg_fetch_array($this->result, $this->row - 1); break; } --- 42,70 ---- function Row($row = -1, $type = RS_ROW_ASSOC) { ! if ($row != -1) { ! $this->row = $row + 1; ! switch ($type) { ! case RS_ROW_NUM: ! return pg_fetch_row($this->result, $this->row - 1); ! break; ! case RS_ROW_ASSOC: ! return pg_fetch_assoc($this->result, $this->row - 1); ! break; ! case RS_ROW_BOTH: ! return pg_fetch_array($this->result, $this->row - 1); ! break; ! } ! return FALSE; ! } $this->row++; switch ($type) { case RS_ROW_NUM: ! return pg_fetch_row($this->result); break; case RS_ROW_ASSOC: ! return pg_fetch_assoc($this->result); break; case RS_ROW_BOTH: ! return pg_fetch_array($this->result); break; } *************** *** 67,71 **** { $this->row = $row; ! return TRUE; } --- 81,89 ---- { $this->row = $row; ! if (pg_result_seek($this->result, $row) === FALSE) { ! return FALSE; ! } else { ! return TRUE; ! } } Index: FT_DateTime.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/FT_DateTime.class.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** FT_DateTime.class.php 24 Apr 2005 21:38:02 -0000 1.1 --- FT_DateTime.class.php 29 Sep 2005 20:23:17 -0000 1.2 *************** *** 102,108 **** * @param string $value Value to load the control with. */ ! function ShowForm($value) { ! echo "<input type='text' name='{$this->name_form}' value='".($this->ConsistTest($value)?date($this->format, strtotime($value)):$value)."' />"; } --- 102,112 ---- * @param string $value Value to load the control with. */ ! function ShowForm($value, $origin = FT_OR_DB) { ! if ($origin == FT_OR_DB) { ! echo "<input type='text' name='{$this->name_form}' value='".($this->ConsistTest($value)?date($this->format, strtotime($value)):$value)."' />"; ! } else { ! echo "<input type='text' name='{$this->name_form}' value='$value' />"; ! } } *************** *** 112,118 **** * @param string $value Value to load the control with. */ ! function ShowPlain($value) { ! echo (empty($value)?'':date($this->format, strtotime($value))); } --- 116,126 ---- * @param string $value Value to load the control with. */ ! function ShowPlain($value, $origin = FT_OR_DB) { ! if ($origin == FT_OR_DB) { ! echo (empty($value)?'':date($this->format, strtotime($value))); ! } else { ! echo (empty($value)?'':$value); ! } } Index: DB_PostgreSQL.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/DB_PostgreSQL.class.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** DB_PostgreSQL.class.php 28 Sep 2005 19:04:21 -0000 1.1 --- DB_PostgreSQL.class.php 29 Sep 2005 20:23:17 -0000 1.2 *************** *** 53,56 **** --- 53,57 ---- function &Query($sql) { + if (!empty($GLOBALS['debug'])) dv(5, 'QUERY SQL', $sql); $rs = pg_query($this->link, $sql); if ($rs === FALSE) { Index: FT_Hidden.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/FT_Hidden.class.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** FT_Hidden.class.php 7 Oct 2004 21:19:44 -0000 1.1 --- FT_Hidden.class.php 29 Sep 2005 20:23:17 -0000 1.2 *************** *** 27,31 **** * @param bool $form Show field as a INPUT object? */ ! function Show(&$data, $form = TRUE) { if (empty($data) || !isset($data[$this->name_db])) { --- 27,31 ---- * @param bool $form Show field as a INPUT object? */ ! function Show(&$data, $form = TRUE, $origin = FT_OR_DB) { if (empty($data) || !isset($data[$this->name_db])) { *************** *** 35,41 **** } if ($form) { ! $this->ShowForm($value); } else { ! $this->ShowPlain($value); } } --- 35,41 ---- } if ($form) { ! $this->ShowForm($value, $origin); } else { ! $this->ShowPlain($value, $origin); } } *************** *** 46,50 **** * @param string $value Value to load the control with. */ ! function ShowForm($value) { echo "<input type='hidden' name='{$this->name_form}' value='$value' />"; --- 46,50 ---- * @param string $value Value to load the control with. */ ! function ShowForm($value, $origin = FT_OR_DB) { echo "<input type='hidden' name='{$this->name_form}' value='$value' />"; Index: SEC_Edit.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/SEC_Edit.class.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** SEC_Edit.class.php 28 Sep 2005 19:05:06 -0000 1.3 --- SEC_Edit.class.php 29 Sep 2005 20:23:17 -0000 1.4 *************** *** 31,34 **** --- 31,40 ---- /** + * DB connection. + * @var DB_Base + */ + var $db = NULL; + + /** * Specify a table class to instantiate. * *************** *** 170,175 **** if (!empty($this->table_class)) { include_once($this->table_class.'.class.php'); ! $this->table =& new $this->table_class($this->table_opts); ! ); // See what to do and perform the action --- 176,181 ---- if (!empty($this->table_class)) { include_once($this->table_class.'.class.php'); ! $this->table =& new $this->table_class($this->db, $this->table_opts); ! } // See what to do and perform the action *************** *** 193,201 **** ) ); ! if (!(empty($_REQUEST["{$this->table->name}_action"]) || strcmp($_REQUEST["{$this->table->name}_action"], 'F'))) { ! $opts['data'] = array(); ! foreach ($this->table->fields_form as $field) { ! if (!empty($_REQUEST[$field->name_form])) $opts['data'][$field->name_form] = $_REQUEST[$field->name_form]; ! } } --- 199,204 ---- ) ); ! if (isset($_SESSION['vortex_find_'.$this->table->name])) { ! $opts['data'] = $_SESSION['vortex_find_'.$this->table->name]; } *************** *** 228,232 **** 'code' => "<div class='div_error'>{$vortex_errors[TB_ERR_INCONSIST]}</div>" )); ! $this->table->LoadForm($_REQUEST); break; default: --- 231,235 ---- 'code' => "<div class='div_error'>{$vortex_errors[TB_ERR_INCONSIST]}</div>" )); ! $this->table->LoadForm($_REQUEST, FT_OR_USER); break; default: *************** *** 239,246 **** --- 242,254 ---- } elseif (!strcmp($action, 'F')) { $this->table->Seek($_REQUEST); + $_SESSION['vortex_find_'.$this->table->name] = array(); + foreach ($this->table->fields_form as $field) { + if (isset($_REQUEST[$field->name_form]) && ($_REQUEST[$field->name_form] != $field->default)) $_SESSION['vortex_find_'.$this->table->name][$field->name_form] = $_REQUEST[$field->name_form]; + } } elseif (!strcmp($action, 'N')) { $this->table->Seek(); } elseif (!strcmp($action, 'R')) { $this->table->Seek(); + unset($_SESSION['vortex_find_'.$this->table->name]); } elseif (!strcmp($action, 'D')) { if ($this->table->Delete($_REQUEST)) { *************** *** 281,284 **** --- 289,296 ---- } elseif (!strcmp($button, 'R')) { $url =& new URL(); + foreach ($this->table->fields as $field) if ($field->pkey) { + unset($url->parameters[$field->name_db]); + } + unset($url->parameters["page_{$this->table->name}"]); $url->parameters["{$this->table->name}_action"] = 'R'; $code .= "<script language='JavaScript'>\n\tfunction {$this->table->name}_Reset() {\n\t\tdocument.form_{$this->table->name}.action = '".$url->Get()."';\n\t\tdocument.form_{$this->table->name}.submit();\n\t}\n</script>\n"; *************** *** 308,311 **** --- 320,324 ---- } elseif (!strcmp($button, 'F')) { $url =& new URL(); + unset($url->parameters["page_{$this->table->name}"]); $url->parameters["{$this->table->name}_action"] = 'F'; $code .= "<script language='JavaScript'>\n\tfunction {$this->table->name}_Find() {\n\t\tdocument.form_{$this->table->name}.action = '".$url->Get()."';\n\t\tdocument.form_{$this->table->name}.submit();\n\t}\n</script>\n"; Index: TB_Base.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/TB_Base.class.php,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** TB_Base.class.php 8 Oct 2004 17:14:47 -0000 1.14 --- TB_Base.class.php 29 Sep 2005 20:23:17 -0000 1.15 *************** *** 92,101 **** /** * Constructor: Init the object, and define the table's fields and relationships. * * @param DB_Base $db Database where the table is. */ ! function TB_Base(&$db) { $this->db =& $db; is_null($this->name_db) and $this->name_db = $this->name; --- 92,113 ---- /** + * Origin of $data. + * @var int + */ + var $data_origin = FT_OR_DB; + + /** * Constructor: Init the object, and define the table's fields and relationships. * * @param DB_Base $db Database where the table is. + * @param array $opts Parameters for the object, as 'var' => 'value'. */ ! function TB_Base(&$db, $opts = array()) { + $keys = array_keys($opts); + foreach ($keys as $key) { + $this->$key =& $opts[$key]; + } + $this->db =& $db; is_null($this->name_db) and $this->name_db = $this->name; *************** *** 136,142 **** return FALSE; } ! $sql = "SELECT * FROM {$this->name_db} WHERE $where"; ! if (!empty($debug)) dv(3, 'SEEK SELECT', $sql); ! if (!($rs = $this->db->Query($sql))) { $this->data = array(); $this->error = TB_ERR_DB; --- 148,152 ---- return FALSE; } ! if (!($rs = $this->db->Select(array('from' => array($this->name_db), 'where' => $where)))) { $this->data = array(); $this->error = TB_ERR_DB; *************** *** 157,161 **** * @param array $data Array containing the data to load as 'field' => 'value'. */ ! function LoadForm($data) { $this->data = array(); --- 167,171 ---- * @param array $data Array containing the data to load as 'field' => 'value'. */ ! function LoadForm($data, $origin = FT_OR_DB) { $this->data = array(); *************** *** 163,166 **** --- 173,177 ---- if (isset($data[$field->name_form])) $this->data[$field->name_db] = $data[$field->name_form]; } + $this->data_origin = $origin; } *************** *** 181,184 **** --- 192,199 ---- foreach ($this->fields as $field) { if (($value = $field->Consist($data)) === FALSE) { + if (!empty($GLOBALS['debug'])) { + dv(1, 'INCONSISTENT FIELD', $field); + dv(1, 'DATA', $data); + } $this->error = TB_ERR_INCONSIST; return FALSE; *************** *** 205,209 **** return FALSE; } ! if (!($rs = $this->db->Query("SELECT COUNT(*) AS cnt FROM {$this->name_db} WHERE $where"))) { $this->error = TB_ERR_DB; return FALSE; --- 220,224 ---- return FALSE; } ! if (!($rs = $this->db->Select(array('fields' => array('cnt' => 'COUNT(*)'), 'from' => array($this->name_db), 'where' => $where)))) { $this->error = TB_ERR_DB; return FALSE; *************** *** 268,279 **** function ShowList($url = NULL, $page = -1, $data = NULL) { ! $fields = ''; foreach ($this->fields_list as $field) { ! $fields .= (strlen($fields)?', ':'').$field->name_db; } foreach ($this->fields as $field) if ($field->pkey) { ! $fields .= (strlen($fields)?', ':'').$field->name_db; } - $sql = "SELECT $fields FROM {$this->name_db}"; if (!empty($data)) { $where = ''; --- 283,295 ---- function ShowList($url = NULL, $page = -1, $data = NULL) { ! $sel = array( ! 'from' => array($this->name_db) ! ); foreach ($this->fields_list as $field) { ! $sel['fields'][] = $field->name_db; } foreach ($this->fields as $field) if ($field->pkey) { ! $sel['fields'][] = $field->name_db; } if (!empty($data)) { $where = ''; *************** *** 281,296 **** if (isset($data[$field->name_form])) $where .= (strlen($where)?' AND ':'').$field->Where($data[$field->name_form]); } ! if (strlen($where)) $sql .= " WHERE $where"; } ! if (!empty($this->list_order)) $sql .= " ORDER BY {$this->list_order}"; ! if ($page >= 0) $sql .= ' LIMIT '.($this->list_recspage * $page).", {$this->list_recspage}"; ! if (!empty($debug)) dv(3, "ShowList SELECT", $sql); ! if (!($rs = $this->db->Query($sql))) { $this->error = TB_ERR_DB; return FALSE; } ! if (!($rows = $rs->All())) { ! $this->error = TB_ERR_EMPTY; ! return FALSE; } echo "<div class='div_list'><table id='tb_{$this->name}'>\n<thead><tr>\n"; --- 297,318 ---- if (isset($data[$field->name_form])) $where .= (strlen($where)?' AND ':'').$field->Where($data[$field->name_form]); } ! if (strlen($where)) $sel['where'] = $where; } ! if (!empty($this->list_order)) $sel['order'] = $this->list_order; ! if (!($rs = $this->db->Select($sel))) { $this->error = TB_ERR_DB; return FALSE; } ! if ($page >= 0) { ! if ($page > 0) $rs->SetRow($this->list_recspage * $page); ! $rows = array(); ! for ($i = 0; $i < $this->list_recspage; $i++) { ! if (!($rows[] = $rs->Row())) break; ! } ! } else { ! if (!($rows = $rs->All())) { ! $this->error = TB_ERR_EMPTY; ! return FALSE; ! } } echo "<div class='div_list'><table id='tb_{$this->name}'>\n<thead><tr>\n"; *************** *** 299,303 **** } echo "</tr></thead>\n<tbody>\n"; ! foreach ($rows as $row) { echo "<tr>\n"; if (!empty($url)) { --- 321,325 ---- } echo "</tr></thead>\n<tbody>\n"; ! foreach ($rows as $row) if (!empty($row)) { echo "<tr>\n"; if (!empty($url)) { *************** *** 327,331 **** function NumPages($data = NULL) { ! $sql = "SELECT COUNT(*) as cnt FROM {$this->name_db}"; if (!empty($data)) { $where = ''; --- 349,356 ---- function NumPages($data = NULL) { ! $sel = array( ! 'fields' => array('cnt' => 'COUNT(*)'), ! 'from' => array($this->name_db) ! ); if (!empty($data)) { $where = ''; *************** *** 333,340 **** if (isset($data[$field->name_form])) $where .= (strlen($where)?' AND ':'').$field->Where($data[$field->name_form]); } ! if (strlen($where)) $sql .= " WHERE $where"; } ! if (!empty($debug)) dv(3, "NumPages SELECT", $sql); ! if (!($rs = $this->db->Query($sql))) { $this->error = TB_ERR_DB; return FALSE; --- 358,364 ---- if (isset($data[$field->name_form])) $where .= (strlen($where)?' AND ':'').$field->Where($data[$field->name_form]); } ! if (strlen($where)) $sel['where'] = $where; } ! if (!($rs = $this->db->Select($sel))) { $this->error = TB_ERR_DB; return FALSE; *************** *** 387,394 **** END; foreach ($this->fields as $field) if ($field->pkey) { ! $field->Show($this->data); } foreach ($this->fields_form as $field) { ! $field->Show($this->data); } echo "<tr class='submit' id='submit_$name'><td colspan='2'>".(empty($submit)?"<input type='submit' /> <input type='reset' />":$submit)."</td></tr>"; --- 411,418 ---- END; foreach ($this->fields as $field) if ($field->pkey) { ! $field->Show($this->data, TRUE, $this->data_origin); } foreach ($this->fields_form as $field) { ! $field->Show($this->data, TRUE, $this->data_origin); } echo "<tr class='submit' id='submit_$name'><td colspan='2'>".(empty($submit)?"<input type='submit' /> <input type='reset' />":$submit)."</td></tr>"; |
From: Thiago R. <nop...@us...> - 2005-09-29 20:23:25
|
Update of /cvsroot/phpvortex/phpvortex/conf In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8777/conf Modified Files: conf.php Log Message: Added a Select function to DB_Base class, changed other classes to use it and fixed some assorted bugs. Index: conf.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/conf/conf.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** conf.php 27 Oct 2004 14:10:46 -0000 1.5 --- conf.php 29 Sep 2005 20:23:17 -0000 1.6 *************** *** 40,43 **** --- 40,53 ---- */ define('TB_ERR_DB', 4); + /** + * Field origin is from DataBase. + * Used by {@link FT_Base::ShowForm()} and {@link FT_Base::ShowPlain()}. + */ + define('FT_OR_DB', 1); + /** + * Field origin is from User. + * Used by {@link FT_Base::ShowForm()} and {@link FT_Base::ShowPlain()}. + */ + define('FT_OR_USER', 2); /** require one of the localized message files */ |
From: Thiago R. <nop...@us...> - 2005-09-28 19:05:17
|
Update of /cvsroot/phpvortex/phpvortex In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27575 Modified Files: SEC_Edit.class.php Log Message: Added automatic instantiation of TB classes. Index: SEC_Edit.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/SEC_Edit.class.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** SEC_Edit.class.php 24 Apr 2005 21:37:28 -0000 1.2 --- SEC_Edit.class.php 28 Sep 2005 19:05:06 -0000 1.3 *************** *** 31,34 **** --- 31,48 ---- /** + * Specify a table class to instantiate. + * + * @var string + */ + var $table_class = ''; + + /** + * Specify options to the $table_class instance. + * + * @var array + */ + var $table_opts = array(); + + /** * Form class to use. * *************** *** 153,156 **** --- 167,176 ---- parent::SEC_Base($opts); + // Load Table class if requested + if (!empty($this->table_class)) { + include_once($this->table_class.'.class.php'); + $this->table =& new $this->table_class($this->table_opts); + ); + // See what to do and perform the action if (!empty($_REQUEST["{$this->table->name}_action"])) { |
From: Thiago R. <nop...@us...> - 2005-09-28 19:04:32
|
Update of /cvsroot/phpvortex/phpvortex In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27401 Added Files: DB_PostgreSQL.class.php RS_PostgreSQL.class.php Log Message: Added PostgreSQL DB Class --- NEW FILE: RS_PostgreSQL.class.php --- <?php /** * File for class RS_PostgreSQL. * * @package Vortex * @subpackage DB * @author Thiago Ramon Gonçalves Montoya * @copyright Copyright 2005, Thiago Ramon Gonçalves Montoya * @license http://opensource.org/licenses/lgpl-license.php GNU Lesser General Public License */ /** Require the base class */ require_once('RS_Base.class.php'); /** * Class for PostgreSQL RecordSets. * * @package Vortex * @subpackage DB */ class RS_PostgreSQL extends RS_Base { /** * Get the count of rows in the RecordSet. * * @return int Returns the number of rows in the RecordSet. */ function RowCount() { return pg_num_rows($this->result); } /** * Get a row from the RecordSet. * * Case $row is set, return that row, case else, return the next row. * * @param int $row Row to return, defaults to next. * @param int $type Type of array to return (RS_ROW_NUM | RS_ROW_ASSOC | RS_ROW_BOTH). * @return array Returns the row from the RecordSet, or FALSE if EOF. */ function Row($row = -1, $type = RS_ROW_ASSOC) { if ($row != -1) $this->row = $row; $this->row++; switch ($type) { case RS_ROW_NUM: return pg_fetch_row($this->result, $this->row - 1); break; case RS_ROW_ASSOC: return pg_fetch_assoc($this->result, $this->row - 1); break; case RS_ROW_BOTH: return pg_fetch_array($this->result, $this->row - 1); break; } return FALSE; } /** * Go to a row int the RecordSet. * * @param int $row Row to go to. * @return bool Returns TRUE on success, FALSE if failed. */ function SetRow($row = 0) { $this->row = $row; return TRUE; } /** * Get all rows from the RecordSet. * * @param int $type Type of array to return (RS_ROW_NUM | RS_ROW_ASSOC | RS_ROW_BOTH). * @return array Returns all the rows from the RecordSet. */ function All($type = RS_ROW_ASSOC) { $rows = array(); $this->SetRow(); while ($row = $this->Row(-1, $type)) $rows[] = $row; return $rows; } /** * Get the last auto-generated ID from the RecordSet. * * @return int Returns the last auto-generated ID from the RecordSet. */ function LastId() { return pg_last_oid($this->result); } /** * Get the last error message from the RecordSet. * * @return string Returns a string describing the last error that occurred in the RecordSet. */ function Error() { return pg_result_error($this->result); } /** * Close the RecordSet and free the memory. * * @return bool Returns TRUE if the RecordSet was closed, FALSE if it failed. */ function Close() { return pg_free_result($this->result); } } ?> --- NEW FILE: DB_PostgreSQL.class.php --- <?php /** * File for class DB_PostgreSQL. * * @package Vortex * @subpackage DB * @author Thiago Ramon Gonçalves Montoya * @copyright Copyright 2005, Thiago Ramon Gonçalves Montoya * @license http://opensource.org/licenses/lgpl-license.php GNU Lesser General Public License */ /** Require the base class */ require_once('DB_Base.class.php'); /** Require the RecordSet class header. */ require_once('RS_PostgreSQL.class.php'); /** * Class for PostgreSQL database connection. * * @package Vortex * @subpackage DB */ class DB_PostgreSQL extends DB_Base { /** * Open a new connection to the database if not already connected. * * @param bool $persist Open a persistent connection? * @return bool Returns TRUE if the connection was successfully established, FALSE if an error occurred. */ function Connect($persist=FALSE) { if (!is_null($this->link)) return FALSE; if ($persist) { $this->link = pg_pconnect("host={$this->server} user={$this->user} password={$this->pw} dbname={$this->db}"); } else { $this->link = pg_connect("host={$this->server} user={$this->user} password={$this->pw} dbname={$this->db}", PGSQL_CONNECT_FORCE_NEW); } if ($this->link !== FALSE) { return TRUE; } $this->link = NULL; return FALSE; } /** * Execute a query at the database. * * @param string $sql Query to run. * @return RS_Base Returns a RecordSet object if there is a result to the query or TRUE if it was successfull, FALSE if a error occurred. */ function &Query($sql) { $rs = pg_query($this->link, $sql); if ($rs === FALSE) { return FALSE; } return new RS_PostgreSQL($this, $rs); } /** * Close the connection to the database if still connected. * * @return bool Returns TRUE if the connection was closed, FALSE if it failed. */ function Close() { if (pg_close($this->link)) { $this->link = NULL; return TRUE; } return FALSE; } /** * Get the last error message from the connection. * * @return string Returns a string describing the last error that occurred in the connection. */ function Error() { return pg_last_error($this->link); } /** * Transactions: Begin a new transaction. * * @return bool Returns TRUE if the new transaction began, FALSE if it failed. */ function Begin() { return $this->Query('BEGIN'); } /** * Transactions: Commit a transaction. * * @return bool Returns TRUE if the transaction was commited, FALSE if it failed. */ function Commit() { return $this->Query('COMMIT'); } /** * Transactions: Rollback a transaction. * * @return bool Returns TRUE if the transaction was cancelled, FALSE if it failed. */ function Rollback() { return $this->Query('ROLLBACK'); } /** * Process a string for safe use in a database insertion. * * @param string $data The string to be processed. * @return string Returns the processed string. */ function AddSlashes($data) { return pg_escape_string($data); } } ?> |
From: Thiago R. <nop...@us...> - 2005-04-24 21:39:55
|
Update of /cvsroot/phpvortex/phpvortex/conf In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1864/conf Modified Files: lang_en.php lang_pt_br.php Log Message: Modified config files for SEC_Edit's Find and FT_DateTime Index: lang_pt_br.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/conf/lang_pt_br.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** lang_pt_br.php 13 Oct 2004 18:47:10 -0000 1.3 --- lang_pt_br.php 24 Apr 2005 21:39:32 -0000 1.4 *************** *** 16,20 **** --- 16,24 ---- $vortex_msgs['form_new'] = 'Novo'; $vortex_msgs['form_delete'] = 'Excluir'; + $vortex_msgs['form_find'] = 'Localizar'; $vortex_msgs['list_default'] = '-- Selecione --'; + $vortex_msgs['ft_date'] = 'd/m/Y'; + $vortex_msgs['ft_time'] = 'H:i:s'; + $vortex_msgs['ft_datetime'] = 'd/m/Y H:i:s'; $vortex_errors = array(); Index: lang_en.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/conf/lang_en.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** lang_en.php 13 Oct 2004 18:47:10 -0000 1.3 --- lang_en.php 24 Apr 2005 21:39:32 -0000 1.4 *************** *** 16,20 **** --- 16,24 ---- $vortex_msgs['form_new'] = 'New'; $vortex_msgs['form_delete'] = 'Delete'; + $vortex_msgs['form_find'] = 'Find'; $vortex_msgs['list_default'] = '-- Select --'; + $vortex_msgs['ft_date'] = 'm-d-Y'; + $vortex_msgs['ft_time'] = 'H:i:s'; + $vortex_msgs['ft_datetime'] = 'm-d-Y H:i:s'; $vortex_errors = array(); |
From: Thiago R. <nop...@us...> - 2005-04-24 21:38:12
|
Update of /cvsroot/phpvortex/phpvortex In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv977 Added Files: FT_DateTime.class.php Log Message: Added FT_DateTime --- NEW FILE: FT_DateTime.class.php --- <?php /** * File for class FT_DateTime. * * @package Vortex * @subpackage DB * @author Thiago Ramon Gonçalves Montoya * @copyright Copyright 2005, Thiago Ramon Gonçalves Montoya * @license http://opensource.org/licenses/lgpl-license.php GNU Lesser General Public License */ /** Require the base class */ require_once('FT_Base.class.php'); /** * Date only field. * Used in {@link FT_DateTime::$type}. */ define('FT_DATE', 1); /** * Time only field. * Used in {@link FT_DateTime::$type}. */ define('FT_TIME', 2); /** * Combined date/time field. * Used in {@link FT_DateTime::$type}. */ define('FT_DATETIME', 3); function array_combine ($keys, $values) { if ( (count($keys) === count($values)) && (count($keys) > 0 && count($values) > 0) ) { $keys = array_values($keys); $values = array_values($values); for (@$i = 0; $i < count($values); $i++) @$return[$keys[$i]] =& $values[$i]; return $return; } else { return false; } } /** * Database field, Date/Time type. * * @package Vortex * @subpackage DB */ class FT_DateTime extends FT_Base { /** * Type of the field (FT_DATE|FT_TIME|FT_DATETIME). * * @var int */ var $type = FT_DATETIME; /** * Format of the field, as in date(). * * Defaults to: * $type == FT_DATE -> $vortex_msgs['ft_date'] * $type == FT_TIME -> $vortex_msgs['ft_time'] * $type == FT_DATETIME -> $vortex_msgs['ft_datetime'] * * @var string */ var $format = NULL; /** * 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_DateTime(&$db, $opts = array()) { global $vortex_msgs; parent::FT_Base($db, $opts); if (is_null($this->format)) { switch ($this->type) { case FT_DATE: $this->format = $vortex_msgs['ft_date']; break; case FT_TIME: $this->format = $vortex_msgs['ft_time']; break; case FT_DATETIME: $this->format = $vortex_msgs['ft_datetime']; break; } } } /** * Output the field as a HTML Form. * * @param string $value Value to load the control with. */ function ShowForm($value) { echo "<input type='text' name='{$this->name_form}' value='".($this->ConsistTest($value)?date($this->format, strtotime($value)):$value)."' />"; } /** * Output the field as plain text. * * @param string $value Value to load the control with. */ function ShowPlain($value) { echo (empty($value)?'':date($this->format, strtotime($value))); } /** * Output the field consistency testing in JavaScript. */ function JSConsist() { if ($this->required) { echo <<< END if (frm.{$this->name_form}.value == "") errors += " * {$this->label}\\n"; END; } } /** * Test the field consistency. * * @param string $field The data from the field to be tested. * @return bool Returns TRUE if the field is consistent, FALSE otherwise. */ function ConsistTest(&$field) { if ($this->required && empty($field)) return FALSE; $f = preg_split('/[\s,.\/\\-:]/', strtolower($this->format), -1, PREG_SPLIT_NO_EMPTY); $v = preg_split('/[\s,.\/\\-:]/', $field, -1, PREG_SPLIT_NO_EMPTY); if (count($f) != count($v)) return FALSE; return TRUE; } /** * Format the field for database insertion. * * @param string $field The data from the field to be formated. * @return string Returns the formated field. */ function ConsistFormat(&$field) { $f = preg_split('/[\s,.\/\\-:]/', strtolower($this->format), -1, PREG_SPLIT_NO_EMPTY); $v = preg_split('/[\s,.\/\\-:]/', $field, -1, PREG_SPLIT_NO_EMPTY); if (count($f) != count($v)) return "''"; $dt = array_combine ($f, $v); switch ($this->type) { case FT_DATE: return "'".date('Y-m-d', mktime(0, 0, 0, $dt['m'], $dt['d'], $dt['y']))."'"; break; case FT_TIME: return "'".date('H:i:s', mktime($dt['h'], $dt['i'], $dt['s']))."'"; break; case FT_DATETIME: return "'".date('Y-m-d H:i:s', mktime($dt['h'], $dt['i'], $dt['s'], $dt['m'], $dt['d'], $dt['y']))."'"; break; } return "''"; } } ?> |
From: Thiago R. <nop...@us...> - 2005-04-24 21:37:37
|
Update of /cvsroot/phpvortex/phpvortex In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv760 Modified Files: SEC_Edit.class.php Log Message: Added a Find functionality to SEC_Edit, and changed the Reset functionality Index: SEC_Edit.class.php =================================================================== RCS file: /cvsroot/phpvortex/phpvortex/SEC_Edit.class.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** SEC_Edit.class.php 8 Oct 2004 17:14:47 -0000 1.1 --- SEC_Edit.class.php 24 Apr 2005 21:37:28 -0000 1.2 *************** *** 66,74 **** * <li /> 'N' = New * <li /> 'D' = Delete * </ul> * * @var string */ ! var $buttons = 'SRND'; /** --- 66,75 ---- * <li /> 'N' = New * <li /> 'D' = Delete + * <li /> 'F' = Find * </ul> * * @var string */ ! var $buttons = 'SRFND'; /** *************** *** 129,132 **** --- 130,147 ---- /** + * Text for the find button. + * + * @var string + */ + var $txt_find = ''; + + /** + * Image for the find button. + * + * @var string + */ + var $img_find = ''; + + /** * Constructor: Process form data and prepare the section to display. * *************** *** 158,161 **** --- 173,182 ---- ) ); + if (!(empty($_REQUEST["{$this->table->name}_action"]) || strcmp($_REQUEST["{$this->table->name}_action"], 'F'))) { + $opts['data'] = array(); + foreach ($this->table->fields_form as $field) { + if (!empty($_REQUEST[$field->name_form])) $opts['data'][$field->name_form] = $_REQUEST[$field->name_form]; + } + } $this->AddSection("{$this->table->name}_list", $this->list, $opts); *************** *** 172,176 **** * Perform a action. * ! * @param string $action Action to perform ('S' for INSERT/UPDATE, 'E' for edit, 'N' for new, 'D' for DELETE). */ function Perform($action) --- 193,197 ---- * Perform a action. * ! * @param string $action Action to perform ('S' for INSERT/UPDATE, 'E' for edit, 'N' for new, 'D' for DELETE, 'F' for find). */ function Perform($action) *************** *** 196,201 **** --- 217,226 ---- } elseif (!strcmp($action, 'E')) { $this->table->Seek($_REQUEST); + } elseif (!strcmp($action, 'F')) { + $this->table->Seek($_REQUEST); } elseif (!strcmp($action, 'N')) { $this->table->Seek(); + } elseif (!strcmp($action, 'R')) { + $this->table->Seek(); } elseif (!strcmp($action, 'D')) { if ($this->table->Delete($_REQUEST)) { *************** *** 235,242 **** } } elseif (!strcmp($button, 'R')) { if (empty($this->img_reset)) { ! $code .= "<input type='reset' value='".(empty($this->txt_reset)?$vortex_msgs['form_reset']:$this->txt_reset)."' />\n"; } else { ! $code .= "<input type='image' src='{$this->img_reset}' alt='".(empty($this->txt_reset)?$vortex_msgs['form_reset']:$this->txt_reset)."' onclick='document.form_{$this->table->name}.reset();return false;' />\n"; } } elseif (!strcmp($button, 'N')) { --- 260,270 ---- } } elseif (!strcmp($button, 'R')) { + $url =& new URL(); + $url->parameters["{$this->table->name}_action"] = 'R'; + $code .= "<script language='JavaScript'>\n\tfunction {$this->table->name}_Reset() {\n\t\tdocument.form_{$this->table->name}.action = '".$url->Get()."';\n\t\tdocument.form_{$this->table->name}.submit();\n\t}\n</script>\n"; if (empty($this->img_reset)) { ! $code .= "<input type='button' value='".(empty($this->txt_reset)?$vortex_msgs['form_reset']:$this->txt_reset)."' onclick='{$this->table->name}_Reset();' />\n"; } else { ! $code .= "<input type='image' src='{$this->img_reset}' alt='".(empty($this->txt_reset)?$vortex_msgs['form_reset']:$this->txt_reset)."' onclick='{$this->table->name}_Reset();' />\n"; } } elseif (!strcmp($button, 'N')) { *************** *** 258,261 **** --- 286,298 ---- $code .= "<input type='image' src='{$this->img_delete}' alt='".(empty($this->txt_delete)?$vortex_msgs['form_delete']:$this->txt_delete)."' onclick='{$this->table->name}_Delete();' />\n"; } + } elseif (!strcmp($button, 'F')) { + $url =& new URL(); + $url->parameters["{$this->table->name}_action"] = 'F'; + $code .= "<script language='JavaScript'>\n\tfunction {$this->table->name}_Find() {\n\t\tdocument.form_{$this->table->name}.action = '".$url->Get()."';\n\t\tdocument.form_{$this->table->name}.submit();\n\t}\n</script>\n"; + if (empty($this->img_find)) { + $code .= "<input type='button' value='".(empty($this->txt_find)?$vortex_msgs['form_find']:$this->txt_find)."' onclick='{$this->table->name}_Find();' />\n"; + } else { + $code .= "<input type='image' src='{$this->img_find}' alt='".(empty($this->txt_find)?$vortex_msgs['form_find']:$this->txt_find)."' onclick='{$this->table->name}_Find();' />\n"; + } } } |
From: Thiago R. <nop...@us...> - 2005-03-21 21:00:58
|
Update of /cvsroot/phpvortex/phpvortex In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9533 Added Files: DB_MSSQL.class.php RS_MSSQL.class.php Log Message: Added Microsoft SQL Server Connection Classes --- NEW FILE: DB_MSSQL.class.php --- <?php /** * File for class DB_MSSQL. * * @package Vortex * @subpackage DB * @author Thiago Ramon Gonçalves Montoya * @copyright Copyright 2004, Thiago Ramon Gonçalves Montoya * @license http://opensource.org/licenses/lgpl-license.php GNU Lesser General Public License */ /** Require the base class */ require_once('DB_Base.class.php'); /** Require the RecordSet class header. */ require_once('RS_MSSQL.class.php'); /** * Class for MS SQL Server database connection. * * @package Vortex * @subpackage DB */ class DB_MSSQL extends DB_Base { /** * Open a new connection to the database if not already connected. * * @param bool $persist Open a persistent connection? * @return bool Returns TRUE if the connection was successfully established, FALSE if an error occurred. */ function Connect($persist=FALSE) { if (!is_null($this->link)) return FALSE; if ($persist) { $this->link = mssql_pconnect($this->server, $this->user, $this->pw); } else { $this->link = mssql_connect($this->server, $this->user, $this->pw); } if ($this->link !== FALSE) { if (mssql_select_db($this->db, $this->link)) { return TRUE; } mssql_close($this->link); } $this->link = NULL; return FALSE; } /** * Execute a query at the database. * * @param string $sql Query to run. * @return RS_Base Returns a RecordSet object if there is a result to the query or TRUE if it was successfull, FALSE if a error occurred. */ function &Query($sql) { $rs = mssql_query($sql,$this->link); if ($rs === FALSE) { return FALSE; } return new RS_MSSQL($this, $rs); } /** * Close the connection to the database if still connected. * * @return bool Returns TRUE if the connection was closed, FALSE if it failed. */ function Close() { if (mssql_close($this->link)) { $this->link = NULL; return TRUE; } return FALSE; } /** * Transactions: Begin a new transaction. * * @return bool Returns TRUE if the new transaction began, FALSE if it failed. */ function Begin() { return $this->Query('BEGIN TRANSACTION'); } /** * Transactions: Commit a transaction. * * @return bool Returns TRUE if the transaction was commited, FALSE if it failed. */ function Commit() { return $this->Query('COMMIT TRANSACTION'); } /** * Transactions: Rollback a transaction. * * @return bool Returns TRUE if the transaction was cancelled, FALSE if it failed. */ function Rollback() { return $this->Query('ROLLBACK TRANSACTION'); } /** * Process a string for safe use in a database insertion. * * @param string $data The string to be processed. * @return string Returns the processed string. */ function AddSlashes($data) { return addslashes($data); } } ?> --- NEW FILE: RS_MSSQL.class.php --- <?php /** * File for class RS_MSSQL. * * @package Vortex * @subpackage DB * @author Thiago Ramon Gonçalves Montoya * @copyright Copyright 2004, Thiago Ramon Gonçalves Montoya * @license http://opensource.org/licenses/lgpl-license.php GNU Lesser General Public License */ /** Require the base class */ require_once('RS_Base.class.php'); /** * Class for MS SQL Server RecordSets. * * @package Vortex * @subpackage DB */ class RS_MSSQL extends RS_Base { /** * Get the count of rows in the RecordSet. * * @return int Returns the number of rows in the RecordSet. */ function RowCount() { return mssql_num_rows($this->result); } /** * Get a row from the RecordSet. * * Case $row is set, return that row, case else, return the next row. * * @param int $row Row to return, defaults to next. * @param int $type Type of array to return (RS_ROW_NUM | RS_ROW_ASSOC | RS_ROW_BOTH). * @return array Returns the row from the RecordSet, or FALSE if EOF. */ function Row($row = -1, $type = RS_ROW_ASSOC) { if ($row != -1) { if (!mssql_data_seek($this->result, $row)) return FALSE; $this->row = $row; } $this->row++; switch ($type) { case RS_ROW_NUM: return mssql_fetch_row($this->result); break; case RS_ROW_ASSOC: return mssql_fetch_assoc($this->result); break; case RS_ROW_BOTH: return mssql_fetch_array($this->result); break; } return FALSE; } /** * Go to a row int the RecordSet. * * @param int $row Row to go to. * @return bool Returns TRUE on success, FALSE if failed. */ function SetRow($row = 0) { if (!mssql_num_rows($this->result)) return FALSE; if (!mssql_data_seek($this->result, $row)) return FALSE; $this->row = $row; return TRUE; } /** * Get all rows from the RecordSet. * * @param int $type Type of array to return (RS_ROW_NUM | RS_ROW_ASSOC | RS_ROW_BOTH). * @return array Returns all the rows from the RecordSet. */ function All($type = RS_ROW_ASSOC) { $rows = array(); $this->SetRow(); while ($row = $this->Row(-1, $type)) $rows[] = $row; return $rows; } /** * Get the last auto-generated ID from the RecordSet. * * @return int Returns the last auto-generated ID from the RecordSet. */ function LastId() { $tmp = mssql_query("SELECT @@IDENTITY", $this->db->link); $id = mssql_result($tmp, 0, 0); mssql_free_result($tmp); return $id; } /** * Close the RecordSet and free the memory. * * @return bool Returns TRUE if the RecordSet was closed, FALSE if it failed. */ function Close() { return mssql_free_result($this->result); } } ?> |
From: Thiago R. <nop...@us...> - 2004-11-05 16:19:19
|
Update of /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Util In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27825/doc/html/Vortex/Util Added Files: APP_Base.html _APP_Base_class_php.html Log Message: Updated Documentation --- NEW FILE: _APP_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 APP_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">/APP_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> | <a href="#sec-includes">Includes</a> </div> <div class="info-box-body"> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">File for class APP_Base.</p> <ul class="tags"> <li><span class="field">filesource:</span> <a href="../..//__filesource/fsource_Vortex_Util_APP_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> | <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/Util/APP_Base.html">APP_Base</a> </td> <td> Base class for applications. </td> </tr> </table> </div> </div> <a name="sec-includes"></a> <div class="info-box"> <div class="info-box-title">Includes</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-classes">Classes</a> | <span class="disabled">Includes</span> </div> <div class="info-box-body"> <a name="_SEC_Page_class_php"><!-- --></a> <div class="oddrow"> <div> <span class="include-title"> <span class="include-type">require_once</span> (<span class="include-name"><a href="../../Vortex/Page/_SEC_Page_class_php.html">'SEC_Page.class.php'</a></span>) (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Util_APP_Base.class.php.html#a13">13</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Require the header for SEC_Page functionality.</p> </div> </div> </div> <p class="notes" id="credit"> Documentation generated on Fri, 5 Nov 2004 14:11:58 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> </html> --- NEW FILE: APP_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 APP_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 APP_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 applications.</p> <p class="notes"> Located in <a class="field" href="_APP_Base_class_php.html">/APP_Base.class.php</a> (line <span class="field"><a href="../..//__filesource/fsource_Vortex_Util_APP_Base.class.php.html#a21">21</a></span>) </p> <pre></pre> </div> </div> <a name="sec-var-summary"></a> <div class="info-box"> <div class="info-box-title">Variable Summary</span></div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <span class="disabled">Vars</span> (<a href="#sec-vars">details</a>) | <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) </div> <div class="info-box-body"> <div class="var-summary"> <div class="var-title"> <span class="var-type">string</span> <a href="#$connection_class" title="details" class="var-name">$connection_class</a> </div> <div class="var-title"> <span class="var-type">array</span> <a href="#$connection_opts" title="details" class="var-name">$connection_opts</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="#$layout" title="details" class="var-name">$layout</a> </div> <div class="var-title"> <span class="var-type">array</span> <a href="#$pages" title="details" class="var-name">$pages</a> </div> <div class="var-title"> <span class="var-type">array</span> <a href="#$styles" title="details" class="var-name">$styles</a> </div> <div class="var-title"> <span class="var-type">string</span> <a href="#$title" title="details" class="var-name">$title</a> </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">APP_Base</span> <a href="#APP_Base" title="details" class="method-name">APP_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> (<span class="var-type">string</span> <span class="var-name">$page</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$connection_class" id="$connection_class"><!-- --></A> <div class="evenrow"> <div class="var-header"> <span class="var-title"> <span class="var-type">string</span> <span class="var-name">$connection_class</span> = <span class="var-default"> ''</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Util_APP_Base.class.php.html#a27">27</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Class of DB connection.</p> </div> <a name="var$connection_opts" id="$connection_opts"><!-- --></A> <div class="oddrow"> <div class="var-header"> <span class="var-title"> <span class="var-type">array</span> <span class="var-name">$connection_opts</span> = <span class="var-default">array()</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Util_APP_Base.class.php.html#a33">33</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Parameters to the DB connection.</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> = <span class="var-default"> NULL</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Util_APP_Base.class.php.html#a39">39</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">DB connection.</p> </div> <a name="var$layout" id="$layout"><!-- --></A> <div class="oddrow"> <div class="var-header"> <span class="var-title"> <span class="var-type">array</span> <span class="var-name">$layout</span> = <span class="var-default">array()</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Util_APP_Base.class.php.html#a75">75</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Array with the default layout of the site.</p> <p class="description"><p>The layout is an array containing arrays in the following form: <pre> array( 'name' => 'Section Name', 'class' => 'Section Class', 'opts' => array('Section options') );</pre></p></p> </div> <a name="var$pages" id="$pages"><!-- --></A> <div class="evenrow"> <div class="var-header"> <span class="var-title"> <span class="var-type">array</span> <span class="var-name">$pages</span> = <span class="var-default">array()</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Util_APP_Base.class.php.html#a61">61</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Array all the pages of an application.</p> <p class="description"><p>The $pages is an array containing arrays in the following form: <pre> 'page_name' => array( 'class' => 'SEC_* Class', 'opts' => array('Section options'), [ 'title' => 'Page Title', ] [ 'style' => array('Page style sheet',...), ] [ 'layout' => array('page layout (see below)') ] ), ...</pre> If exists, the $db member variable is added to the 'opts' of the page. If 'title' is set, it is used instead of the default title. If 'style' is set, it is used instead of the default styles. If 'layout' is set, it is used instead of the default layout.</p></p> </div> <a name="var$styles" id="$styles"><!-- --></A> <div class="oddrow"> <div class="var-header"> <span class="var-title"> <span class="var-type">array</span> <span class="var-name">$styles</span> = <span class="var-default">array()</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Util_APP_Base.class.php.html#a82">82</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Array containing URLs to the default style sheets of the site.</p> </div> <a name="var$title" id="$title"><!-- --></A> <div class="evenrow"> <div class="var-header"> <span class="var-title"> <span class="var-type">string</span> <span class="var-name">$title</span> = <span class="var-default"> ''</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Util_APP_Base.class.php.html#a89">89</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Default title to site pages.</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="methodAPP_Base" id="APP_Base"><!-- --></a> <div class="oddrow"> <div class="method-header"> <span class="method-title">Constructor APP_Base</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Util_APP_Base.class.php.html#a96">96</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">APP_Base</span> <span class="method-name"> APP_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="evenrow"> <div class="method-header"> <span class="method-title">Show</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Util_APP_Base.class.php.html#a115">115</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Outputs the page to the client.</p> <div class="method-signature"> <span class="method-result">void</span> <span class="method-name"> Show </span> (<span class="var-type">string</span> <span class="var-name">$page</span>) </div> <ul class="parameters"> <li> <span class="var-type">string</span> <span class="var-name">$page</span><span class="var-description">: Page to show.</span> </li> </ul> </div> </div> </div> <p class="notes" id="credit"> Documentation generated on Fri, 5 Nov 2004 14:11:59 -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-11-05 16:19:19
|
Update of /cvsroot/phpvortex/phpvortex/doc/html/Vortex In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27825/doc/html/Vortex Added Files: _test_index_php.html Log Message: Updated Documentation --- NEW FILE: _test_index_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 index.php</title> <link rel="stylesheet" href="../media/stylesheet.css" /> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> </head> <body> <div class="page-body"> <h2 class="file-name">/test/index.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 ========= --> <ul class="tags"> <li><span class="field">filesource:</span> <a href="..//__filesource/fsource_Vortex__testindex.php.html">Source Code for this file</a></li> </ul> </div> </div> <p class="notes" id="credit"> Documentation generated on Fri, 5 Nov 2004 14:12:10 -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-11-05 16:19:17
|
Update of /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Debug In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27825/doc/html/Vortex/Debug Added Files: SEC_EditTest.html _test_SEC_EditTest_class_php.html _test_test_conf_php.html _test_vortex_test_app_php.html Log Message: Updated Documentation --- NEW FILE: SEC_EditTest.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_EditTest</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_EditTest</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 SEC_Edit testing.</p> <p class="notes"> Located in <a class="field" href="_test_SEC_EditTest_class_php.html">/test/SEC_EditTest.class.php</a> (line <span class="field"><a href="../..//__filesource/fsource_Vortex_Debug_testSEC_EditTest.class.php.html#a23">23</a></span>) </p> <pre><a href="../../Vortex/Page/SEC_Base.html">SEC_Base</a> | --<a href="../../Vortex/Page/SEC_Edit.html">SEC_Edit</a> | --SEC_EditTest</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"><a href="../../Vortex/DB/DB_Base.html">DB_Base</a></span> <a href="#$db" title="details" class="var-name">$db</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_EditTest</span> <a href="#SEC_EditTest" title="details" class="method-name">SEC_EditTest</a> ([<span class="var-type">array</span> <span class="var-name">$opts</span> = <span class="var-default">array()</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$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> = <span class="var-default"> NULL</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Debug_testSEC_EditTest.class.php.html#a30">30</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Database.</p> </div> <h4>Inherited Variables</h4> <A NAME='inherited_vars'><!-- --></A> <p>Inherited from <span class="classname"><a href="../../Vortex/Page/SEC_Edit.html">SEC_Edit</a></span></p> <blockquote> <span class="var-title"> <span class="var-name"><a href="../../Vortex/Page/SEC_Edit.html#var$buttons">SEC_Edit::$buttons</a></span><br> </span> <span class="var-title"> <span class="var-name"><a href="../../Vortex/Page/SEC_Edit.html#var$form">SEC_Edit::$form</a></span><br> </span> <span class="var-title"> <span class="var-name"><a href="../../Vortex/Page/SEC_Edit.html#var$img_delete">SEC_Edit::$img_delete</a></span><br> </span> <span class="var-title"> <span class="var-name"><a href="../../Vortex/Page/SEC_Edit.html#var$img_new">SEC_Edit::$img_new</a></span><br> </span> <span class="var-title"> <span class="var-name"><a href="../../Vortex/Page/SEC_Edit.html#var$img_reset">SEC_Edit::$img_reset</a></span><br> </span> <span class="var-title"> <span class="var-name"><a href="../../Vortex/Page/SEC_Edit.html#var$img_submit">SEC_Edit::$img_submit</a></span><br> </span> <span class="var-title"> <span class="var-name"><a href="../../Vortex/Page/SEC_Edit.html#var$list">SEC_Edit::$list</a></span><br> </span> <span class="var-title"> <span class="var-name"><a href="../../Vortex/Page/SEC_Edit.html#var$navi">SEC_Edit::$navi</a></span><br> </span> <span class="var-title"> <span class="var-name"><a href="../../Vortex/Page/SEC_Edit.html#var$recspage">SEC_Edit::$recspage</a></span><br> </span> <span class="var-title"> <span class="var-name"><a href="../../Vortex/Page/SEC_Edit.html#var$table">SEC_Edit::$table</a></span><br> </span> <span class="var-title"> <span class="var-name"><a href="../../Vortex/Page/SEC_Edit.html#var$txt_delete">SEC_Edit::$txt_delete</a></span><br> </span> <span class="var-title"> <span class="var-name"><a href="../../Vortex/Page/SEC_Edit.html#var$txt_new">SEC_Edit::$txt_new</a></span><br> </span> <span class="var-title"> <span class="var-name"><a href="../../Vortex/Page/SEC_Edit.html#var$txt_reset">SEC_Edit::$txt_reset</a></span><br> </span> <span class="var-title"> <span class="var-name"><a href="../../Vortex/Page/SEC_Edit.html#var$txt_submit">SEC_Edit::$txt_submit</a></span><br> </span> </blockquote> <p>Inherited from <span class="classname"><a href="../../Vortex/Page/SEC_Base.html">SEC_Base</a></span></p> <blockquote> <span class="var-title"> <span class="var-name"><a href="../../Vortex/Page/SEC_Base.html#var$sections">SEC_Base::$sections</a></span><br> </span> </blockquote> </div> </div> <a name="sec-methods"></a> <div class="info-box"> <div class="info-box-title">Methods</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-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_EditTest" id="SEC_EditTest"><!-- --></a> <div class="oddrow"> <div class="method-header"> <span class="method-title">Constructor SEC_EditTest</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Debug_testSEC_EditTest.class.php.html#a37">37</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Constructor: Set the table.</p> <div class="method-signature"> <span class="method-result">SEC_EditTest</span> <span class="method-name"> SEC_EditTest </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> <h4>Inherited Methods</h4> <a name='inherited_methods'><!-- --></a> <!-- =========== Summary =========== --> <p>Inherited From <span class="classname"><a href="../../Vortex/Page/SEC_Edit.html">SEC_Edit</a></span></p> <blockquote> <span class="method-name"><a href="../../Vortex/Page/SEC_Edit.html#methodSEC_Edit">SEC_Edit::SEC_Edit()</a></span><br> <span class="method-name"><a href="../../Vortex/Page/SEC_Edit.html#methodBuildButtons">SEC_Edit::BuildButtons()</a></span><br> <span class="method-name"><a href="../../Vortex/Page/SEC_Edit.html#methodPerform">SEC_Edit::Perform()</a></span><br> <span class="method-name"><a href="../../Vortex/Page/SEC_Edit.html#methodShow">SEC_Edit::Show()</a></span><br> </blockquote> <!-- =========== Summary =========== --> <p>Inherited From <span class="classname"><a href="../../Vortex/Page/SEC_Base.html">SEC_Base</a></span></p> <blockquote> <span class="method-name"><a href="../../Vortex/Page/SEC_Base.html#methodSEC_Base">SEC_Base::SEC_Base()</a></span><br> <span class="method-name"><a href="../../Vortex/Page/SEC_Base.html#methodAddSection">SEC_Base::AddSection()</a></span><br> <span class="method-name"><a href="../../Vortex/Page/SEC_Base.html#methodDelSection">SEC_Base::DelSection()</a></span><br> <span class="method-name"><a href="../../Vortex/Page/SEC_Base.html#methodShow">SEC_Base::Show()</a></span><br> </blockquote> </div> </div> <p class="notes" id="credit"> Documentation generated on Fri, 5 Nov 2004 14:12:31 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> </html> --- NEW FILE: _test_test_conf_php.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <!-- template designed by Marco Von Ballmoos --> <title>Docs for page test_conf.php</title> <link rel="stylesheet" href="../../media/stylesheet.css" /> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> </head> <body> <div class="page-body"> <h2 class="file-name">/test/test_conf.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">Configuration file for the Test programs.</p> <ul class="tags"> <li><span class="field">filesource:</span> <a href="../..//__filesource/fsource_Vortex_Debug_testtest_conf.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 Fri, 5 Nov 2004 14:12:42 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> </html> --- NEW FILE: _test_SEC_EditTest_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_EditTest.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">/test/SEC_EditTest.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_EditTest.</p> <ul class="tags"> <li><span class="field">filesource:</span> <a href="../..//__filesource/fsource_Vortex_Debug_testSEC_EditTest.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/Debug/SEC_EditTest.html">SEC_EditTest</a> </td> <td> Class for SEC_Edit testing. </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_Edit_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_Edit_class_php.html">'../SEC_Edit.class.php'</a></span>) (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Debug_testSEC_EditTest.class.php.html#a13">13</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Require the base class</p> </div> <a name="_TB_Test_class_php"><!-- --></a> <div class="oddrow"> <div> <span class="include-title"> <span class="include-type">require_once</span> (<span class="include-name"><a href="../../Vortex/Debug/_test_TB_Test_class_php.html">'TB_Test.class.php'</a></span>) (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Debug_testSEC_EditTest.class.php.html#a15">15</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Require the Test Table class</p> </div> </div> </div> <p class="notes" id="credit"> Documentation generated on Fri, 5 Nov 2004 14:12:31 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> </html> --- NEW FILE: _test_vortex_test_app_php.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <!-- template designed by Marco Von Ballmoos --> <title>Docs for page vortex_test_app.php</title> <link rel="stylesheet" href="../../media/stylesheet.css" /> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> </head> <body> <div class="page-body"> <h2 class="file-name">/test/vortex_test_app.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">Test file for the PHP Vortex project - test APP_Base functionality.</p> <ul class="tags"> <li><span class="field">filesource:</span> <a href="../..//__filesource/fsource_Vortex_Debug_testvortex_test_app.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="___/APP_Base_class_php"><!-- --></a> <div class="oddrow"> <div> <span class="include-title"> <span class="include-type">require_once</span> (<span class="include-name"><a href="../../Vortex/Util/_APP_Base_class_php.html">'../APP_Base.class.php'</a></span>) (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Debug_testvortex_test_app.php.html#a13">13</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Require the header for APP_Base functionality.</p> </div> <a name="_test_conf_php"><!-- --></a> <div class="evenrow"> <div> <span class="include-title"> <span class="include-type">require_once</span> (<span class="include-name"><a href="../../Vortex/Debug/_test_test_conf_php.html">'test_conf.php'</a></span>) (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Debug_testvortex_test_app.php.html#a15">15</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Require the default configuration header.</p> </div> <a name="___/conf/conf_php"><!-- --></a> <div class="oddrow"> <div> <span class="include-title"> <span class="include-type">require_once</span> (<span class="include-name"><a href="../../Vortex/Util/_conf_conf_php.html">'../conf/conf.php'</a></span>) (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Debug_testvortex_test_app.php.html#a17">17</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Require the global configuration file for access to the localized messages</p> </div> </div> </div> <p class="notes" id="credit"> Documentation generated on Fri, 5 Nov 2004 14:12:44 -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-11-05 16:19:17
|
Update of /cvsroot/phpvortex/phpvortex/doc/html/Vortex/Page In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27825/doc/html/Vortex/Page Added Files: SEC_Include.html _SEC_Include_class_php.html Log Message: Updated Documentation --- NEW FILE: _SEC_Include_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_Include.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_Include.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_Include.</p> <ul class="tags"> <li><span class="field">filesource:</span> <a href="../..//__filesource/fsource_Vortex_Page_SEC_Include.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_Include.html">SEC_Include</a> </td> <td> Class for include() 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="oddrow"> <div> <span class="include-title"> <span class="include-type">require_once</span> (<span class="include-name"><a href="../../Vortex/Page/_SEC_Base_class_php.html">'SEC_Base.class.php'</a></span>) (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Include.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 Fri, 5 Nov 2004 14:12:33 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> </html> --- NEW FILE: SEC_Include.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_Include</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_Include</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 include() sections.</p> <p class="notes"> Located in <a class="field" href="_SEC_Include_class_php.html">/SEC_Include.class.php</a> (line <span class="field"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Include.class.php.html#a21">21</a></span>) </p> <pre><a href="../../Vortex/Page/SEC_Base.html">SEC_Base</a> | --SEC_Include</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="#$include" title="details" class="var-name">$include</a> </div> </div> </div> </div> <a name="sec-method-summary"></a> <div class="info-box"> <div class="info-box-title">Method Summary</span></div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) | <span class="disabled">Methods</span> (<a href="#sec-methods">details</a>) </div> <div class="info-box-body"> <div class="method-summary"> <div class="method-definition"> <span class="method-result">void</span> <a href="#Show" title="details" class="method-name">Show</a> () </div> </div> </div> </div> <a name="sec-vars"></a> <div class="info-box"> <div class="info-box-title">Variables</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-var-summary">Vars</a> (<span class="disabled">details</span>) | <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) </div> <div class="info-box-body"> <a name="var$include" id="$include"><!-- --></A> <div class="oddrow"> <div class="var-header"> <span class="var-title"> <span class="var-type">string</span> <span class="var-name">$include</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Include.class.php.html#a27">27</a></span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">File to include.</p> </div> <h4>Inherited Variables</h4> <A NAME='inherited_vars'><!-- --></A> <p>Inherited from <span class="classname"><a href="../../Vortex/Page/SEC_Base.html">SEC_Base</a></span></p> <blockquote> <span class="var-title"> <span class="var-name"><a href="../../Vortex/Page/SEC_Base.html#var$sections">SEC_Base::$sections</a></span><br> </span> </blockquote> </div> </div> <a name="sec-methods"></a> <div class="info-box"> <div class="info-box-title">Methods</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) <a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>) </div> <div class="info-box-body"> <A NAME='method_detail'></A> <a name="methodShow" id="Show"><!-- --></a> <div class="evenrow"> <div class="method-header"> <span class="method-title">Show</span> (line <span class="line-number"><a href="../..//__filesource/fsource_Vortex_Page_SEC_Include.class.php.html#a32">32</a></span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Outputs the section to the client.</p> <div class="method-signature"> <span class="method-result">void</span> <span class="method-name"> Show </span> () </div> <hr class="separator" /> <div class="notes">Redefinition of:</div> <dl> <dt><a href="../../Vortex/Page/SEC_Base.html#methodShow">SEC_Base::Show()</a></dt> <dd>Outputs the section to the client.</dd> </dl> </div> <h4>Inherited Methods</h4> <a name='inherited_methods'><!-- --></a> <!-- =========== Summary =========== --> <p>Inherited From <span class="classname"><a href="../../Vortex/Page/SEC_Base.html">SEC_Base</a></span></p> <blockquote> <span class="method-name"><a href="../../Vortex/Page/SEC_Base.html#methodSEC_Base">SEC_Base::SEC_Base()</a></span><br> <span class="method-name"><a href="../../Vortex/Page/SEC_Base.html#methodAddSection">SEC_Base::AddSection()</a></span><br> <span class="method-name"><a href="../../Vortex/Page/SEC_Base.html#methodDelSection">SEC_Base::DelSection()</a></span><br> <span class="method-name"><a href="../../Vortex/Page/SEC_Base.html#methodShow">SEC_Base::Show()</a></span><br> </blockquote> </div> </div> <p class="notes" id="credit"> Documentation generated on Fri, 5 Nov 2004 14:12:34 -0300 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a> </p> </div></body> </html> |