Example #1
0
 /**
  * Method to get a model object, loading it if required.
  *
  * @param   string  $name    The model name. Optional.
  * @param   string  $prefix  The class prefix. Optional.
  * @param   array   $config  Configuration array for model. Optional.
  *
  * @return  object  The model.
  *
  * @since   1.6
  */
 public function getModel($name = '', $prefix = '', $config = array('ignore_request' => true))
 {
     return parent::getModel($name, $prefix, array('ignore_request' => false));
 }