I've noticed that the default value for a module's instruction is set to the module name. Problem is that having module indexes like courses_disciplines you end up having "Here you can manage the courses_disciplines for your site.".
Should the reference be the module_name index in each module section? in the _fuel_modules.php config?
Comments
https://github.com/daylightstudio/FUEL-CMS/commit/39516d209661225aac3a5ceec4a0dd1f96c6ec86
For example in:
$config['modules']['bio_categories'] = array(
'module_name' => 'Categories',
'module_uri' => 'bio/categories',
'model_name' => 'bio_categories_model',
'model_location' => 'bio',
'table_headers' => array(
'id',
'name',
'precedence',
'published'
),
'nav_selected' => 'bio/categories',
'instructions' => 'Here you can manage categories.'
);
...shouldn't the Instruction read the lowercase value of 'module_name', as I suspect that most people would use a sensible name that would easily be understandable in the instructions.
Severity: Notice --> Undefined property: Module::$model_name \wamp\www\fpse\fuel\modules\fuel\controllers\module.php 79
Am I possibly doing something wrong? Is there someplace I should specify my module prefix?
// set instructions if (empty($return['instructions'])) { $return['instructions'] = lang('module_instructions_default', strtolower($return['module_name'])); }
Try this out and see if that fixes your issue.