casemodule.php 473 B

123456789101112131415161718
  1. <?php
  2. $this->app->loadLang('tree');
  3. $this->app->loadLang('dataview');
  4. $schema = new stdclass();
  5. $schema->primaryTable = 'casemodule';
  6. $schema->tables = array();
  7. $schema->tables['casemodule'] = 'zt_module';
  8. $schema->joins = array();
  9. $schema->fields = array();
  10. $schema->fields['id'] = array('type' => 'number', 'name' => $this->lang->dataview->id);
  11. $schema->fields['name'] = array('type' => 'string', 'name' => $this->lang->tree->module);
  12. $schema->objects = array();