CHANGELOG.txt |
CHANGELOG.txt |
|
Since 7.x-1.0
Performance improvements.
Major restructure of admin UI.
Workflow form detached from comment form.
Workflow status and form are fields that can be controlled under "Manage display."
Issue #1783854 by antojose: Allow setting… |
README.txt |
README.txt |
|
********************************************************************
D R U P A L M O D U L E
********************************************************************
Name: Workflow Module
Author: John VanDyk
Maintainers: Mark… |
README.txt |
workflow_vbo/README.txt |
|
CONTENTS OF THIS FILE
---------------------
* Introduction
INTRODUCTION
------------
There is an important issue to keep in mind as you use action hooks and workflow!!
If the machine readable name of the content type on which you want to define… |
README.txt |
workflow_field/README.txt |
|
This is a re-implementation of the Workflow module, using the Field API instead of the Form API.
The field definition (and widget and formatters) is implemented as lazy-loading classes in the main workflow module.
The activation of the Field type is… |
README.txt |
workflow_actions/README.txt |
|
CONTENTS OF THIS FILE
---------------------
* Introduction
INTRODUCTION
------------
There is an important issue to keep in mind as you use action hooks and workflow!!
If the machine readable name of the content type on which you want to define… |
README.txt |
workflow_rules/README.txt |
|
As of Workflow 7.x-1.3, the module Workflow Rules supports Workflow Field API.
Every Node Action and Condition is copied to an Entity Action and Condition. |
UPDATE.txt |
UPDATE.txt |
|
CONTENTS OF THIS FILE
---------------------
* Update from Drupal 6 to Drupal 7 Instructions
* Update Rules that use Workflow
UPDATE FROM DRUPAL 6 TO DRUPAL 7 INSTRUCTIONS
------------
Upgrading from 6 to 7 for Workflow using this module is… |
workflow.api.php |
workflow.api.php |
|
Hooks provided by the workflow module. |
workflow.deprecated.inc |
workflow.deprecated.inc |
|
Contains contains per-class functions, that are deprecated.
Usage: The new code can be tested, by removing this file-include from workflow.module. |
workflow.features.inc |
workflow.features.inc |
|
Integrates workflow with features. |
workflow.info |
workflow.info |
|
name = Workflow
description = "Allows the creation and assignment of arbitrary workflows to node types."
package = Workflow
core = 7.x
files[] = workflow.pages.inc
files[] = includes/Entity/Workflow.php
files[] =… |
workflow.install |
workflow.install |
|
Install, update and uninstall functions for the workflow module. |
workflow.module |
workflow.module |
|
Support workflows made up of arbitrary states. |
workflow.node.inc |
workflow.node.inc |
|
Node specific functions, remnants of nodeapi. |
workflow.node.type_map.inc |
workflow.node.type_map.inc |
|
Node specific functions, remnants of nodeapi. |
workflow.pages.inc |
workflow.pages.inc |
|
Provide user interface for changing workflow state. |
Workflow.php |
includes/Entity/Workflow.php |
|
Contains workflow\includes\Entity\Workflow. |
workflow.tokens.inc |
workflow.tokens.inc |
|
Tokens hooks for Workflow module. |
WorkflowD7Base.php |
includes/Field/WorkflowD7Base.php |
|
Contains workflow\includes\Field\WorkflowD7Base. |
WorkflowDefaultWidget.php |
includes/Field/WorkflowDefaultWidget.php |
|
Contains workflow\includes\Field\WorkflowDefaultWidget. |
workflowfield.field.inc |
workflow_field/workflowfield.field.inc |
|
Defines a Workflow field, widget and formatter. (copied from list field). |
workflowfield.formatter.inc |
workflow_field/workflowfield.formatter.inc |
|
Defines a Workflow formatter.
You won't find a DefaultFormatter, because: |
workflowfield.info |
workflow_field/workflowfield.info |
|
name = Workflow field
description = Defines a Workflow field, widget and formatter. THIS VERSION IS NOT SUITED FOR PRODUCTION SITES.
package = Workflow
core = 7.x
dependencies[] = field
dependencies[] = options
dependencies[] = workflow |
workflowfield.install |
workflow_field/workflowfield.install |
|
Install, update and uninstall functions for the list module. |
workflowfield.module |
workflow_field/workflowfield.module |
|
Support workflows made up of arbitrary states. |
workflowfield.widget.inc |
workflow_field/workflowfield.widget.inc |
|
Defines a Workflow field, widget (sfrom options.module) and formatter (from list field).
All hooks are wrapper functions for a D8-style WorkflowDefaultWidget object. |
WorkflowItem.php |
includes/Field/WorkflowItem.php |
|
Contains workflow\includes\Field\WorkflowItem. |
WorkflowScheduledTransition.php |
includes/Entity/WorkflowScheduledTransition.php |
|
Contains workflow\includes\Entity\WorkflowScheduledTransition. |
WorkflowState.php |
includes/Entity/WorkflowState.php |
|
Contains workflow\includes\Entity\WorkflowState. |
WorkflowTransition.php |
includes/Entity/WorkflowTransition.php |
|
Contains workflow\includes\Entity\WorkflowTransition. |
WorkflowUnitTest.test |
includes/Test/WorkflowUnitTest.test |
|
Contains workflow\lib\entity\WorkflowUnitTest. |
workflow_access.features.inc |
workflow_access/workflow_access.features.inc |
|
|
workflow_access.info |
workflow_access/workflow_access.info |
|
name = Workflow access
description = Content access control based on workflows and roles.
dependencies[] = workflow
package = Workflow
core = 7.x |
workflow_access.install |
workflow_access/workflow_access.install |
|
Workflow access installation. |
workflow_access.module |
workflow_access/workflow_access.module |
|
Provides node access permissions based on workflow states. |
workflow_access.workflow.inc |
workflow_access/workflow_access.workflow.inc |
|
Provides node access permissions based on workflow states. |
workflow_actions.info |
workflow_actions/workflow_actions.info |
|
name = Workflow actions and triggers
description = Provides actions and triggers for workflows.
dependencies[] = workflow
dependencies[] = trigger
package = Workflow
core = 7.x |
workflow_actions.module |
workflow_actions/workflow_actions.module |
|
Provide actions and triggers for workflows.
Why it's own module? Some sites prefer rules, some prefer actions,
all prefer a lower code footprint and better performance.
Additional credit to gcassie ( http://drupal.org/user/80260 ) for
the initial… |
workflow_admin_ui.api.php |
workflow_admin_ui/workflow_admin_ui.api.php |
|
Hooks provided by the workflow_admin_ui module. |
workflow_admin_ui.css |
workflow_admin_ui/workflow_admin_ui.css |
|
Style Sheets for the Workflow_Admin_UI module. |
workflow_admin_ui.info |
workflow_admin_ui/workflow_admin_ui.info |
|
name = Workflow UI
description = "Provides administrative UI for workflow."
package = Workflow
dependencies[] = workflow
core = 7.x
configure = admin/config/workflow/workflow
stylesheets[all][] = workflow_admin_ui.css |
workflow_admin_ui.install |
workflow_admin_ui/workflow_admin_ui.install |
|
Install, update and uninstall functions for the workflow_admin_ui module. |
workflow_admin_ui.module |
workflow_admin_ui/workflow_admin_ui.module |
|
Provides administrative UI for workflow.
Why it's own module? Lower code footprint and better performance.
Additional credit to gcassie ( http://drupal.org/user/80260 ) for
the initial push to split UI out of core workflow.
We're moving… |
workflow_admin_ui.pages.inc |
workflow_admin_ui/workflow_admin_ui.pages.inc |
|
Provides administrative UI for workflow.
Why it's own module? Lower code footprint and better performance.
Additional credit to gcassie ( http://drupal.org/user/80260 ) for
the initial push to split UI out of core workflow.
We're moving… |
workflow_cleanup.info |
workflow_cleanup/workflow_cleanup.info |
|
name = Workflow Clean Up
description = "Cleans up Workflow cruft"
dependencies[] = workflow
core = 7.x
package = Workflow |
workflow_cleanup.module |
workflow_cleanup/workflow_cleanup.module |
|
Cleans up Workflow cruft that may build up over time. |
workflow_notify.admin.inc |
workflow_notify/workflow_notify.admin.inc |
|
Admin UI to Notify roles for Workfllow state transitions. |
workflow_notify.info |
workflow_notify/workflow_notify.info |
|
name = Workflow Notify
description = Notify roles of Workflow transitions.
dependencies[] = workflow
configure = admin/config/workflow/workflow
core = 7.x
package = Workflow |
workflow_notify.module |
workflow_notify/workflow_notify.module |
|
Notify roles for Workfllow state transitions. |
workflow_notify_og.info |
workflow_notify/workflow_notify_og/workflow_notify_og.info |
|
name = Workflow Notify OG
description = Notify roles by OG groups of Workflow transitions.
dependencies[] = workflow_notify
core = 7.x
package = Workflow |