Welcome Guest, Not a member yet? Register   Sign In
Having a model extend another model
#2

[eluser]InsiteFX[/eluser]
MY_Model
Code:
// saveas - ./application/core/MY_Model.php
class Base_model extends CI_Model {

    public function __construct()
    {
        parent::__construct();
    }

    // your code for model 1
}

// saveas - ./application/models/name_model.php
class Model_2 extends Base_model {

    public function __construct()
    {
        parent::__construct();
    }

    // your code for model 2
}

Something like that...


Messages In This Thread
Having a model extend another model - by El Forum - 02-02-2012, 08:10 AM
Having a model extend another model - by El Forum - 02-02-2012, 08:39 AM
Having a model extend another model - by El Forum - 02-02-2012, 08:56 AM
Having a model extend another model - by El Forum - 02-02-2012, 08:59 AM
Having a model extend another model - by El Forum - 02-02-2012, 12:56 PM
Having a model extend another model - by El Forum - 02-02-2012, 02:14 PM
Having a model extend another model - by El Forum - 02-02-2012, 02:31 PM
Having a model extend another model - by El Forum - 02-13-2012, 04:04 PM



Theme © iAndrew 2016 - Forum software by © MyBB