Limit module fields which are displayed in table view in the admin.

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

  • edited 10:52AM
    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'
    ),
    );
  • edited 10:52AM
    Sweet, thanks!
Sign In or Register to comment.