All Projects → isobar-nz → silverstripe-catalogmanager

isobar-nz / silverstripe-catalogmanager

Licence: other
Catalog administration via a LeftAndMain like interface. Lets you create and edit pages outside of the site tree

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to silverstripe-catalogmanager

silverstripe-singlepageadmin
Single page administration via a LeftAndMain like interface.
Stars: ✭ 24 (-33.33%)
Mutual labels:  silverstripe, cms-extension, sitetree
silverstripe-cloudflare
This module aims to relieve the stress of using CloudFlare caching with any SilverStripe project. Adds extension hooks that clears CloudFlares cache for a specific page when that page is published or unpublished
Stars: ✭ 23 (-36.11%)
Mutual labels:  silverstripe
forest-laravel
🌱 Laravel Liana for Forest Admin. This repo is no longer maintained. Please use laravel-forestadmin instead: https://github.com/ForestAdmin/laravel-forestadmin
Stars: ✭ 4 (-88.89%)
Mutual labels:  administration
Quiescis
Quescis is a powerful Remote Access Trojan for windows 💻 on C++
Stars: ✭ 56 (+55.56%)
Mutual labels:  administration
Rodney
A Discord bot developed in JavaScript using the discord.js library.
Stars: ✭ 23 (-36.11%)
Mutual labels:  administration
silverstripe-base
A base module for my SilverStripe projects
Stars: ✭ 17 (-52.78%)
Mutual labels:  silverstripe
ToxicEye
👽 Program for remote control of windows computers via telegram bot. Written in C#
Stars: ✭ 305 (+747.22%)
Mutual labels:  administration
silverware-calendar
SilverWare Calendar Module
Stars: ✭ 15 (-58.33%)
Mutual labels:  silverstripe
silverstripe-dashboard
Extendable dashboard for Silverstripe
Stars: ✭ 18 (-50%)
Mutual labels:  silverstripe
releaf
Administration interface for Ruby on Rails
Stars: ✭ 17 (-52.78%)
Mutual labels:  administration
cas-bootadmin-overlay
CAS Spring Boot Admin Server Overlay Template
Stars: ✭ 20 (-44.44%)
Mutual labels:  administration
Aton
Open web computer laboratory administrator
Stars: ✭ 15 (-58.33%)
Mutual labels:  administration
FOF3-Basic
A hello world type example for Akeeba F0F3 as a walkthrough for building a Joomla! component from the ground up.
Stars: ✭ 14 (-61.11%)
Mutual labels:  cms-extension
ssa
Web panel for small Debian and Ubuntu servers.
Stars: ✭ 16 (-55.56%)
Mutual labels:  administration
grouphelperbot
A Telegram Bot made to help group admins, with Italian/English support.
Stars: ✭ 26 (-27.78%)
Mutual labels:  administration
spectre-canjs
A data administration component library built on the Spectre.css framework enabled with CanJS
Stars: ✭ 25 (-30.56%)
Mutual labels:  administration
sqlite-gui
Lightweight SQLite editor for Windows
Stars: ✭ 151 (+319.44%)
Mutual labels:  administration
silverstripe-svg
Basic SVG support for SilverStripe
Stars: ✭ 22 (-38.89%)
Mutual labels:  silverstripe
admin
Define your own management UI with high-level React.js components and it automatically connects via GraphQL API.
Stars: ✭ 63 (+75%)
Mutual labels:  administration
Silverstripe-SEO
A SilverStripe module to optimise the Meta, crawling, indexing, and sharing of your website content
Stars: ✭ 41 (+13.89%)
Mutual labels:  silverstripe

SilverStripe Catalog Manager

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

Features

Installation

Installation via composer

$ composer require littlegiant/silverstripe-catalogmanager

How to use

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

You can also manage DataObjects through the CatalogDataObjectExtension

Translations

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

CatalogPageAdmin:
  extensions:
    - TranslatableCatalogExtension

Options

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

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

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

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

Code guidelines

This project follows the standards defined in:

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].