It looks like you're new here. If you want to get involved, click one of these buttons!
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
class Product_cats_model extends Base_module_model {
function __construct()
{
parent::__construct('fuel_product_cats');
}
public function form_fields($values=array())
{
$fields = parent::form_fields($values);
return $fields;
}
}
$config['modules']['product_cats'] = array(
'module_name' => 'Product Categories',
'module_uri' => 'product_cats',
'model_name' => 'product_cats_model',
'model_location' => '',
'display_field' => 'cat_name',
'preview_path' => '',
'permission' => 'example',
'instructions' => 'The place to add product categories to the system.',
'archivable' => TRUE,
'nav_selected' => 'example'
);
Comments
Thanks