Drupal Communication & Stakeholder Relations 2 — Questions and Answers
Question 1: A client wants real-time notifications when content is published on their Drupal site. Which module family best addresses this requirement?
- Rules + Action modules (Correct answer)
- Webform + Notification modules
- Flag + Views modules
- Search API + Facets modules
Correct answer: Rules + Action modules
The Rules module triggers actions based on events like content publication, making it ideal for real-time notification workflows.
Question 2: A stakeholder requests that certain editorial comments on content be visible only to editors, not to the public. Which Drupal feature supports this?
- Revision log messages (Correct answer)
- Taxonomy terms
- Custom block visibility
- Path aliases
Correct answer: Revision log messages
Revision log messages are stored per revision and are only accessible to users with permission to view revision history, keeping editorial notes internal.
Question 3: A project manager needs a weekly digest email of all new content published on a Drupal site sent to stakeholders. What is the best approach?
- Use Views combined with the Simplenews module to schedule digest emails (Correct answer)
- Manually export content via CSV each week
- Use Contact forms to notify each stakeholder individually
- Configure CKEditor to send email on save
Correct answer: Use Views combined with the Simplenews module to schedule digest emails
Views can aggregate content and Simplenews supports scheduled newsletter digests, automating the weekly stakeholder communication.
Question 4: Which Drupal core permission should be granted to allow a stakeholder to view unpublished content without giving full editorial access?
- 'View own unpublished content' or 'View any unpublished content' (Correct answer)
- 'Administer content'
- 'Bypass content access control'
- 'Administer users'
Correct answer: 'View own unpublished content' or 'View any unpublished content'
Drupal provides granular permissions to view unpublished content without granting broader administrative rights.
Question 5: A Drupal site has multiple stakeholder groups who each need to see only their department's announcements. Which approach best enforces this?
- Content moderation with per-role workflows
- Organic Groups or Group module for per-group content access (Correct answer)
- Restricting menus by role
- Using path aliases per department
Correct answer: Organic Groups or Group module for per-group content access
The Group module provides per-group content isolation, letting each stakeholder group see only their own announcements.
Question 6: When communicating a Drupal site redesign timeline to non-technical stakeholders, which artifact is most effective?
- A Gantt chart or milestone roadmap with plain-language descriptions (Correct answer)
- A raw database schema export
- A list of Drush commands to be run
- The composer.json dependency tree
Correct answer: A Gantt chart or milestone roadmap with plain-language descriptions
Gantt charts with plain-language milestones translate technical timelines into formats non-technical stakeholders can understand and approve.
Question 7: A content editor complains they cannot find the 'Manage Display' tab on a content type. What is the most likely cause?
- The editor lacks the 'Administer content types' permission (Correct answer)
- The content type has no fields
- The theme does not support display management
- The Views module is not installed
Correct answer: The editor lacks the 'Administer content types' permission
'Manage Display' requires the 'Administer content types' permission, which is typically restricted to administrators.
A client wants real-time notifications when content is published on their Drupal site.
Which module family best addresses this requirement?