action.php 1.2 KB

12345678910111213141516
  1. <?php
  2. global $lang, $app;
  3. $config->reviewcl->actionList = array();
  4. $config->reviewcl->actionList['edit']['icon'] = 'edit';
  5. $config->reviewcl->actionList['edit']['text'] = $lang->reviewcl->edit;
  6. $config->reviewcl->actionList['edit']['hint'] = $lang->reviewcl->edit;
  7. $config->reviewcl->actionList['edit']['url'] = array('module' => 'reviewcl', 'method' => 'edit', 'params' => 'reviewclID={id}');
  8. $config->reviewcl->actionList['edit']['data-toggle'] = 'modal';
  9. $config->reviewcl->actionList['edit']['data-size'] = 'sm';
  10. $config->reviewcl->actionList['delete']['icon'] = 'trash';
  11. $config->reviewcl->actionList['delete']['text'] = $lang->reviewcl->delete;
  12. $config->reviewcl->actionList['delete']['hint'] = $lang->reviewcl->delete;
  13. $config->reviewcl->actionList['delete']['url'] = array('module' => 'reviewcl', 'method' => 'delete', 'params' => 'reviewclID={id}');
  14. $config->reviewcl->actionList['delete']['className'] = 'ajax-submit';
  15. $config->reviewcl->actionList['delete']['data-confirm'] = array('message' => $lang->reviewcl->confirmDelete, 'icon' => 'icon-exclamation-sign', 'iconClass' => 'warning-pale rounded-full icon-2x');