Still on Drupal 7? Security support for Drupal 7 ended on 5 January 2025. Please visit our Drupal 7 End of Life resources page to review all of your options.
Video detailing what this does Video detailing how this works
This module adds a system similar to publish / unpublished status of nodes. The reason that this is needed is so that you can tell certain roles they can't view nodes while others can. The issue with publishing status is that there is no grey. Menu systems automatically hide unpublished nodes while also checking for the node_access.
This blocks situations where admins and sub-admins need to work on content in the context that it will be presented left in a position where they are unable to do so. This will help create the same level of security that publish status does but without the limitations on admin-esk users to actively work with content the way it will eventually render (menu wise).
Use this module if you want to be able to limit what some users see in books and menus but still want others to have full visibility of those posts.
This should work with other node access methods as the priority of the grants in this module are very high. This is intentional so that it takes priority over all other access control projects, much in the same way that unpublishing a node takes priority over all access control methods.
This module allows you to bypass the default data storage location for fields and entities and instead load the data from a web service.
This is useful when your primary data source is in another system but you want to display/use this data in your Drupal site without the hassle of syncing or importing data.
Web Service Configuration (wsconfig)
Stores information about your web services. This information is used to allow Drupal to make the appropriate CRUD operations on requested data.
Web Service Fields Storage (wsfields_storage)
Defines a field storage controller allowing you to read, write and query fields from a web service. Support for EntityFieldQuery (coming soon) will allow developers to make entity field queries with web service data.
Web Service Fields (wsfields)
Parses data from a web service to be compatible with fields defined by core and some contrib modules. Allows you to use web service data as field data. Thus allowing you to use the same field formatters and standard options defined for the given field.
Web Service Entities (wsentities)
(Coming soon) Define a means to allow Drupal entities to be loaded from a web service instead of the database.