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

Reply via email to