2017 © Pedro Peláez
 

cakephp-plugin cake-cms

Block-based Content Management System for CakePHP 3

image

scherersoftware/cake-cms

Block-based Content Management System for CakePHP 3

  • Wednesday, February 15, 2017
  • by cleptric
  • Repository
  • 7 Watchers
  • 3 Stars
  • 5,311 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 4 Forks
  • 0 Open issues
  • 9 Versions
  • 4 % Grown

The README.md

CakePHP 3 cake-cms

License, (*1)

Block-based Content Management System for CakePHP 3, (*2)

Installation

Load the plugin in your config/bootstrap.php, (*3)

Plugin::load('Cms', ['bootstrap' => true, 'routes' => true]);

Add the Dispatcher Filter for CMS Widget assets to the corresponding section in your config/bootstrap.php, (*4)

DispatcherFactory::add('Cms.WidgetAsset');

Add tables via Migrations Plugin, (*5)

bin/cake migrations migrate --plugin Cms

Add configuration to your config/app.php, (*6)

'Cms' => [
    'Administration' => [
        'layout' => 'Admin.default', // Layout to use for the CMS admin area
        'helpers' => [
            'CkTools.Menu' // Helpers to load in the CMS admin area
        ]
    ]
]

Configure a route for the frontend rendering of CMS pages (use this example and adapt to your requirements), (*7)

$routes->connect('/:slug', Configure::read('Cms.Frontend.renderAction'), ['routeClass' => 'Cms.SlugRoute']);

Using Page Attributes

It is possible to define arbitrary page attributes to save additional data for a CMS page without having to modify the CMS schema. Data will be saved as JSON in the cms_pages.page_attributes field., (*8)

The CMS will look in the Pages.attributes path of your CMS configuration. Configuration looks like this:, (*9)

'Pages' => [
    'attributes' => [
        'public' => [
            'type' => 'boolean',
            'label' => 'Publicly Available',
            'default' => true
        ],
        'keywords' => [
            'type' => 'text',
            'label' => 'Keywords',
            'default' => ''
        ]
    ]
]

Based on this configuration, input fields will be rendered in a separate "Attributes" tab in the edit screen. Attributes can later be fetched using eiher CmsPage::getAttributes() or CmsPage::getAttribute($attribute)., (*10)

Example:, (*11)

    $this->loadComponent('Cms.Cms', [
        'permissionsCallback' => function (CmsPage $page) use ($controller) {
            return $page->getAttribute('public');
        }
    ]);

The Versions

15/02 2017
02/09 2016

v1.0.7

1.0.7.0

Block-based Content Management System for CakePHP 3

  Sources   Download

MIT

The Requires

 

The Development Requires

02/09 2016

v1.0.6

1.0.6.0

Block-based Content Management System for CakePHP 3

  Sources   Download

MIT

The Requires

 

The Development Requires

24/08 2016

v1.0.5

1.0.5.0

Block-based Content Management System for CakePHP 3

  Sources   Download

MIT

The Requires

 

The Development Requires

24/08 2016

v1.0.4

1.0.4.0

Block-based Content Management System for CakePHP 3

  Sources   Download

MIT

The Requires

 

The Development Requires

24/08 2016

v1.0.3

1.0.3.0

Block-based Content Management System for CakePHP 3

  Sources   Download

MIT

The Requires

 

The Development Requires

24/08 2016

v1.0.2

1.0.2.0

Block-based Content Management System for CakePHP 3

  Sources   Download

MIT

The Requires

 

The Development Requires

02/08 2016

v1.0.1

1.0.1.0

Block-based Content Management System for CakePHP 3

  Sources   Download

MIT

The Requires

 

The Development Requires

21/03 2016

v1.0.0

1.0.0.0

Block-based Content Management System for CakePHP 3

  Sources   Download

MIT

The Requires

 

The Development Requires