dtable.php 1.2 KB

12345678910111213141516171819202122
  1. <?php
  2. global $app;
  3. $config->researchreport->dtable = new stdclass();
  4. $config->researchreport->dtable->fieldList['id']['title'] = $lang->idAB;
  5. $config->researchreport->dtable->fieldList['id']['type'] = 'checkID';
  6. $config->researchreport->dtable->fieldList['title']['link'] = array('url' => array('module' => 'researchreport', 'method' => 'view', 'params' => 'reportID={id}'));
  7. $config->researchreport->dtable->fieldList['title']['width'] = '800';
  8. $config->researchreport->dtable->fieldList['title']['sortType'] = true;
  9. $config->researchreport->dtable->fieldList['author']['type'] = 'user';
  10. $config->researchreport->dtable->fieldList['author']['sortType'] = true;
  11. $config->researchreport->dtable->fieldList['createdDate']['type'] = 'datetime';
  12. $config->researchreport->dtable->fieldList['createdDate']['sortType'] = true;
  13. $config->researchreport->dtable->fieldList['actions']['type'] = 'actions';
  14. $config->researchreport->dtable->fieldList['actions']['title'] = $lang->actions;
  15. $config->researchreport->dtable->fieldList['actions']['width'] = '50';
  16. $config->researchreport->dtable->fieldList['actions']['menu'] = array('edit');
  17. $config->researchreport->dtable->fieldList['actions']['list'] = $config->researchreport->actionList;