]> git.llucax.com Git - z.facultad/75.43/tp1.git/commitdiff
Se agrega una pantalla dummy para saber si está logueado (puede usarse como base...
authorLeandro Lucarella <llucax@gmail.com>
Tue, 3 May 2005 21:38:11 +0000 (21:38 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Tue, 3 May 2005 21:38:11 +0000 (21:38 +0000)
src/admin.logged.php [new file with mode: 0644]
src/lib/Usuario.php
src/lib/file.int.php [new file with mode: 0644]

diff --git a/src/admin.logged.php b/src/admin.logged.php
new file mode 100644 (file)
index 0000000..e7e1e51
--- /dev/null
@@ -0,0 +1,18 @@
+<?php
+// vim: set binary noeol et sw=4 sts=4 :
+// Grupo 10
+//
+// Lucarella, Schein, Arena
+//
+// Creado: Leandro Lucarella (sáb abr 30 20:21:30 ART 2005)
+//
+// $Id$
+
+require_once 'lib/pagina.php';
+
+pagina_check_login();
+pagina_cabecera();
+ok('Hola Mundo!');
+pagina_pie('Leandro Lucarella', 'llucare@fi.uba.ar');
+
+?>
\ No newline at end of file
index 43df6f9d2d6df9ed0c182a7fe16aa729287bbe46..6bf1142e1c5685aa6d84a3e38a832a01a065f002 100644 (file)
@@ -22,15 +22,16 @@ require_once 'lib/file.users.php';
 class Usuario
 {
     // Attributes
-   /**
-    *    XXX
-    *    @access public
-    */
     var $_id;
+    var $nombre;
+    var $apellido;
+    var $email;
 
     function Usuario($id)
     {
         $this->_id = $id;
+        $u = file_users_get($id);
+        $this->email = $u[2];
     }
 
     // Operations
diff --git a/src/lib/file.int.php b/src/lib/file.int.php
new file mode 100644 (file)
index 0000000..1d2544a
--- /dev/null
@@ -0,0 +1,33 @@
+<?php
+// vim: set binary noeol et sw=4 sts=4 :
+// Grupo 10
+//
+// Lucarella, Schein, Arena
+//
+// Creado: Leandro Lucarella (mar may  3 18:03:33 ART 2005)
+//
+// $Id$
+
+require_once 'lib/file.php';
+
+/**
+ * Obtiene una lista de integrantes.
+ *
+ * @return array de array de (id, nombre, apellido) (false si hubo error).
+ */
+function file_int_get_all()
+{
+    return fgetallcsv('data/int_2005.txt');
+}
+
+/**
+ * Obtiene la información de un integrante.
+ *
+ * @return array con id, nombre, apellido (false si hubo error o no está).
+ */
+function file_int_get($user)
+{
+    return fsearchcsv('data/users.txt', $user);
+}
+
+?>
\ No newline at end of file