PHPackages                             danielhurdmint/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. [Admin Panels](/categories/admin)
4. /
5. danielhurdmint/silverstripe-catalogmanager

ActiveSilverstripe-vendormodule[Admin Panels](/categories/admin)

danielhurdmint/silverstripe-catalogmanager
==========================================

Catalog Manager provides extension for ModelAdmin editing of SiteTree instances

0111PHP

Since Apr 19Pushed 2y agoCompare

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

READMEChangelogDependenciesVersions (1)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
  parent_classes:
    - 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)

#### Hide pages in CMS

[](#hide-pages-in-cms)

When managing pages with catalogmanager you might want to hide this pages in CMS. You can do this by adding the `HidePageChildrenExtension` to the holder page, e.g.

```
CatalogPage:
  extensions:
    - CatalogPageExtension
  parent_classes:
    - 'CatalogParentPage'
CatalogParentPage:
  extensions:
    - HidePageChildrenExtension
```

#### Duplication of pages

[](#duplication-of-pages)

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

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

#### Drag and drop sorting

[](#drag-and-drop-sorting)

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
  parent_classes:
    - 'CatalogParentPage'
  sort_column: 'CustomSort'
```

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

```
CatalogPage:
  extensions:
    - CatalogPageExtension
  parent_classes:
    - '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
  parent_classes:
    - '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

16

—

LowBetter than 5% of packages

Maintenance26

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity18

Early-stage or recently created project

 Bus Factor1

Top contributor holds 53.1% 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/694144a8b8fc8fc75b9a768457af81c7a4b3e630b8c4b54e208373dfba4fdac8?d=identicon)[DanielHurdMint](/maintainers/DanielHurdMint)

---

Top Contributors

[![stevie-mayhew](https://avatars.githubusercontent.com/u/1953220?v=4)](https://github.com/stevie-mayhew "stevie-mayhew (43 commits)")[![hchokshi](https://avatars.githubusercontent.com/u/10136407?v=4)](https://github.com/hchokshi "hchokshi (19 commits)")[![tractorcow](https://avatars.githubusercontent.com/u/936064?v=4)](https://github.com/tractorcow "tractorcow (7 commits)")[![DanielHurdMint](https://avatars.githubusercontent.com/u/167372126?v=4)](https://github.com/DanielHurdMint "DanielHurdMint (3 commits)")[![wernerkrauss](https://avatars.githubusercontent.com/u/1043925?v=4)](https://github.com/wernerkrauss "wernerkrauss (3 commits)")[![Rhym](https://avatars.githubusercontent.com/u/1136811?v=4)](https://github.com/Rhym "Rhym (2 commits)")[![Tom-Alexander](https://avatars.githubusercontent.com/u/1132330?v=4)](https://github.com/Tom-Alexander "Tom-Alexander (2 commits)")[![bummzack](https://avatars.githubusercontent.com/u/1006185?v=4)](https://github.com/bummzack "bummzack (1 commits)")[![hailwood](https://avatars.githubusercontent.com/u/709773?v=4)](https://github.com/hailwood "hailwood (1 commits)")

### Embed Badge

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

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

###  Alternatives

[jeroennoten/laravel-adminlte

Easy AdminLTE integration with Laravel

4.0k4.8M43](/packages/jeroennoten-laravel-adminlte)[dmstr/yii2-adminlte-asset

AdminLTE backend theme asset bundle for Yii 2.0 Framework

1.1k1.8M67](/packages/dmstr-yii2-adminlte-asset)[dwij/laraadmin

LaraAdmin is a Open source Laravel Admin Panel / CMS which can be used as Admin Backend, Data Management Tool or CRM boilerplate for Laravel with features like CRUD Generation, Module Manager, Media, Menus, Backups and much more

1.6k68.7k](/packages/dwij-laraadmin)[filament/spatie-laravel-media-library-plugin

Filament support for `spatie/laravel-medialibrary`.

1764.8M125](/packages/filament-spatie-laravel-media-library-plugin)[bezhansalleh/filament-exceptions

A Simple &amp; Beautiful Pluggable Exception Viewer for FilamentPHP's Admin Panel

193195.9k13](/packages/bezhansalleh-filament-exceptions)[filament/infolists

Easily add beautiful read-only infolists to any Livewire component.

1220.8M36](/packages/filament-infolists)

PHPackages © 2026

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