admin.features.workflow_access.inc 283 B

12345678910111213141516
  1. <?php
  2. /**
  3. * @file
  4. * admin.features.workflow_access.inc
  5. */
  6. /**
  7. * Implements hook_workflow_access_features_default_settings().
  8. */
  9. function admin_workflow_access_features_default_settings() {
  10. $workflows = array();
  11. $workflows['Publication'] = array();
  12. return $workflows;
  13. }