homegrade_blocks_production/index.php

118 lines
3.5 KiB
PHP

<?php
/**
* Plugin Name: Homegrade Blocks
* Description: Un série de Blocks sur mesure pour l'écriture du contenu Homegrade
* Requires at least: 6.1
* Requires PHP: 7.0
* Version: 0.1.0
* Author: Deligraph
* License: GPL-2.0-or-later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: multiblocks
*
*/
// ####### REGISTER BLOCKS
function create_block_multiblocks_block_init()
{
register_block_type(__DIR__ . '/blocka/build');
register_block_type(__DIR__ . '/blocks/rich-paragraph/build');
register_block_type(__DIR__ . '/blocks/picture-banner/build');
register_block_type(__DIR__ . '/blocks/points-cles/build');
register_block_type(__DIR__ . '/blocks/content-heading/build');
register_block_type(__DIR__ . '/blocks/questions-container/build');
register_block_type(__DIR__ . '/blocks/questions-container-auto/build');
register_block_type(__DIR__ . '/blocks/highlight/build');
register_block_type(__DIR__ . '/blocks/chapter-header/build');
}
add_action('init', 'create_block_multiblocks_block_init');
// ####### ENQUEUE EDITOR JS CONTEXT
function homegrade_blocks_enqueue_editor_assets()
{
$asset_file = include(plugin_dir_path(__FILE__) . 'build/index.asset.php');
wp_enqueue_script('homegrade-blocks-script', plugins_url('build/index.js', __FILE__), $asset_file['dependencies'], $asset_file['version']);
// wp_enqueue_script( 'blocks-course-plugin-boilerplate-script', plugins_url('build/index.js', __FILE__), $asset_file['dependencies'], $asset_file['version']);
// wp_enqueue_style( 'blocks-course-plugin-boilerplate-style', plugins_url('build/index.css', __FILE__) );
}
add_action('enqueue_block_editor_assets', 'homegrade_blocks_enqueue_editor_assets');
// ####### HANDLE BLOCKS TEMPLATE
function homegrade_allowed_block_types($allowed_blocks, $editor_context)
{
if ('conseils' === $editor_context->post->post_type) {
$allowed_blocks = array(
'core/paragraph',
'core/list',
'core/list-item',
'homegrade-content-blocks/chapter-header',
'homegrade-content-blocks/points-cles',
'homegrade-content-blocks/questions-container'
);
}
add_filter('homegrade_allowed_block_types', 'misha_allowed_block_types', 25, 2);
if ('fiche-questions' === $editor_context->post->post_type) {
$allowed_blocks = array(
'core/paragraph',
'core/heading',
'core/list',
'core/list-item',
'homegrade-content-blocks/chapter-header',
'homegrade-content-blocks/points-cles',
'homegrade-content-blocks/questions-container'
);
}
return $allowed_blocks;
####ONLY DEREGISTER FEW BLOCKS
// get all the registered blocks
// $blocks = WP_Block_Type_Registry::get_instance()->get_all_registered();
// then disable some of them
// unset($blocks['core/paragraph']);
// unset($blocks['core/heading']);
// return the new list of allowed blocks
// return array_keys($blocks);
}
function wpblock_add_block_categories($categories)
{
return array_merge(
[
[
'slug' => 'homegrade-blocks',
'title' => __('Blocs Homegrade ', 'block-course'),
'icon' => 'heart',
],
],
$categories
);
}
add_action('block_categories', 'wpblock_add_block_categories', 25, 2);
function blocks_course_plugin_enqueue_assets()
{
$asset_file = include(plugin_dir_path(__FILE__) . 'build/index.asset.php');
wp_enqueue_script('homegrade-content-blocks', plugins_url('build/filters/filters.js', __FILE__), $asset_file['dependencies'], $asset_file['version']);
}
add_action('enqueue_block_editor_assets', 'blocks_course_plugin_enqueue_assets');
include_once('templates.php');