Welcome Guest, Not a member yet? Register   Sign In
I need a supermodel. :)
#2

[eluser]tomcode[/eluser]
You can create a MY_Model library which extends the core Model library, every Model loaded will extend it.

file application/libraries/MY_Model.php :
Code:
class MY_Model extends Model {

    function MY_Model()
    {
        parent::Model();
    }
}

Edit :
Extending Models :
Code:
class Extending_model extends MY_Model {

    function Extending_model() {

        parent::MY_Model();
    }
}


Messages In This Thread
I need a supermodel. :) - by El Forum - 02-06-2010, 10:43 PM
I need a supermodel. :) - by El Forum - 02-07-2010, 01:39 AM
I need a supermodel. :) - by El Forum - 02-07-2010, 02:52 AM
I need a supermodel. :) - by El Forum - 02-07-2010, 10:16 AM
I need a supermodel. :) - by El Forum - 02-07-2010, 12:34 PM



Theme © iAndrew 2016 - Forum software by © MyBB