alvarium / cake-oc
OCClient plugin for CakePHP
Installs: 182
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 1
Forks: 1
Open Issues: 1
Type:cakephp-plugin
Requires
- php: >=5.5.9
- cakephp/cakephp: >=3.3.2
- opencomponents/oc-client-php: dev-master
Requires (Dev)
This package is auto-updated.
Last update: 2024-10-08 07:01:17 UTC
README
A CakePHP 3.X plugin for the OpenComponents PHP Client
Installation
You can install this plugin into your CakePHP application using composer.
The recommended way to install composer packages is:
composer require alvarium/cake-oc
Configuration
After that, load the plugin in your bootstrap.php
file:
Plugin::load('Alvarium/OCClient', ['bootstrap' => true]);
Create a file named occlient.php
in your config
folder defining your
open-components registry endpoint:
<?php return [ 'OCClient' => [ 'serverRendering' => 'https://registry.your-company.io/', ] ];
Then, load the component + the helper in the controller(s) where you want the plugin to be used:
<?php namespace App; use Cake\Event\Event; class PostsController extends AppController { public function initialize() { parent::initialize(); $this->loadComponent('Alvarium/OCClient.Client'); } public function beforeRender(Event $event) { parent::beforeRender($event); $this->viewBuilder()->helpers([ 'Alvarium/OCClient.OC', ]); } }
Usage
After all configuration has been done, and having both component and helper loaded,
to load your opencomponents scripts in your pages you just need to define the
components using setComponents
in your controller method:
<?php namespace App; // [...] class PostsController extends AppController { // [...] public function index() { $this->Client->setComponents([ [ 'name' => 'your-awesome-component', 'parameters' => [ 'comp1_selector' => '#awesome-component', 'key' => 'value', 'key2' => 'value2', ], ], [ 'name' => 'another-awesome-component', 'parameters' => [ 'comp2_selector' => '#awesome-component-2', 'key12' => 'value12', 'key23' => 'value23', ] ] ]); }
Note how we define the *_selector
key. That's because we're able to define our
selectors for each component (meaning we need to define a layer with the
appropriated selector in the view for each component).
That's in part because this plugin's helper loads components appending them to
the script
view block. Depending on how do you work with your opencomponent
widgets this could bring some issues.
If so, you can just avoid using the helper and add the scripts wherever you want:
foreach ($oc_components as $component) { echo $component; }
License
This plugin code is licensed under a GNU GPL v.3 license.