Re: How use __consruct in model

2010-03-10 Thread Jets
Thanks Andy...its working now...

On Mar 9, 8:10 pm, Andy Dirnberger  wrote:
> 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  wrote:
>
> > Hi,  i am trying to use constructor in models. my code is that
>
> >  > 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 cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: How use __consruct in model

2010-03-09 Thread Andy Dirnberger
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  wrote:
> Hi,  i am trying to use constructor in models. my code is that
>
>  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 cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: How use __consruct in model

2010-03-08 Thread nurvzy
__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  wrote:
> Hi,  i am trying to use constructor in models. my code is that
>
>  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 cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


How use __consruct in model

2010-03-08 Thread Jets
Hi,  i am trying to use constructor in models. my code is that

 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 cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en