I have a Node Model with variable translateFields (using CakePhp):
class Node extends AppModel {
public $translateFields = array('title');
.....
}
For any case (not all), I want change to:
public $translateFields = array('title','field_image');
How I do this? Change in Controller or where?