action.php 1.1 KB

123456789101112131415
  1. <?php
  2. global $lang;
  3. $config->researchreport->actionList = array();
  4. $config->researchreport->actionList['edit']['icon'] = 'edit';
  5. $config->researchreport->actionList['edit']['text'] = $lang->researchreport->edit;
  6. $config->researchreport->actionList['edit']['hint'] = $lang->researchreport->edit;
  7. $config->researchreport->actionList['edit']['url'] = array('module' => 'researchreport', 'method' => 'edit', 'params' => 'researchreportID={id}');
  8. $config->researchreport->actionList['delete']['icon'] = 'trash';
  9. $config->researchreport->actionList['delete']['text'] = $lang->researchreport->delete;
  10. $config->researchreport->actionList['delete']['hint'] = $lang->researchreport->delete;
  11. $config->researchreport->actionList['delete']['url'] = array('module' => 'researchreport', 'method' => 'delete', 'params' => 'researchreportID={id}&confirm=yes');
  12. $config->researchreport->actionList['delete']['data-confirm'] = array('message' => $lang->researchreport->confirmDelete);
  13. $config->researchreport->actionList['delete']['class'] = 'ajax-submit';