2017 © Pedro Peláez
 

cakephp-plugin blog

Blog plugin for CakePHP 3

image

sasilen/blog

Blog plugin for CakePHP 3

  • Wednesday, December 20, 2017
  • by sasilen
  • Repository
  • 1 Watchers
  • 2 Stars
  • 14 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Blog plugin for CakePHP 4

Installation

You can install this plugin into your CakePHP application using composer., (*1)

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']);
}

The Versions