Good day!
Manually created module (not by Modules constructor) is not shown in the list of all modules in “Roles management” and in the tab “Access rights” for user?
Or how can i add my new module in the list of all modules for setting accesses to my module?
Thank you in advance!
After insert 8 records in the table acl_actions new module has appeared in the list of modules in “Roles management”.
you can always run a Quick Build & Repair, Repair Relationships and Repair Roles, those three thins are important when implementing new modules
best regards
The SQL is:
INSERT INTO acl_actions
(id
, date_entered
, date_modified
, modified_user_id
, created_by
, name
, category
, acltype
, aclaccess
, deleted
) VALUES
(‘3fac12de-c648-e3fe-4aa2-575ae0555111’, ‘2016-06-10 15:46:52’, ‘2016-06-10 15:46:52’, ‘1’, ‘’, ‘access’, ‘Orders’, ‘module’, 89, 0),
(‘44bd277b-3ce2-8ba2-ddef-575ae0f69222’, ‘2016-06-10 15:46:52’, ‘2016-06-10 15:46:52’, ‘1’, ‘’, ‘view’, ‘Orders’, ‘module’, 90, 0),
(‘4a577796-ec9d-0b32-3af7-575ae0688333’, ‘2016-06-10 15:46:52’, ‘2016-06-10 15:46:52’, ‘1’, ‘’, ‘list’, ‘Orders’, ‘module’, 90, 0),
(‘4eafbcaa-4ce6-6eb5-2c98-575ae069b444’, ‘2016-06-10 15:46:52’, ‘2016-06-10 15:46:52’, ‘1’, ‘’, ‘edit’, ‘Orders’, ‘module’, 90, 0),
(‘543f06ae-ef9b-d1d0-d923-575ae0a6f555’, ‘2016-06-10 15:46:52’, ‘2016-06-10 15:46:52’, ‘1’, ‘’, ‘delete’, ‘Orders’, ‘module’, 90, 0),
(‘5aa6a173-416b-5f23-04be-575ae02d9666’, ‘2016-06-10 15:46:52’, ‘2016-06-10 15:46:52’, ‘1’, ‘’, ‘import’, ‘Orders’, ‘module’, 90, 0),
(‘6063612c-221e-6ffc-39de-575ae00ac777’, ‘2016-06-10 15:46:52’, ‘2016-06-10 15:46:52’, ‘1’, ‘’, ‘export’, ‘Orders’, ‘module’, 90, 0),
(‘64ac3155-3908-4d0d-2980-575ae02d1888’, ‘2016-06-10 15:46:52’, ‘2016-06-10 15:46:52’, ‘1’, ‘’, ‘massupdate’, ‘Orders’, ‘module’, 90, 0);