PHPackages                             dospuntocero/silverstripe-catalogmanager - 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. dospuntocero/silverstripe-catalogmanager

ActiveSilverstripe-module

dospuntocero/silverstripe-catalogmanager
========================================

Catalog Manager provides extension for ModelAdmin editing of SiteTree instances

2.0.1(11y ago)016[2 PRs](https://github.com/dospuntocero/silverstripe-catalogmanager/pulls)MITPHP

Since Dec 17Pushed 10y ago1 watchersCompare

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

READMEChangelogDependencies (1)Versions (20)Used By (0)

SilverStripe Catalog Manager
============================

[](#silverstripe-catalog-manager)

Catalog administration via a LeftAndMain like interface. Lets you edit and create pages outside of the SiteTree.

Features
--------

[](#features)

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

[](#installation)

Installation via composer

```
$ composer require littlegiant/silverstripe-catalogmanager
```

How to use
----------

[](#how-to-use)

### Pages

[](#pages)

Add the following to a configuration yml file:

```
CatalogPage:
  extensions:
    - CatalogPageExtension
  parentClass:
    - 'CatalogParentPage'
```

Where `CatalogPage` is the page type you wish to administer (e.g. BlogEntry) and `CatalogParentPage` is where the pages should be stored in the SiteTree (e.g. BlogHolder). You may have multiple instances of the parent, the administration will provide users with a drop down to choose which page should be the parent.

You can also create pages in the root of the project (i.e. ParentID = 0) by not providing a parent class.

```
LandingPage:
  extensions:
    - CatalogPageExtension
```

Then simply extend `CatalogPageAdmin` instead of `ModelAdmin`.

### DataObjects

[](#dataobjects)

You can also manage DataObjects through the `CatalogDataObjectExtension`

### Translations

[](#translations)

If you are using the translatable module, you can use the TranslatableCatalogExtension to provide functionality for choosing languages.

```
CatalogPageAdmin:
  extensions:
    - TranslatableCatalogExtension
```

### Options

[](#options)

You can disable the ability to duplicate pages through the `can_duplicate` configuration setting per object.

```
CatalogPage:
  extensions:
    - CatalogPageExtension
  parentClass:
    - 'CatalogParentPage'
  can_duplicate: false
```

You can add drag and drop sorting using GridFieldSortableRows when you add the `sort_column` setting to your configuration. Uses column `Sort` by default which is default in SiteTree and is added by CatalogDataObjectExtension.

```
CatalogPage:
  extensions:
    - CatalogPageExtension
  parentClass:
    - 'CatalogParentPage'
  sort_column: 'CustomSort'
```

If you want to disable drag and drop sorting just set `sort_column` to false

```
CatalogPage:
  extensions:
    - CatalogPageExtension
  parentClass:
    - 'CatalogParentPage'
  sort_column: false
```

Sort columns automatically update the sort column of both the staged and live versions of the object. To disable this, you can set the configuration option `automatic_live_sort` to false through your config.

```
CatalogPage:
  extensions:
    - CatalogPageExtension
  parentClass:
    - 'CatalogParentPage'
  automatic_live_sort: false
```

License
-------

[](#license)

The MIT License (MIT)

Copyright (c) 2015 Little Giant Design Ltd

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Contributing
------------

[](#contributing)

### Code guidelines

[](#code-guidelines)

This project follows the standards defined in:

- [PSR-0](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-0.md)
- [PSR-1](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-1-basic-coding-standard.md)
- [PSR-2](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md)

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity72

Established project with proven stability

 Bus Factor1

Top contributor holds 86.2% 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 ~31 days

Recently: every ~14 days

Total

16

Last Release

4057d ago

Major Versions

0.7.0 → 1.0.02015-02-06

1.0.4 → 2.0.02015-03-25

### Community

Maintainers

![](https://www.gravatar.com/avatar/090fcde26d8c3025cb46380fabc4031f3cb5aa1818c0c5d198de259c1ef99a00?d=identicon)[dospuntocero](/maintainers/dospuntocero)

---

Top Contributors

[![stevie-mayhew](https://avatars.githubusercontent.com/u/1953220?v=4)](https://github.com/stevie-mayhew "stevie-mayhew (25 commits)")[![dospuntocero](https://avatars.githubusercontent.com/u/123972?v=4)](https://github.com/dospuntocero "dospuntocero (3 commits)")[![wernerkrauss](https://avatars.githubusercontent.com/u/1043925?v=4)](https://github.com/wernerkrauss "wernerkrauss (1 commits)")

### Embed Badge

![Health badge](/badges/dospuntocero-silverstripe-catalogmanager/health.svg)

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

###  Alternatives

[silverstripe/deploynaut

The SilverStripe deployment framework

723.5k2](/packages/silverstripe-deploynaut)

PHPackages © 2026

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