Example #1
0
 /**
  *
  * @param string $entity
  * @return Ajde_Model
  */
 protected function _getEntityModel($entityName)
 {
     Model::registerAll();
     $entityModelName = ucfirst((string) $entityName) . 'Model';
     return new $entityModelName();
 }
Example #2
0
 protected function __construct()
 {
     Model::registerAll();
     // Load applications bootstrap file
     require_once APP_DIR . 'Bootstrap.php';
 }