Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I dynamically load models in a general-purpose function and I noticed that sometimes I want to skip loading models because it raises a 404 error.

How can I check if the model exists?

Something like:

if($this->modelexists($type) {
  $this->loadModel($type);
} else {
  return "xxx";
}
share|improve this question
What version of CakePHP are you running? – cspray Feb 21 '12 at 18:01
this does not solve the problem because if i try to init a model that does not exists, it still return a 404 – Chobeat Feb 21 '12 at 18:16
i would just go through models dir and check if file exist :) combined with class_exist – Aurimas Ličkus Feb 21 '12 at 18:22
i don't think it's the safest way to do that but i will take it into consideration – Chobeat Feb 21 '12 at 18:44

3 Answers

up vote 5 down vote accepted

Since you haven't specified your version, I've split my answer in two, one for 1.3 and one for 2.0.

CakePHP 1.3

The loadModel() method will return false if it cannot find the model, see the API documentation. So just check it doesn't return false like:

if(!$this->loadModel($type)) {
    return "xxx";
}

CakePHP 2.0

If the model class does not exist, the loadModel() method will throw a MissingModelException, so just catch that.

See the API docs on this.

Example:

try {
    $this->loadModel($type);
} catch(MissingModelException $e) {
    // Model not found!
    echo $e->getMessage();
}
share|improve this answer
Note that loadModel() only exists in controllers. Anywhere else, use App::import() as answered by mark below. – Costa Mar 11 '12 at 1:43

for 1.3 you can use

App::import('Model', 'ModelName');

which returns false if it does not exist

For 2.x I didnt find a working solution yet

share|improve this answer

CakePHP 2.x

function model_exists($type){
  $model_list = array_flip(App::objects('model'));
  return isset($model_list[$type]);
}

You can add this to AppController and use in combination with &__get() to auto-load the model if you like. In that case you may want to use a member variable (e.g. $this->model_list) to save the list so you don't have to call App::objects() each time.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.