Re: Is it possible to add any date for saving in beforeSave method in app_controller.php

2013-04-29 Thread Reuben
n Varshney > *Sent:* Sunday, April 28, 2013 3:02 PM > *To:* cake...@googlegroups.com > *Subject:* Re: Is it possible to add any date for saving in beforeSave > method in app_controller.php > > > > *Please ignore previous reply-* > Now > You *cannot* do save these fields from ap

RE: Is it possible to add any date for saving in beforeSave method in app_controller.php

2013-04-28 Thread Advantage+
ke-php@googlegroups.com Subject: Re: Is it possible to add any date for saving in beforeSave method in app_controller.php Please ignore previous reply- Now You cannot do save these fields from app controller rather than you can do it from app_model. override beforeSave function and modify que

Re: Is it possible to add any date for saving in beforeSave method in app_controller.php

2013-04-28 Thread Chetan Varshney
*Please ignore previous reply-* Now You *cannot* do save these fields from app controller rather than you can do it from app_model. override beforeSave function and modify query for changed_by and modified_by On Sun, Apr 28, 2013 at 10:56 PM, Zahidur Rahman wrote: > Hi Experts, > I have almost 2

Re: Is it possible to add any date for saving in beforeSave method in app_controller.php

2013-04-28 Thread Chetan Varshney
You can do save these fields from app controller rather than you can do it from app_model. override beforeSave function and modify query for changed_by and modified_by On Sun, Apr 28, 2013 at 10:56 PM, Zahidur Rahman wrote: > Hi Experts, > I have almost 23 table in which i have added created_by

Is it possible to add any date for saving in beforeSave method in app_controller.php

2013-04-28 Thread Zahidur Rahman
Hi Experts, I have almost 23 table in which i have added created_by and modified_by field. Is there any way to save these two field from app_controller.php. I mean i dont want to add those field in eash method where i am saving. I want to do it from app_controller.php. Please let me know it is poss