Reputation: 28284
I am learning cakephp. can someone explain me what this is for
$this->RunFunction->bindModel(array('belongsTo'=>array('Audio','Image','Video')));
where would I find the RunFunction. Its in a plugin folder of cakephp
Upvotes: 0
Views: 135
Reputation: 2580
Is it a model in the plugin? The models would be found in app/plugins/pluginname/models...
So app/plugins/name/models/run_function.php I guess.
Upvotes: 3