You need to do two things:
1. Accept all of the parent constructor's parameters
2. Call the parent constructor

function __construct($id = false, $table = null, $ds = null) {
  parent::__construct($id, $table, $ds);

  ...

}

That said, I'm not exactly sure what you're doing with parent::$this-
>VAR. You don't need "parent::," and, if all you're doing to do in the
constructor is assign a few values, you can skip the constructor
altogether:
class TypeDeal extends AppModel {
  var $useTable = null;
  var $general = true;

  ...

}

On Mar 9, 1:10 am, 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

Reply via email to