PHPackages                             10quality/wpmvc-addon-reviewer - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. 10quality/wpmvc-addon-reviewer

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

10quality/wpmvc-addon-reviewer
==============================

This addon will show a review notice to an admin user, suggesting them to review the plugin or theme built in Wordpress MVC.

v1.0.1(6y ago)071MITPHPPHP &gt;=5.4.0CI failing

Since Dec 12Pushed 6y ago2 watchersCompare

[ Source](https://github.com/10quality/wpmvc-addon-reviewer)[ Packagist](https://packagist.org/packages/10quality/wpmvc-addon-reviewer)[ RSS](/packages/10quality-wpmvc-addon-reviewer/feed)WikiDiscussions v1.0 Synced today

READMEChangelog (2)DependenciesVersions (3)Used By (0)

Reviewer Addon (for Wordpress MVC)
==================================

[](#reviewer-addon-for-wordpress-mvc)

[![Latest Stable Version](https://camo.githubusercontent.com/c5681f1e7ed94fc33d9a622bfd2bb707c0b10b5d337bc85dbb4716a1802579ef/68747470733a2f2f706f7365722e707567782e6f72672f31307175616c6974792f77706d76632d6164646f6e2d72657669657765722f762f737461626c65)](https://packagist.org/packages/10quality/wpmvc-addon-reviewer)[![Total Downloads](https://camo.githubusercontent.com/cbdb524b40b218c95149d58ef026eea6c451aefb3dba9fe33fb8d06a96021383/68747470733a2f2f706f7365722e707567782e6f72672f31307175616c6974792f77706d76632d6164646f6e2d72657669657765722f646f776e6c6f616473)](https://packagist.org/packages/10quality/wpmvc-addon-reviewer)[![License](https://camo.githubusercontent.com/7a75d0f2d2fc23f67928ec863a5b67a4dc9c67c7572baf9607de07a9c60093f4/68747470733a2f2f706f7365722e707567782e6f72672f31307175616c6974792f77706d76632d6164646f6e2d72657669657765722f6c6963656e7365)](https://packagist.org/packages/10quality/wpmvc-addon-reviewer)

[![Review notice](https://camo.githubusercontent.com/2fb1fe896f75bd8acc91115632ff0a5181d3a97286751c72b146ad1afc257209/68747470733a2f2f7777772e31307175616c6974792e636f6d2f77702d636f6e74656e742f75706c6f6164732f323031392f31322f77706d76632d6164646f6e2d72656d696e6465722e6a7067)](https://camo.githubusercontent.com/2fb1fe896f75bd8acc91115632ff0a5181d3a97286751c72b146ad1afc257209/68747470733a2f2f7777772e31307175616c6974792e636f6d2f77702d636f6e74656e742f75706c6f6164732f323031392f31322f77706d76632d6164646f6e2d72656d696e6465722e6a7067)

Add-on for [Wordpress MVC](http://wordpress-mvc.com/).

This addon will show a review notice to an admin user, suggesting them to review the plugin or theme.

The addon will manage responses and reminders to make the notice not as intrusive.

Install
-------

[](#install)

Run the following composer command at your project's root:

```
composer require 10quality/wpmvc-addon-reviewer
```

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

[](#configuration)

Add your project's root folder name inside the `paths` settings, like:

```
    'paths' => [

        'base'          => __DIR__ . '/../',
        'controllers'   => __DIR__ . '/../Controllers/',
        'views'         => __DIR__ . '/../../assets/views/',
        'log'           => WP_CONTENT . '/wpmvc/log',
        'root_folder'   => 'your-plugin-folder-name',

    ],
```

This will enable localization.

Add the following inside the `addons` settings:

```
    'addons' => [
        'WPMVC\Addons\Reviewer\ReviewerAddon',
    ],
```

This will enable the addon files.

Add an extra `reviewer` settings:

```
    'reviewer' => [

        // Enables reviewer
        'enabled'       => true,
        // Name to display in notice
        'name'          => 'Project name',
        // Display interval in minutes
        'interval'      => 43200,

    ],
```

SettingTypeDescription**enabled**`bool`Enables or disables the reviewer addon.**name**`string`Project name that will display inside the notice.**interval**`int`Interval in minutes. This is the time the addon will wait until the notice is displayed (for example 43200, will mean that it will display after 30 days). This interval is also used when the user selects to be reminded later.**url**`string`*OPTIONAL*, the review URL the addon will redirect the user to. If nothing is present, the addon will asume it is a Wordpress.org review and will build the url using the textdomain set in the `localize` settings.Settings using a custom review url:

```
    'reviewer' => [

        // Enables reviewer
        'enabled'       => true,
        // Name to display in notice
        'name'          => 'Project name',
        // Display interval in minutes
        'interval'      => 43200,
        // Review url
        'url'           => 'https://mydomain.com/my-product/review'

    ],
```

Wordpress Hooks
---------------

[](#wordpress-hooks)

### Filter:wpmvc\_addon\_reviewer\_img\_{namespace}

[](#filterwpmvc_addon_reviewer_img_namespace)

`wpmvc_addon_reviewer_img_{namespace}`

Allows to filter and replace the default `stars.svg` display in the notice, for the image of your choice.

Replace **{namespace}** with your Wordpress MVC project's namespace (With caps).

ParameterTypeDescription`$image_url``string`Review image url. Recommended resolution (150px x 150px).Usage example (namespace is *TestPlugin*):

```
add_filter( 'wpmvc_addon_reviewer_img_TestPlugin', function( $url ) {
    // 150px x 150px
    return 'https://www.domain.com/path-to/image.png';
} );
```

Coding Guidelines
-----------------

[](#coding-guidelines)

PSR-2 coding guidelines.

License
=======

[](#license)

GPLv3 License. (c) 2019 [10 Quality](https://www.10quality.com/).

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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 ~1 days

Total

3

Last Release

2342d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/f2cdad4e398292477582ba8ec4ab02a96fa645cd620518a5bcf697cd788c96c3?d=identicon)[amostajo](/maintainers/amostajo)

---

Top Contributors

[![amostajo](https://avatars.githubusercontent.com/u/1645908?v=4)](https://github.com/amostajo "amostajo (9 commits)")

---

Tags

reviewwpmvc

### Embed Badge

![Health badge](/badges/10quality-wpmvc-addon-reviewer/health.svg)

```
[![Health](https://phpackages.com/badges/10quality-wpmvc-addon-reviewer/health.svg)](https://phpackages.com/packages/10quality-wpmvc-addon-reviewer)
```

###  Alternatives

[loophp/collection

A (memory) friendly, easy, lazy and modular collection class.

745663.8k13](/packages/loophp-collection)[wolfcast/browser-detection

The Wolfcast BrowserDetection PHP class facilitates the identification of the user's environment such as Web browser, version, platform family, platform version or if it's a mobile device or not.

1391.0M7](/packages/wolfcast-browser-detection)[ghanem/rating

Rating system for Laravel

8615.5k](/packages/ghanem-rating)

PHPackages © 2026

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