config.php 705 B

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