Hi Team!!
I made a Custom Module, but dont have action "Mass Edit". I try to modify Roles, etc.. only work "mass edit" in "Administrator" Role.

In Profile dont have "mass edit" Check box.

Thanks 4 all!!
Hi.
The fact that you see these 4 actions is a security error we inherited from vtiger. You shouldn't see anything that was added to the profile at the script level.
Hi Paula,
Is there any way to enable "edit mass"?, may be modify some php file?.
Thanks!
I corrected the creation of modules should now work correctly. Create a module, or call the function enableTools
I changed that to fix it.. but doesn't work

After change:

I checked and work only from New Module.. Can i enable in current custom module? sorry, but i dont know how to call functions. :(
try this
$module = new Vtiger_Module();
$moduleInstance = $module->getInstance('ModuleName');
$moduleInstance->enableTools(['Import', 'Export', 'DuplicatesHandling', 'CreateCustomFilter',
'DuplicateRecord', 'MassEdit', 'MassDelete', 'MassAddComment', 'MassTransferOwnership',
'ReadRecord', 'WorkflowTrigger', 'Dashboard', 'CreateDashboardFilter',
'QuickExportToExcel', 'TagCloud', 'DetailTransferOwnership', 'ExportPdf',
'RecordMapping', 'RecordMappingList', 'FavoriteRecords', 'WatchingRecords',
'WatchingModule', 'RemoveRelation']);
Thanks!, It Worked!... Only needed add "require_once" on the first line.
require_once 'vtlib/Vtiger/Module.php';