Hi,
I want a function to alter one field, "is_featured" to 1(true) of Event model of given ID, to mark an event as "Featured".
class EventsController extends AppController{
function feature($id){}
}
Hi,
I want a function to alter one field, "is_featured" to 1(true) of Event model of given ID, to mark an event as "Featured".
class EventsController extends AppController{
function feature($id){}
}
you can use saveField to do this for example
$this->Event->id = $id;
$this->Event->saveField('is_featured', true);
more info at http://api13.cakephp.org/class/model#method-ModelsaveField