- Code: Select all
Class 'Entity_Model_DbTable_EntityGroup' not found in /application/modules/Entity/controllers/IndexController.php
Very trimmed code structure follows:
File: application/modules/Entity/controllers/IndexController.php
- Code: Select all
class Entity_IndexController extends Zend_Controller_Action {
public function init() { }
public function indexAction() {
echo "In Controller"
$entity_groups = new Entity_Model_DbTable_EntityGroup();
$this->view->entity_groups = $entity_groups->fetchAll();
}
}
File: application/modules/Entity/models/DbTable/EntityGroup.php
- Code: Select all
class Entity_Model_DbTable_EntityGroup extends Zend_Db_Table_Abstract {
}

