PHPackages                             cookyii/module-page - 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. cookyii/module-page

ActiveYii2-extension[Utility &amp; Helpers](/categories/utility)

cookyii/module-page
===================

Static pages management module for Cookyii CMF

13231PHP

Since Feb 3Pushed 9y ago1 watchersCompare

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

READMEChangelogDependenciesVersions (1)Used By (0)

Pages management module
=======================

[](#pages-management-module)

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

[](#installation)

```
composer require cookyii/module-page:dev-master
```

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

[](#configuration)

### 1. Update config

[](#1-update-config)

In `backend` `app` config in section `modules` add `cookyii\modules\Page\backend\Module`and in section `bootstrap` add `page`:

```
// ./backend-app/config/app.php

return [
    // ...
    'bootstrap' => [
        // some components ...
        'page'
    ],
    'modules' => [
        // some modules ...
        'page' => 'cookyii\modules\Page\backend\Module',
    ],
    // ...
];
```

In `frontend` `app` config in section `modules` add `cookyii\modules\Page\frontend\Module`and in section `bootstrap` add `page`:

```
// ./backend-app/config/app.php

return [
    // ...
    'bootstrap' => [
        // some components ...
        'page'
    ],
    'modules' => [
        // some modules ...
        'page' => 'cookyii\modules\Page\frontend\Module',
    ],
    // ...
];
```

### 2. Dependencies

[](#2-dependencies)

Also, you need to configure the following modules (they are already downloaded):

- [`cookyii/module-account`](https://github.com/cookyii/module-account)
- [`cookyii/module-postman`](https://github.com/cookyii/module-postman)
- [`cookyii/module-media`](https://github.com/cookyii/module-media)

```
// ./backend-app/config/app.php

return [
    // ...
    'bootstrap' => [
        // some components ...
        'account', 'page', 'postman', 'media',
    ],
    'modules' => [
        // some modules ...
        'account' => 'cookyii\modules\Account\backend\Module',
        'page' => 'cookyii\modules\Page\backend\Module',
        'postman' => 'cookyii\modules\Postman\backend\Module',
        'media' => 'cookyii\modules\Media\backend\Module',
    ],
    // ...
];
```

```
// ./frontend-app/config/app.php

return [
    // ...
    'bootstrap' => [
        // some components ...
        'page', 'media',
    ],
    'modules' => [
        // some modules ...
        'page' => 'cookyii\modules\Page\frontend\Module',
        'media' => 'cookyii\modules\Media\backend\Module',
    ],
    // ...
];
```

### 3. Add new permissions

[](#3-add-new-permissions)

In `rbac/update` command add merge class `cookyii\modules\Page\backend\Permissions`:

```
// ./common/commands/RbacCommand.php

class RbacCommand extends \rmrevin\yii\rbac\Command
{

    public $backendMerge = [
        // ...
        'cookyii\modules\Account\backend\Permissions',
        'cookyii\modules\Page\backend\Permissions',
        'cookyii\modules\Postman\backend\Permissions',
    ];
}
```

### 4. Update permissions

[](#4-update-permissions)

```
./backend rbac/update
```

### 5. Execute new migrations

[](#5-execute-new-migrations)

```
./frontend migrate
```

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity41

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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/1ed2a8c869410bcc2f79245fe77cf156db86c83fed1c60c3dea8df1e04966788?d=identicon)[rmrevin](/maintainers/rmrevin)

---

Top Contributors

[![rmrevin](https://avatars.githubusercontent.com/u/803507?v=4)](https://github.com/rmrevin "rmrevin (57 commits)")

### Embed Badge

![Health badge](/badges/cookyii-module-page/health.svg)

```
[![Health](https://phpackages.com/badges/cookyii-module-page/health.svg)](https://phpackages.com/packages/cookyii-module-page)
```

###  Alternatives

[mindplay/unbox

Fast, simple, easy-to-use DI container

4818.6k3](/packages/mindplay-unbox)[ecomdev/sync-magento-2-migration

Migration Application for M1 -&gt; M2

591.2k](/packages/ecomdev-sync-magento-2-migration)

PHPackages © 2026

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