Download the PHP package codebjorn/loki without Composer
On this page you can find all versions of the php package codebjorn/loki. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package loki
Loki, WordPress Theme Boilerplate
Loki is WordPress Theme Boilerplate using as a base Mjolnir Framework
If you think this approach is not working, please open an issue and let's discuss :)
Pre-Requirements
Before we proceed further, I suggest you to read documentation for:
- Mjolnir Framework.
- Laravel Blade
- Laravel Mix
Requirements
Requirements for this boilerplate are:
- PHP 7.1+
- Composer
Installation
You can install framework via composer:
Structure
Structure of boilerplate is:
How all work
Add service into hook
- Create a new namespace in
app
folder and add new php service class - Resolve this service using Service Provider in
app/Providers
folder, you can add it toAppServiceProvider.php
or create a new provider and add it toconfig/app.php
to load. More info about service providers - After resolving a service you can inject it in
another service or add it into hook in
hooks
folder, for example action hook:
Work with WordPress templates
By default, all WordPress templates are stored in templates
folder, you can change folder or disable this feature
in config/theme.php
.
To use templates and laravel blade engine we can use templates as kind of controller that will store all data that we need but render will make template engine, for example:
-
Let's say we want to create/update template
single.php
, we create a new filetemplates/single.php
- We create blade file in
resources/views/single.blade.php
Create Gutenberg Blocks
All blocks are stored in blocks
folder. For creating a new block we will need:
- Create a folder inside
blocks
folder -
Create
index.jsx
in your new folder - Create all components inside components folder:
-
controls.jsx
- Toolbar of block -
editor.jsx
- Main area of block inspector.jsx
- Sidebar panels
- Create
data
folder and new attributes.json file:
Also, you can use data folder to store and other json folder that can be used in you block.
-
Create
view
folder where will be stored blade templates for your block, default one isblock.blade.php
: - Import you block in main
blocks.js
- Add block in main
blocks.php
using block facade:
Testing
//TODO
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
Credits
- Dorin Lazar
- All Contributors
License
The MIT License (MIT). Please see License File for more information.