У меня есть функция комментариев, у меня есть поле «status» в таблице комментариев. Я хочу проверить это значение конкретного поля, если оно равно 0 или нет в контроллере.*
function admin_publish ($id = null){
if (!$id) {
// set flash message
$this->Session->setFlash('Invalid id for Location','default',
array('class' => 'flash_bad'));
// redirect
$this->redirect(array('action'=>'admin_index'));
}else{
// if comment status field 0
if($comments['Comment']['status']== null){
// change status from 0 to 1
$this->Comment->saveField('status',1);
// set flash message
$this->Session->setFlash('The Comment was successfully
Published.');
} else {
$this->Comment->saveField('status', 0);
// set flash message
$this->Session->setFlash('The Comment could not be NotPublished.');
}
// redirect
$this->redirect(array('action'=>'admin_index'));
}
}