17 lines
283 B
PHP
17 lines
283 B
PHP
<?php
|
|
/**
|
|
* @file
|
|
* admin.features.workflow_access.inc
|
|
*/
|
|
|
|
/**
|
|
* Implements hook_workflow_access_features_default_settings().
|
|
*/
|
|
function admin_workflow_access_features_default_settings() {
|
|
$workflows = array();
|
|
|
|
$workflows['Publication'] = array();
|
|
|
|
return $workflows;
|
|
}
|