dtable.php 1.1 KB

12345678910111213141516171819202122232425
  1. <?php
  2. $config->branch->dtable = new stdclass();
  3. $config->branch->dtable->fieldList['id']['type'] = 'checkID';
  4. $config->branch->dtable->fieldList['id']['name'] = '';
  5. $config->branch->dtable->fieldList['id']['width'] = 30;
  6. $config->branch->dtable->fieldList['id']['sortType'] = false;
  7. $config->branch->dtable->fieldList['name']['type'] = 'title';
  8. $config->branch->dtable->fieldList['name']['sortType'] = true;
  9. $config->branch->dtable->fieldList['status']['type'] = 'status';
  10. $config->branch->dtable->fieldList['status']['sortType'] = true;
  11. $config->branch->dtable->fieldList['status']['statusMap'] = $lang->branch->statusList;
  12. $config->branch->dtable->fieldList['createdDate']['type'] = 'date';
  13. $config->branch->dtable->fieldList['closedDate']['type'] = 'date';
  14. $config->branch->dtable->fieldList['desc']['type'] = 'desc';
  15. $config->branch->dtable->fieldList['desc']['sortType'] = false;
  16. $config->branch->dtable->fieldList['actions']['type'] = 'actions';
  17. $config->branch->dtable->fieldList['actions']['menu'] = array('edit', 'close|activate');
  18. $config->branch->dtable->fieldList['actions']['list'] = $config->branch->actionList;