__construct() is used in Model.php (http://api.cakephp.org/class/ model#method-Model__construct). So either you will need to override it correctly (calling the parent with the correct parameters) or you'll need to review what it does and maintain that contract in your custom __construct().
Hope that helps, Nick On Mar 8, 11:10 pm, Jets <[email protected]> wrote: > Hi, i am trying to use constructor in models. my code is that > > <?php > class TypeDeal extends AppModel { > var $name ='TypeDeal'; > > var $validate =array( > 'id' => array('rule' => 'notEmpty', 'message' => 'Not Empty') > ); > function __construct(){ > // parent::$this->useTable=null; > //set the $generic variable for enabling the functions > defined in > AppModel > parent::$this->generic=true; > } > > } > > but its not working. can anyone tell me , how we can use this... Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions. You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en
