00001 <?php 00002 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4: 00003 // +----------------------------------------------------------------------+ 00004 // | PHP Version 4 | 00005 // +----------------------------------------------------------------------+ 00006 // | Copyright (c) 1997-2003 The PHP Group | 00007 // +----------------------------------------------------------------------+ 00008 // | This source file is subject to version 2.02 of the PHP license, | 00009 // | that is bundled with this package in the file LICENSE, and is | 00010 // | available at through the world-wide-web at | 00011 // | http://www.php.net/license/2_02.txt. | 00012 // | If you did not receive a copy of the PHP license and are unable to | 00013 // | obtain it through the world-wide-web, please send a note to | 00014 // | license@php.net so we can mail you a copy immediately. | 00015 // +----------------------------------------------------------------------+ 00016 // | Created: Tue May 27 11:20:04 2003 00017 // | Author: Martin Marrese - Myrna Degano <mmarre@mecon.gov.ar - mdegan@mecon.gov.ar> 00018 // +----------------------------------------------------------------------+ 00019 // 00020 // $Id: Usuario.php 26 2003-07-07 22:45:35Z mmarre $ 00021 // $Author: mmarre $ 00022 // $URL: http://portal.mecon.ar/svn/samurai/tronco/lib/SAMURAI/Usuario.php $ 00023 // $Date: 2003-07-07 19:45:35 -0300 (Mon, 07 Jul 2003) $ 00024 // $Rev: 26 $ 00025 // 00026 00027 #require_once 'PEAR.php'; 00028 00029 00030 00031 // +X2C Class 207 :SAMURAI_Usuario 00037 class SAMURAI_Usuario { 00044 var $_login; 00045 00052 var $_nrodoc; 00053 00060 var $_nombre; 00061 00068 var $_fecha; 00069 00076 var $_db; 00077 00084 function getNrodoc() 00085 { 00086 return $this->_nrodoc; 00087 } 00096 function setNrodoc($nrodoc) 00097 { 00098 $this->_nrodoc = $nrodoc; 00099 } 00100 00107 function getNombre() 00108 { 00109 return $this->_nombre; 00110 } 00119 function setNombre($nombre) 00120 { 00121 $this->_nombre = $nombre; 00122 } 00123 00130 function getFecha() 00131 { 00132 return $this->_fecha; 00133 } 00142 function setFecha($fecha) 00143 { 00144 $this->_fecha = $fecha; 00145 } 00146 00147 // ~X2C 00148 00149 // +X2C Operation 216 00159 function SAMURAI_Usuario(&$db, $login = null) // ~X2C 00160 { 00161 if (!is_null($login)) { 00162 //BUSCAR INFO EN LA DB, 00163 //SETEAR LAS VI 00164 } 00165 else { 00166 //INICIALIZO LA VI 00167 $this->_login = null; 00168 $this->_nrodoc = null; 00169 $this->_nombre = null; 00170 $this->_fecha = null; 00171 } 00172 00173 } 00174 // -X2C 00175 00176 00177 00178 00179 00180 00181 00182 00183 00184 } // -X2C Class :SAMURAI_Usuario 00185 00186 ?>