rogierkn / pages-for-wp
There is no license information available for the latest version (dev-master) of this package.
A bootstrap for developing plugins for wordpress in a structured way
dev-master
2016-07-29 13:12 UTC
Requires
- symfony/http-foundation: ^3.1
- twig/twig: ~1.0
This package is not auto-updated.
Last update: 2025-01-04 21:30:39 UTC
README
Pages for Wordpress
Easily bootstrap your new Wordpress plugin.
In your plugin.php
use Rogierkn\PagesForWp\App; use Rogierkn\PagesForWp\DatabaseConnection; // Or any other PDO object $databaseConnection = DatabaseConnection::getInstance('localhost', 'wordpress', 'user', 'strongPassword'); $app = new App($databaseConnection); $app->pages->register([ ExamplePage::class ]); $app->setViewsFolder(__DIR__ . '/views/'); $app->run();
ExamplePage.php
use Rogierkn\PagesForWp\Pages\Page; class ExamplePage extends Page { /** * The wordpress event to bind to */ public function event() { return 'admin_menu'; } /** * Called when the above event occurs * This example binds to the options page */ public function register() { // Any related wordpress function can be used for this return function () { add_options_page('Page Title', 'Menu Title', 'capability', "slug", $this->handle()); }; } /** * Handle your Page's actions in here * You have access to the $request and $db in here */ public function handle() { return $this->render('superView.html.twig', ["name" => "John Doe"]); } }