FUEL CMS Forum
Discussions
Activity
Home
›
Development
›
Modules
Sign In
·
Register
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Register
Categories
Recent Discussions
Activity
Categories
3.3K
All Categories
255
FUEL CMS News
112
News & Announcements
101
Share
273
Support
115
Bug Reports
90
Installation
242
Development
68
Feature Requests
117
Modules
CRITICAL SECURITY VERSION UPDATE:
https://github.com/daylightstudio/FUEL-CMS/releases/tag/1.4.13
Limit module fields which are displayed in table view in the admin.
feko
September 2014
edited September 2014
in
Modules
Hi,
I created a module which has many field, but I don't want to show all of them in the table view.
Can I limit the fields which should be shown in the table?
Cheers,
Felix
Comments
onegun
September 2014
edited 4:05AM
under config folder, check MY_fuel_modules.php
configure module by include table_headers parameter
$config['modules']['products'] = array(
'module_name' => 'Products',
'table_headers' => array(
'id',
'product_name',
'tinyurl',
'available'
),
);
feko
September 2014
edited 4:05AM
Sweet, thanks!
Sign In
or
Register
to comment.
Forum Software Powered by Vanilla
Comments
configure module by include table_headers parameter
$config['modules']['products'] = array(
'module_name' => 'Products',
'table_headers' => array(
'id',
'product_name',
'tinyurl',
'available'
),
);