sasilen/blog

Blog plugin for CakePHP 4

Installs: 14

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 2

Forks: 1

Open Issues: 0

Type:cakephp-plugin

dev-master 2020-12-01 16:04 UTC

This package is auto-updated.

Last update: 2024-04-29 03:47:36 UTC


README

Installation

You can install this plugin into your CakePHP application using composer.

Scratch installation example (with CakePHP)

composer config repositories.blog git https://github.com/sasilen/cakephp-plugin-blog.git
composer require sasilen/blog

Enable plugins

./bin/cake plugin load Sasilen/Blog

Add templates (main app)

# /src/View/AppView.php
public function initialize(): void
{
    parent::initialize();
    $this->loadHelper('CakeDC/Users.AuthLink');
    $this->loadHelper('Paginator', ['templates' => 'templates-paginator']);
    $this->loadHelper('Form', ['templates' => 'templates-form']);
}