All Projects → isobar-nz → silverstripe-singlepageadmin

isobar-nz / silverstripe-singlepageadmin

Licence: other
Single page administration via a LeftAndMain like interface.

Programming Languages

PHP
23972 projects - #3 most used programming language
scheme
763 projects

Projects that are alternatives of or similar to silverstripe-singlepageadmin

silverstripe-catalogmanager
Catalog administration via a LeftAndMain like interface. Lets you create and edit pages outside of the site tree
Stars: ✭ 36 (+50%)
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 (-4.17%)
Mutual labels:  silverstripe
Silverstripe-SEO
A SilverStripe module to optimise the Meta, crawling, indexing, and sharing of your website content
Stars: ✭ 41 (+70.83%)
Mutual labels:  silverstripe
FOF3-Basic
A hello world type example for Akeeba F0F3 as a walkthrough for building a Joomla! component from the ground up.
Stars: ✭ 14 (-41.67%)
Mutual labels:  cms-extension
silverstripe-base
A base module for my SilverStripe projects
Stars: ✭ 17 (-29.17%)
Mutual labels:  silverstripe
silverstripe-dashboard
Extendable dashboard for Silverstripe
Stars: ✭ 18 (-25%)
Mutual labels:  silverstripe
silverware-calendar
SilverWare Calendar Module
Stars: ✭ 15 (-37.5%)
Mutual labels:  silverstripe
cwp-watea-theme
A more visually appealing example for starting a theme for a CWP website.
Stars: ✭ 13 (-45.83%)
Mutual labels:  silverstripe
silverstripe-apiwesome
A module for SilverStripe which will automatically create customisable JSON/XML feeds for your data objects (including pages), and provides a modular security token that can be used for other applications.
Stars: ✭ 13 (-45.83%)
Mutual labels:  silverstripe
silverstripe-cookie-consent
GDPR compliant cookie popup and consent checker
Stars: ✭ 16 (-33.33%)
Mutual labels:  silverstripe
silverstripe-mandrill
Mandrill integration for Silverstripe
Stars: ✭ 17 (-29.17%)
Mutual labels:  silverstripe
simpleCMS
simpleCMS是一款开源cms系统, 主要为个人/团队快速开发博客或者知识共享平台, 类似于hexo, worldpress, 但是他们往往需要复杂的搭建过程, 我们将复杂度降到最低, 并且有详细的部署教程, 你只需要有一台服务器, 就能轻松拥有一个属于你的博客平台.
Stars: ✭ 74 (+208.33%)
Mutual labels:  cms-extension
sliver
REPL for SilverStripe, powered by Psysh. Interactively debug and tinker with a sliver of your code.
Stars: ✭ 17 (-29.17%)
Mutual labels:  silverstripe
silverstripe-populate
Populate your database through YAML files
Stars: ✭ 23 (-4.17%)
Mutual labels:  silverstripe
silverstripe-smtp
Using PHPMailer in SilverStripe
Stars: ✭ 26 (+8.33%)
Mutual labels:  silverstripe
silverstripe-svg
Basic SVG support for SilverStripe
Stars: ✭ 22 (-8.33%)
Mutual labels:  silverstripe
catalog-manager
Backend Module ohne Programmierkenntnisse erstellen.
Stars: ✭ 28 (+16.67%)
Mutual labels:  cms-extension

SilverStripe Single Page Administration

Single page administration via a LeftAndMain like interface. Let your clients edit pages without seeing the site tree.

Features

  • Single page administration
  • Only allows publish functionality for the page
  • You can hide the site tree from everybody (when used in conjunction with silverstripe-catalogmanager)

Installation

Installation via composer

$ composer require littlegiant/silverstripe-singlepageadmin

How to use

Simply extend the SinglePageAdmin class instead of ModelAdmin and include the class via the tree_class static.

use LittleGiant\SilverStripe\SinglePageAdmin\SinglePageAdmin;

class HomePageAdmin extends SinglePageAdmin
{
    private static $menu_title = "Home Page";
    private static $tree_class = 'HomePage';
    private static $url_segment = "home-page";
}

The single page admin assumes you have one and only have one item of the class which you are trying to administrate and makes no attempt to try and check if this is the case, naively getting the first object which matches. It is up to you to ensure that the class has one and only one instance created, usually via canCreate() functionality.

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].