config.php 681 B

12345678910111213141516
  1. <?php
  2. $config->budget = new stdclass();
  3. $config->budget->editor = new stdclass();
  4. $config->budget->create = new stdclass();
  5. $config->budget->edit = new stdclass();
  6. $config->budget->editor->create = array('id' => 'desc', 'tools' => 'simpleTools');
  7. $config->budget->editor->edit = array('id' => 'desc', 'tools' => 'simpleTools');
  8. $config->budget->create->requiredFields = 'stage,subject,name';
  9. $config->budget->edit->requiredFields = 'stage,subject,name';
  10. $config->budget->actions = new stdclass();
  11. $config->budget->actions->view = array();
  12. $config->budget->actions->view['mainActions'] = array();
  13. $config->budget->actions->view['suffixActions'] = array('edit', 'delete');