4cakephp icon indicating copy to clipboard operation
4cakephp copied to clipboard

useful DRY snippets for the CakePHP framework

Results 1 4cakephp issues
Sort by recently updated
recently updated
newest added

Add 'auto_bind_models' => array( 'CreatorModel' => 'CreatedBy', 'ModifierModel' => 'ModifiedBy' ) to $this->_defaults And then, replace: CreatedBy => array('className' => $this->settings[$model->alias]['user_model'], With $this->settings[$model->alias]['auto_bind_models']['CreatorModel'] => array('className' => $this->settings[$model->alias]['user_model'], And $ModifiedBy =>...