| 1 |
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); |
| 2 |
|
| 3 |
class Locations_controller extends Backend_controller_crud |
| 4 |
{ |
| 5 |
function __construct() |
| 6 |
{ |
| 7 |
$this->conf = array( |
| 8 |
'model' => 'Location_model', |
| 9 |
'path' => 'admin/locations', |
| 10 |
'entity' => 'location', |
| 11 |
); |
| 12 |
parent::__construct(); |
| 13 |
} |
| 14 |
} |
| 15 |
|
| 16 |
/* End of file customers.php */ |
| 17 |
/* Location: ./application/controllers/admin/categories.php */ |