dtable.php 1.6 KB

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. global $app, $lang;
  3. $app->loadLang('workflowrule');
  4. $config->workflowrule->dtable = new stdclass();
  5. $config->workflowrule->dtable->fieldList['id']['title'] = $lang->idAB;
  6. $config->workflowrule->dtable->fieldList['id']['type'] = 'id';
  7. $config->workflowrule->dtable->fieldList['id']['sortType'] = true;
  8. $config->workflowrule->dtable->fieldList['name']['type'] = 'title';
  9. $config->workflowrule->dtable->fieldList['name']['sortType'] = true;
  10. $config->workflowrule->dtable->fieldList['rule']['flex'] = 1;
  11. $config->workflowrule->dtable->fieldList['rule']['hint'] = true;
  12. $config->workflowrule->dtable->fieldList['type']['map'] = $lang->workflowrule->typeList;
  13. $config->workflowrule->dtable->fieldList['type']['width'] = 120;
  14. $config->workflowrule->dtable->fieldList['type']['sortType'] = true;
  15. $config->workflowrule->dtable->fieldList['createdBy']['type'] = 'user';
  16. $config->workflowrule->dtable->fieldList['createdBy']['width'] = 120;
  17. $config->workflowrule->dtable->fieldList['createdBy']['sortType'] = true;
  18. $config->workflowrule->dtable->fieldList['createdDate']['type'] = 'date';
  19. $config->workflowrule->dtable->fieldList['createdDate']['width'] = 120;
  20. $config->workflowrule->dtable->fieldList['createdDate']['sortType'] = true;
  21. $config->workflowrule->dtable->fieldList['actions']['type'] = 'actions';
  22. $config->workflowrule->dtable->fieldList['actions']['width'] = 80;
  23. $config->workflowrule->dtable->fieldList['actions']['list'] = $config->workflowrule->actionList;
  24. $config->workflowrule->dtable->fieldList['actions']['menu'] = array('edit', 'delete');