effort.php 515 B

123456789101112131415
  1. <?php
  2. $this->app->loadLang('user');
  3. $this->app->loadLang('dataview');
  4. $schema = new stdclass();
  5. $schema->primaryTable = 'effort';
  6. $schema->tables = array();
  7. $schema->tables['effort'] = 'zt_effort';
  8. $schema->fields = array();
  9. $schema->fields['id'] = array('type' => 'number', 'name' => $this->lang->user->id);
  10. $schema->fields['account'] = array('type' => 'user', 'name' => $this->lang->user->realname);
  11. $schema->fields['consumed'] = array('type' => 'number', 'name' => $this->lang->dataview->consumed);