agence-adeliom/lumberjack-admin
最新稳定版本:2.0.0
Composer 安装命令:
composer require agence-adeliom/lumberjack-admin
包简介
README 文档
README
Register WordPress Admin ans ACF block interfaces.
Requirements
- PHP 8.0 or greater
- Composer
- Lumberjack
Installation
composer require agence-adeliom/lumberjack-admin
# Copy the configuration file
cp vendor/agence-adeliom/lumberjack-admin/config/gutenberg.php web/app/themes/YOUR_THEME/config/gutenberg.php
Register the service provider into web/app/themes/YOUR_THEME/config/app.php
'providers' => [ ... \Adeliom\Lumberjack\Admin\AdminProvider::class ]
Usage
Create an admin interface like for Options pages or Custom Post Types
Create your admin class to manage post types :
<?php namespace App\Admin; use Adeliom\Lumberjack\Admin\AbstractAdmin; use Traversable; class PostAdmin extends AbstractAdmin { public const TITLE = "Post edit interface"; /** * @see https://github.com/vinkla/extended-acf#fields * @return Traversable */ public static function getFields(): Traversable { yield Text::make('Post subtitle', 'subtitle'); } /** * @see https://github.com/vinkla/extended-acf#location */ public static function getLocation(): Traversable { yield Location::where('post_type', '==', 'post'); } }
Create your admin class to manage options :
<?php namespace App\Admin; use Adeliom\Lumberjack\Admin\AbstractAdmin; use Traversable; class OptionsAdmin extends AbstractAdmin { public const TITLE = "Options"; public const IS_OPTION_PAGE = true; /** * User defined ACF fields * @see https://github.com/vinkla/extended-acf#fields * @return \Traversable|null */ public static function getFields(): ?\Traversable { yield Text::make('Gtag code', 'gtag'); } }
Check the full class declaration at src/AbstractAdmin.php
Create a ACF Gutenberg block
<?php namespace App\Block; use Adeliom\Lumberjack\Admin\AbstractBlock; use Extended\ACF\Fields\WysiwygEditor;use Traversable; class WysiwygBlock extends AbstractBlock { public const NAME = "wysiwyg"; public const TITLE = "Text Editor"; public const DESCRIPTION = "Simple HTML content"; /** * User defined ACF fields * @see https://github.com/vinkla/extended-acf#fields * @return \Traversable|null */ public static function getFields(): ?\Traversable { yield WysiwygEditor::make('HTML Content', 'content'); } }
The twig template attached to this block is views/block/wysiwyg.html.twig.
Edit Gutenberg settings
Add new categories
<?php //web/app/themes/YOUR_THEME/config/gutenberg.php return [ 'categories' => [ [ 'slug' => 'content', 'title' => __('Content'), 'icon' => null, ] ] ];
Globally disable blocks
<?php //web/app/themes/YOUR_THEME/config/gutenberg.php return [ ... 'settings' => [ ... "disable_blocks" => false ], ... ];
disable_blocks can handle multiple type :
falsemean that all blocks are alloweda regexyou can use a regex to disallow every blocks matching this regex. ex./((core|yoast|yoast-seo|gravityforms)\/\w*)/a arrayyou can use a array with wildcards. ex:[ 'core/*', 'yoast/breadcrumb' ]
Globally disable blocks
<?php //web/app/themes/YOUR_THEME/config/gutenberg.php return [ ... 'settings' => [ ... "disable_blocks" => false ], ... ];
disable_blocks can handle multiple type :
falsemean that all blocks are alloweda regexyou can use a regex to disallow every blocks matching this regex. ex./((core|yoast|yoast-seo|gravityforms)\/\w*)/a arrayyou can use a array with wildcards. ex:[ 'core/*', 'yoast/breadcrumb' ]
Configure Gutenberg
<?php //web/app/themes/YOUR_THEME/config/gutenberg.php return [ ... 'templates' => [ ... "KEY" => [...] ], ... ];
KEY can handle multiple type :
- post type including custom post type. ex. post, page, project ...
- template ex. tpl-home.php
- id ex. 150
- post id ex. page-10
Settings
[
"enabled" => true,
"blocks" => [],
"template" => null,
"template_lock" => null
]
enabled : Ability to disable gutenberg for the key. true by default
blocks : List of allowed blocks. You can allow (ex. acf/text, acf/*) or disallow blocks (ex. !core/embed, !core/*)
template : Allow specifying a default initial state for an editor. null by default. see more
template_lock : Ability to lock gutenberg for the key. null by default. see more
License
Lumberjack Admin is released under the MIT License.
统计信息
- 总下载量: 6.41k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-09-08