PHP code example of graft / framework-core
1. Go to this page and download the library: Download graft/framework-core library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
graft / framework-core example snippets
use Graft\Framework\Annotation\Filter; //use Filter Annotation
use Graft\Framework\Injectable\Renderer;
/**
* Class that will be construct by the Factory
* This class can be injected with autowiring in other Class.
*/
class MyHookManager
{
/**
* HookManager Renderer
* Use for Template Rendering
*
* @var Renderer
*/
private $renderer;
/**
* MyHookManager Constructor
* using autowiring for dependency injection
*
* @param Renderer $renderer
*/
public function __construct(Renderer $renderer)
{
$this->renderer = $renderer;
}
/**
* This Method will be add to 'the_title' Filter by Annotation
*
* And 'the_title' Filter will be added in the Plugin Container
* for other developers who want to know wich Hooks this Plugin using.
*
* @Filter(name="the_title")
*
* @param string $title Current Title
*
* @return string
*/
public function titleFilterHook(string $title)
{
//some example code...
$title = trim($title);
// using Twig for Custom Title HTML...
// this template can be override in the Theme in
// (wp-content/themes/mytheme/currentPluginName/filter/title.html.twig) for example.
return $this->renderer->render('filter/title.html.twig', ['title' => $title]);
}
}