2017 © Pedro Peláez
 

cakephp-plugin cakephp-plugin-material

CakePHP 3 plugin providing helpers for http://daemonite.github.io/material/

image

notquitezen/cakephp-plugin-material

CakePHP 3 plugin providing helpers for http://daemonite.github.io/material/

  • Monday, May 28, 2018
  • by WrDX
  • Repository
  • 2 Watchers
  • 0 Stars
  • 91 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 4 Versions
  • 15 % Grown

The README.md

cakephp-plugin-material

CakePHP 3 plugin providing helpers for http://daemonite.github.io/material/, (*1)

Installation

Install with composer:, (*2)

composer require notquitezen/cakephp-plugin-material

Load Plugin in bootstrap.php:, (*3)

Plugin::load('NotQuiteZen/Material');

Load the Snackbar component in src/Controller/AppController.php, (*4)

public function initialize() {
    parent::initialize();
    $this->loadComponent('Material.Snackbar');
}

Extend AppView in src/View/AppView.php:, (*5)

namespace App\View;

use Material\View\MaterialView;

class AppView extends MaterialView {

}

Or alternatively use the trait:, (*6)

namespace App\View;

use Cake\View\View;

use Material\View\MaterialViewTrait;

class AppView extends View {

    use MaterialViewTrait;

    public function initialize() {
        parent::initialize();
        $this->initializeMaterial();
    }
}

The Versions

28/05 2018

dev-master

9999999-dev

CakePHP 3 plugin providing helpers for http://daemonite.github.io/material/

  Sources   Download

MIT

The Requires

 

28/05 2018

v1.1.0

1.1.0.0

CakePHP 3 plugin providing helpers for http://daemonite.github.io/material/

  Sources   Download

MIT

The Requires

 

25/05 2018

v1.0.1

1.0.1.0

CakePHP 3 plugin providing helpers for http://daemonite.github.io/material/

  Sources   Download

MIT

The Requires

 

22/05 2018

v1.0.0

1.0.0.0

CakePHP 3 plugin providing helpers for http://daemonite.github.io/material/

  Sources   Download

MIT

The Requires