Welcome Guest, Not a member yet? Register   Sign In
Adding to data array for all functions in model
#2

[eluser]Pascal Kriete[/eluser]
Two options:
Code:
// Should work
var $data = array('section' => 'articles');

// Or (better):
var $data;

function __construct()
{
    parent::__construct();
    $this->data['section'] = 'articles';
}


Messages In This Thread
Adding to data array for all functions in model - by El Forum - 09-24-2008, 12:43 PM
Adding to data array for all functions in model - by El Forum - 09-24-2008, 12:51 PM
Adding to data array for all functions in model - by El Forum - 09-24-2008, 01:02 PM
Adding to data array for all functions in model - by El Forum - 09-24-2008, 01:29 PM
Adding to data array for all functions in model - by El Forum - 09-24-2008, 01:31 PM



Theme © iAndrew 2016 - Forum software by © MyBB