tags:

views:

18

answers:

1

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){}
}
+2  A: 

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

dqminh