Welcome Guest, Not a member yet? Register   Sign In
[In the Works] Datamapper ORM Class
#16

[eluser]xwero[/eluser]
Maybe a stupid remark but the examples state that the controller acts as a model because of the data manipulations and preparations.

I would rather see something like this
Code:
// model

function Some_model()
{
    parent::Model();
    $this->datamapper->model('user');
    // load additional tables
}
function user_get($array = array())
{
   return new User($array);
}

function user_save($mixed,$properties=array())
{
   $u = (empty($properties)?new User():new User($properties);
   }
   if(is_string($mixed))
   {
      $u->fromForm($mixed);
   }
   else
   {
       foreach($mixed as $key=>$val)
       {
           $u->$key = $val;
       }
   }
   $u->save();  
}

// controller
function Some_Controller()
{
    parent::Controller();
    $this->load->model('some_model');
}

function edit()
{
  
   $this->some_model->user_save('signup');
}

Another question is how to get the validation errors for displaying?


Messages In This Thread
[In the Works] Datamapper ORM Class - by El Forum - 08-27-2008, 06:50 AM
[In the Works] Datamapper ORM Class - by El Forum - 08-27-2008, 06:56 AM
[In the Works] Datamapper ORM Class - by El Forum - 08-27-2008, 07:26 AM
[In the Works] Datamapper ORM Class - by El Forum - 08-27-2008, 07:31 AM
[In the Works] Datamapper ORM Class - by El Forum - 08-27-2008, 07:36 AM
[In the Works] Datamapper ORM Class - by El Forum - 08-27-2008, 09:00 AM
[In the Works] Datamapper ORM Class - by El Forum - 08-27-2008, 09:31 AM
[In the Works] Datamapper ORM Class - by El Forum - 08-27-2008, 09:34 AM
[In the Works] Datamapper ORM Class - by El Forum - 08-28-2008, 02:10 AM
[In the Works] Datamapper ORM Class - by El Forum - 08-28-2008, 09:52 AM
[In the Works] Datamapper ORM Class - by El Forum - 08-28-2008, 12:32 PM
[In the Works] Datamapper ORM Class - by El Forum - 08-28-2008, 01:03 PM
[In the Works] Datamapper ORM Class - by El Forum - 08-28-2008, 09:13 PM
[In the Works] Datamapper ORM Class - by El Forum - 08-29-2008, 04:27 AM
[In the Works] Datamapper ORM Class - by El Forum - 08-29-2008, 04:37 AM
[In the Works] Datamapper ORM Class - by El Forum - 08-29-2008, 06:25 AM
[In the Works] Datamapper ORM Class - by El Forum - 08-29-2008, 06:59 PM
[In the Works] Datamapper ORM Class - by El Forum - 08-30-2008, 08:09 AM
[In the Works] Datamapper ORM Class - by El Forum - 09-01-2008, 06:24 AM
[In the Works] Datamapper ORM Class - by El Forum - 09-01-2008, 08:11 AM
[In the Works] Datamapper ORM Class - by El Forum - 10-21-2008, 06:25 PM
[In the Works] Datamapper ORM Class - by El Forum - 10-30-2008, 01:44 PM
[In the Works] Datamapper ORM Class - by El Forum - 10-30-2008, 01:46 PM



Theme © iAndrew 2016 - Forum software by © MyBB