PHPackages                             vulcandigital/silverstripe-pagefeedback - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. vulcandigital/silverstripe-pagefeedback

ActiveSilverstripe-vendormodule

vulcandigital/silverstripe-pagefeedback
=======================================

This module allows you to add a form to any page type for the purpose of accruing feedback about how a user perceives that page.

2.0.3(6y ago)9417↓100%5[3 issues](https://github.com/vulcandigital/silverstripe-pagefeedback/issues)[2 PRs](https://github.com/vulcandigital/silverstripe-pagefeedback/pulls)BSD-3-ClausePHPCI failing

Since May 2Pushed 3y agoCompare

[ Source](https://github.com/vulcandigital/silverstripe-pagefeedback)[ Packagist](https://packagist.org/packages/vulcandigital/silverstripe-pagefeedback)[ RSS](/packages/vulcandigital-silverstripe-pagefeedback/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (7)Dependencies (3)Versions (9)Used By (0)

[![Build Status](https://camo.githubusercontent.com/e52b48220de5fd722522710a158f246ad47682096137d5bd9c11a37a37fec0d9/68747470733a2f2f7472617669732d63692e6f72672f7a616e6465727761722f73696c7665727374726970652d70616765666565646261636b2e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/vulcandigital/silverstripe-pagefeedback)[![Latest Stable Version](https://camo.githubusercontent.com/dbc9d83ad2a66be872e5eb905927ad8f519ca0dae597758b0e819fe226e09f49/68747470733a2f2f706f7365722e707567782e6f72672f7a616e6465727761722f73696c7665727374726970652d70616765666565646261636b2f762f737461626c65)](https://packagist.org/packages/vulcandigital/silverstripe-pagefeedback)[![Latest Unstable Version](https://camo.githubusercontent.com/ace34bcf99efa796e53d3eeaa415da07026c84e230cbcbb832ac7ae31f262b57/68747470733a2f2f706f7365722e707567782e6f72672f76756c63616e6469676974616c2f73696c7665727374726970652d70616765666565646261636b2f762f756e737461626c65)](https://packagist.org/packages/vulcandigital/silverstripe-pagefeedback)[![Total Downloads](https://camo.githubusercontent.com/0cbe67a47470d7d217135aef9ab84b51c65990cd1e912054556c78908bf4fb54/68747470733a2f2f706f7365722e707567782e6f72672f7a616e6465727761722f73696c7665727374726970652d70616765666565646261636b2f646f776e6c6f616473)](https://packagist.org/packages/vulcandigital/silverstripe-pagefeedback)[![License](https://camo.githubusercontent.com/8ed4ac8776d6b0c3bda6f5e870af340b0571414511e59b56812d3ae8ce41d803/68747470733a2f2f706f7365722e707567782e6f72672f7a616e6465727761722f73696c7665727374726970652d70616765666565646261636b2f6c6963656e7365)](https://packagist.org/packages/vulcandigital/silverstripe-pagefeedback)[![Monthly Downloads](https://camo.githubusercontent.com/9ac4bd1da971d03415978f0757e3f290782bfd1f4b550e3e2ef59cc9d0449ae6/68747470733a2f2f706f7365722e707567782e6f72672f7a616e6465727761722f73696c7665727374726970652d70616765666565646261636b2f642f6d6f6e74686c79)](https://packagist.org/packages/vulcandigital/silverstripe-pagefeedback)

silverstripe-pagefeedback
=========================

[](#silverstripe-pagefeedback)

This module allows you to add a form to any page type for the purpose of accruing feedback about how a user perceives that page.

Commonly found on help desk pages under a label similar to "How helpful did you find this page?".

It allows the user to rate the page out of five (5) and allows them to optionally provide a comment

The users IP address and their PHP Session ID is recorded on a per-page basis so that a user can only submit feedback once for that specific page.

Requirements
------------

[](#requirements)

- silverstripe/cms: "^4.0"

Installation
------------

[](#installation)

Installation is supported via composer only:

```
composer require vulcandigital/silverstripe-pagefeedback "^2"

```

Configuration
-------------

[](#configuration)

This module is predominantly both a `DataExtension` and a `Extension`. You must apply them on the page type(s) and their respective controller(s) where you wish to be able to render the feedback form.

If you wanted to enable it's functionality on all pages you would:

```
Page:
  extensions:
    - Vulcan\PageFeedback\Extensions\PageFeedbackExtensions

PageController:
  extensions:
    - Vulcan\PageFeedback\Extensions\PageFeedbackControllerExtensions
```

or for a specific page type

```
Vulcan\UserDocs\UserDocsPage:
  extensions:
    - Vulcan\PageFeedback\Extensions\PageFeedbackExtension

Vulcan\UserDocs\UserDocsPageController:
  extensions:
    - Vulcan\PageFeedback\Extensions\PageFeedbackControllerExtensions
```

Modes
-----

[](#modes)

By default, the mode is set to "form" which will generate a form allowing a user to rate between 1-5 and optionally provide a comment An alternate mode, "thumbs" is available which will generate a form containing two buttons `+1` and `-1`, which can be beautifully styled:

[![Thumbs Preview](https://camo.githubusercontent.com/4df649ebe16dac76c9f22606e0149747a482addb3c3dfc8004836d94c60632a6/68747470733a2f2f692e696d6775722e636f6d2f527848515132742e706e67)](https://camo.githubusercontent.com/4df649ebe16dac76c9f22606e0149747a482addb3c3dfc8004836d94c60632a6/68747470733a2f2f692e696d6775722e636f6d2f527848515132742e706e67)

You can change the mode via YML on the controllers of the pages you desire

```
Vulcan\UserDocs\UserDocsPageController:
    pagefeedback_mode: "thumbs"

```

#### Adding the form

[](#adding-the-form)

In order for the form to show you will need to add `$PageFeedbackForm` into your template, in the location you wish for it to display.

e.g.

```

    $PageFeedbackForm

```

If you wish to hide the form if feedback has already been supplied by the user:

```

    $PageFeedbackForm

```

If you wish to display information about the feedback the user has provided:

```

            Rating: $Rating
            Comment: $Comment

            You gave this page a thumbs $Thumbs

```

Features
--------

[](#features)

- Adds a "Page Rating" section to the CMS Page Editor
- Adds a "Page Feedback" tab containing a `GridField` of all feedback for that specific page

Inspiration
-----------

[](#inspiration)

The form is provided to you unstyled, but each of the five radio buttons on the form have a class of `pagefeedback-option-n` where `n` is `1` through to `5` for easier customisation (ie swap the radio buttons with smiley faces that have different expressions; sad through to happy)

[![Shopify Inspiration](https://camo.githubusercontent.com/dcb22bb79b0f0426de6cfd94a0d4a088d1f2df3ccbb4970c5dd2da3e04baa232/687474703a2f2f692e696d6775722e636f6d2f4678747a50464a2e706e67)](https://camo.githubusercontent.com/dcb22bb79b0f0426de6cfd94a0d4a088d1f2df3ccbb4970c5dd2da3e04baa232/687474703a2f2f692e696d6775722e636f6d2f4678747a50464a2e706e67)[![Shopify Inspiration](https://camo.githubusercontent.com/7bab38ebddfbc82a2f276dd2d54abc090a9c90710c83258342a2d5386dd66f8f/687474703a2f2f692e696d6775722e636f6d2f596b6c546d52632e706e67)](https://camo.githubusercontent.com/7bab38ebddfbc82a2f276dd2d54abc090a9c90710c83258342a2d5386dd66f8f/687474703a2f2f692e696d6775722e636f6d2f596b6c546d52632e706e67)

(inspiration courtesy of shopify docs)

License
-------

[](#license)

[BSD-3-Clause](LICENSE.md) - [Vulcan Digital Ltd](https://vulcandigital.co.nz)

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance13

Infrequent updates — may be unmaintained

Popularity21

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity68

Established project with proven stability

 Bus Factor1

Top contributor holds 95.8% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~145 days

Recently: every ~182 days

Total

8

Last Release

2281d ago

Major Versions

1.0.x-dev → 2.0.0-alpha12018-02-15

### Community

Maintainers

![](https://www.gravatar.com/avatar/79352f13e05702b6ba2a9e27508d7cbd72e902342ff4e6608861b40a7cab5644?d=identicon)[vulcandigital](/maintainers/vulcandigital)

---

Top Contributors

[![zanderwar](https://avatars.githubusercontent.com/u/13566916?v=4)](https://github.com/zanderwar "zanderwar (23 commits)")[![michalkleiner](https://avatars.githubusercontent.com/u/233342?v=4)](https://github.com/michalkleiner "michalkleiner (1 commits)")

---

Tags

feedbackratingsilverstripe-4votesilverstripeformfeedbackRating

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/vulcandigital-silverstripe-pagefeedback/health.svg)

```
[![Health](https://phpackages.com/badges/vulcandigital-silverstripe-pagefeedback/health.svg)](https://phpackages.com/packages/vulcandigital-silverstripe-pagefeedback)
```

###  Alternatives

[kartik-v/yii2-widget-rating

A Yii2 widget for the simple yet powerful bootstrap-star-rating plugin with fractional rating support (sub repo split from yii2-widgets)

444.1M8](/packages/kartik-v-yii2-widget-rating)[burnbright/silverstripe-externalurlfield

Provides SilverStripe with a DBField and FormField for handling external URLs.

109.6k1](/packages/burnbright-silverstripe-externalurlfield)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
