[geeklog-cvs] MVCnPHP/contactmanager/commands DeleteContact.class.php,1.2,1.2.2.1 SaveContact.class.php,1.2,1.2.2.1 SearchContacts.class.php,1.2,1.2.2.1 ValidateContact.class.php,1.2,1.2.2.1

geeklog-cvs-admin at lists.geeklog.net geeklog-cvs-admin at lists.geeklog.net
Fri Jul 18 14:56:06 EDT 2003


Update of /usr/cvs/geeklog/MVCnPHP/contactmanager/commands
In directory internal.geeklog.net:/tmp/cvs-serv20462/contactmanager/commands

Modified Files:
      Tag: rel-1-0-php5-port
	DeleteContact.class.php SaveContact.class.php 
	SearchContacts.class.php ValidateContact.class.php 
Log Message:
Ported most classes to PHP5, not using exceptions yet.  This has not been tested.


Index: DeleteContact.class.php
===================================================================
RCS file: /usr/cvs/geeklog/MVCnPHP/contactmanager/commands/DeleteContact.class.php,v
retrieving revision 1.2
retrieving revision 1.2.2.1
diff -C2 -d -r1.2 -r1.2.2.1
*** DeleteContact.class.php	14 Jul 2003 16:21:45 -0000	1.2
--- DeleteContact.class.php	18 Jul 2003 18:56:04 -0000	1.2.2.1
***************
*** 36,40 ****
      * @var array
      */
!     var $_data = null;
      
      /**
--- 36,40 ----
      * @var array
      */
!     private $_data = null;
      
      /**
***************
*** 46,50 ****
      *
      */
!     function DeleteContact()
      {
      }
--- 46,50 ----
      *
      */
!     function __construct()
      {
      }
***************
*** 57,61 ****
      *
      */
!     function execute()
      {
          global $db;
--- 57,61 ----
      *
      */
!     public function execute()
      {
          global $db;

Index: SaveContact.class.php
===================================================================
RCS file: /usr/cvs/geeklog/MVCnPHP/contactmanager/commands/SaveContact.class.php,v
retrieving revision 1.2
retrieving revision 1.2.2.1
diff -C2 -d -r1.2 -r1.2.2.1
*** SaveContact.class.php	14 Jul 2003 16:21:45 -0000	1.2
--- SaveContact.class.php	18 Jul 2003 18:56:04 -0000	1.2.2.1
***************
*** 36,40 ****
      * @var array
      */
!     var $_data = null;
      
      /**
--- 36,40 ----
      * @var array
      */
!     private $_data = null;
      
      /**
***************
*** 46,50 ****
      *
      */
!     function SaveContact()
      {
      }
--- 46,50 ----
      *
      */
!     function __construct()
      {
      }
***************
*** 58,62 ****
      *
      */
!     function execute()
      {
          global $db;
--- 58,62 ----
      *
      */
!     public function execute()
      {
          global $db;

Index: SearchContacts.class.php
===================================================================
RCS file: /usr/cvs/geeklog/MVCnPHP/contactmanager/commands/SearchContacts.class.php,v
retrieving revision 1.2
retrieving revision 1.2.2.1
diff -C2 -d -r1.2 -r1.2.2.1
*** SearchContacts.class.php	14 Jul 2003 16:21:45 -0000	1.2
--- SearchContacts.class.php	18 Jul 2003 18:56:04 -0000	1.2.2.1
***************
*** 36,40 ****
      * @var array
      */
!     var $_data = null;
      
      /**
--- 36,40 ----
      * @var array
      */
!     private $_data = null;
      
      /**
***************
*** 46,50 ****
      *
      */
!     function SearchContacts()
      {
      }
--- 46,50 ----
      *
      */
!     function __construct()
      {
      }
***************
*** 58,62 ****
      *
      */
!     function execute()
      {
          global $db;
--- 58,62 ----
      *
      */
!     public function execute()
      {
          global $db;

Index: ValidateContact.class.php
===================================================================
RCS file: /usr/cvs/geeklog/MVCnPHP/contactmanager/commands/ValidateContact.class.php,v
retrieving revision 1.2
retrieving revision 1.2.2.1
diff -C2 -d -r1.2 -r1.2.2.1
*** ValidateContact.class.php	14 Jul 2003 16:21:45 -0000	1.2
--- ValidateContact.class.php	18 Jul 2003 18:56:04 -0000	1.2.2.1
***************
*** 41,45 ****
      * @var array
      */
!     var $_data = null;
      
      /**
--- 41,45 ----
      * @var array
      */
!     private $_data = null;
      
      /**
***************
*** 51,57 ****
      *
      */
!     function ValidateContact()
      {
!         parent::Validator();
      }
      
--- 51,57 ----
      *
      */
!     function __construct()
      {
!         parent::__construct();
      }
      
***************
*** 64,68 ****
      *
      */
!     function execute()
      {
          $errors = array();
--- 64,68 ----
      *
      */
!     public function execute()
      {
          $errors = array();





More information about the geeklog-cvs mailing list