]> git.llucax.com Git - mecon/samurai.git/blobdiff - sistema/local_lib/Permiso.php
Perfiles casi empezado. Cambio de la estructura de directorios (OTRA VEZ)
[mecon/samurai.git] / sistema / local_lib / Permiso.php
index cc5137315c1a1d0f0a5a75924f13c2af65cab239..3eaca678202812f5cde016c745469849aa47ad01 100644 (file)
@@ -148,7 +148,7 @@ class Permiso {
      * @return void
      * @access public
      */
-    function Permiso(&$db, $id = null)// ~X2C
+    function Permiso(&$db, $id = null) // ~X2C
     {
         $this->_db          = $db; 
         $this->_id          = $id;
@@ -169,7 +169,7 @@ class Permiso {
      * @return void
      * @access private
      */
-    function _obtenerDatosDb()// ~X2C
+    function _obtenerDatosDb() // ~X2C
     {
         $sql = include 'Permiso/consultas.php'; //Incluyo las consultas de este objeto nada mas.
         $tmp = $sql['obtener_datos_permiso'].$sql['obtener_datos_permiso2'];
@@ -205,7 +205,7 @@ class Permiso {
      * @return mixed
      * @access public
      */
-    function guardarDatos($accion = grabar)// ~X2C
+    function guardarDatos($accion = grabar) // ~X2C
     {
         $accion = strtolower($accion); 
         switch ($accion)  {   
@@ -230,7 +230,7 @@ class Permiso {
      * @return mixed
      * @access protected
      */
-    function _grabarDb()// ~X2C
+    function _grabarDb() // ~X2C
     {
         $idPermiso = $this->_db->nextId('permiso');
         $datos = array (
@@ -249,7 +249,7 @@ class Permiso {
      * @return mixed
      * @access protected
      */
-    function _borrarDb()// ~X2C
+    function _borrarDb() // ~X2C
     {
         $sql = include 'Permiso/consultas.php';
         $datos[] = $this->getId();
@@ -282,7 +282,7 @@ class Permiso {
      * @return mixed
      * @access protected
      */
-    function _modificarDb()// ~X2C
+    function _modificarDb() // ~X2C
     {
         $datos = array (
                     'id_permiso'   => $this->getId(),
@@ -293,6 +293,61 @@ class Permiso {
     }
     // -X2C
 
+    // +X2C Operation 331
+    /**
+     * Arma el array de permisos
+     *
+     * @return array(Permiso)
+     * @access private
+     * @static
+     */
+    function _armarArrayPermisos() // ~X2C
+    {
+        trigger_error('Not implemented!', E_USER_WARNING);
+    }
+    // -X2C
+
+    // +X2C Operation 332
+    /**
+     * Devuleve un array con los identificadores de todos los permisos.
+     *
+     * @return array(int)
+     * @access private
+     * @static
+     */
+    function _getIdPermisos() // ~X2C
+    {
+        trigger_error('Not implemented!', E_USER_WARNING);
+    }
+    // -X2C
+
+    // +X2C Operation 333
+    /**
+     * Devuelve un array asociativo en donde la clave es el identificador y el valor es la descripcion del permiso
+     *
+     * @return array()
+     * @access public
+     * @static
+     */
+    function getSelectPermisos() // ~X2C
+    {
+        trigger_error('Not implemented!', E_USER_WARNING);
+    }
+    // -X2C
+
+    // +X2C Operation 334
+    /**
+     * Devuelve el array de permisos
+     *
+     * @return array(Permiso)
+     * @access public
+     * @static
+     */
+    function getPermisos() // ~X2C
+    {
+    }
+    // -X2C
+
 } // -X2C Class :Permiso
 
 ?>