Page Feedback Up/Down adds a one-click thumbs up / thumbs down widget to any page, with an optional comment (required when the vote is negative), so site owners can find out whether a page actually helped visitors and why.
Feedback is centralized on an admin page where the content team can browse, filter, and export it to CSV. A REST endpoint, protected by dedicated permissions, exposes the same data for reporting tools like Power BI or Zapier. The module needs no per-content-type configuration, and the frontend widget is keyboard and screen reader accessible.
It was built for content and communications teams, particularly in universities and government departments, who need to justify decisions about a page with what visitors actually say, not just traffic numbers.
How it differs from similar projects
- Rate provides a general-purpose voting framework (stars, thumbs, emojis) for any content type. Page Feedback is narrower by design: a single opinionated "did this page help you?" flow with a built-in comment field and a dedicated admin review screen, rather than a generic rating API you need to configure.
- Feedback collects short free-text messages but has no yes/no helpfulness signal and no REST API for exporting responses.
- Simple Feedback is lightweight but has no admin review interface and no API.
Manual reviews of other projects
- [1.0.x] Smart 404: https://www.drupal.org/project/projectapplications/issues/3611786#comment-16706998
- [1.0.x] LatentKit AI Provider: https://www.drupal.org/project/projectapplications/issues/3611149#comment-16707005
- [1.0.x] Commerce GA4 Datalayer: https://www.drupal.org/project/projectapplications/issues/3610823#comment-16707018
- [3.0.x] SearchUnify Drupal Connector: https://www.drupal.org/project/projectapplications/issues/3615162#comment-16721021
- [1.0.x] Image 404 Fallback: https://www.drupal.org/project/projectapplications/issues/3590877#comment-16721041
- [3.0.x] Commerce Mercado Pago: https://www.drupal.org/project/projectapplications/issues/3573800#comment-16721047
- [1.0.x] Botshield: https://www.drupal.org/project/projectapplications/issues/3577384#comment-16721115
- [1.0.x] Image Scale and Fill Background Effect: https://www.drupal.org/project/projectapplications/issues/3448428#comment-16721142
- [1.0.x] AI Content Translator: https://www.drupal.org/project/projectapplications/issues/3614060#comment-16721165
Comments
Comment #2
vishal.kadamComment #3
santerref commentedComment #4
santerref commentedComment #5
santerref commentedComment #6
santerref commentedComment #7
santerref commentedComment #8
avpadernoThank you for applying!
Before giving links helpful to understand how the review process works, what to expect from a review, and what to do to avoid a review takes more time than needed, I would like to thank all the reviewers for the work they do.
These applications are volunters-driven, which also means it is not possible to predict when an application will be marked fixed and the applicant will get the permission to opt projects into security advisory policy. While we aim to make an application as quick as possible, it is also important for us that more people review the project used for an application. In this way, we make sure applications do not miss some important points that should be instead reported.
Applications are not meant to be complete debugging sessions that eliminate every existing bug, though. I apologize if sometimes applications seem to go into too-detailed reviews.
Please read Review process for security advisory coverage: What to expect for more details and Security advisory coverage application checklist to understand what reviewers look for. Tips for ensuring a smooth review gives some hints for a smoother review.
The important notes are the following.
Keep in mind that once the project is opted into security advisory coverage, only Security Team members may change coverage.
To the reviewers
Please read How to review security advisory coverage applications, Application workflow, What to cover in an application review, and Tools to use for reviews.
The important notes are the following.
For new reviewers, I would also suggest to first read In which way the issue queue for coverage applications is different from other project queues.
Comment #9
vishal.kadam1. FILE: src/PageFeedbackCsvExporter.php
FILE: src/PageFeedbackFilters.php
FILE: src/PageFeedbackListBuilder.php
FILE: src/SpamCleaner.php
FILE: src/Controller/PageFeedbackExportController.php, src/Form/PageFeedbackFilterForm.php
FILE: src/Form/PageFeedbackForm.php
FILE: src/Plugin/Block/PageFeedbackBlock.php
Modules which are compatible with Drupal 10 and higher versions are expected to use constructor property promotion.
2. FILE: src/Entity/PageFeedback.php
Projects that are compatible with Drupal 10 or higher versions should use attributes instead of annotations.
Comment #10
santerref commentedThanks for the review. The first point is fixed (Commit 2643025b), every constructor now uses property promotion.
On the second one, the entity type has to keep its annotation for now. Entity type discovery only started reading attributes in Drupal 11.1. On 10.6.x it is still plain AnnotatedClassDiscovery, and Drupal\Core\Entity\Attribute\ContentEntityType does not exist there at all, so an attribute would leave the entity undiscovered on every Drupal 10 site. The module supports ^10.3 || ^11 and I would rather not drop 10 for this.
The plugin types that did get attributes in 10.2 and 10.3 are already converted: the block uses #[Block] and the hooks use #[Hook] with #[LegacyHook] shims.
I will switch the entity over as soon as the module requires 11.1 or later.
Pipeline is fine (passed).
Comment #11
santerref commentedComment #12
santerref commentedComment #13
avpadernoThank you for your contribution and for your patience with the review process!
I am going to update your account so you can opt into security advisory coverage any project you create, including the projects you already created.
These are some recommended readings to help you with maintainership:
You can find more contributors chatting on Slack or IRC in #drupal-contribute. So, come hang out and stay involved!
Anyone is welcome to participate in the review process. Please consider reviewing other projects that are pending review. I encourage you to learn more about that process and join the group of reviewers.
I thank also all the reviewers for helping with these applications.
Comment #14
avpaderno