This repository has been archived by the owner on Dec 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathredbot-companion.php
63 lines (55 loc) · 2.2 KB
/
redbot-companion.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php
/**
* Plugin Name: Redbot Companion
* Description: Un plugin companion pour Redbot avec différentes fonctionnalités.
* Version: 0.1
* Author: Ton Nom
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
// Inclut le fichier pour enregistrer le bloc personnalisé.
require_once plugin_dir_path( __FILE__ ) . 'blocks/block-trois-colonnes-pages.php';
function redbot_companion_register_block_assets() {
// Enregistre le script pour le bloc.
wp_register_script(
'redbot-companion-block-script',
plugin_dir_url( __FILE__ ) . 'blocks/block.js',
array( 'wp-blocks', 'wp-element', 'wp-editor' ),
filemtime( plugin_dir_path( __FILE__ ) . 'blocks/block.js' ) // Ajoute un hash pour le cache.
);
// Enregistre le style pour le bloc.
wp_register_style(
'redbot-companion-block-style',
plugin_dir_url( __FILE__ ) . 'blocks/style.css',
array( 'wp-edit-blocks' ),
filemtime( plugin_dir_path( __FILE__ ) . 'blocks/style.css' ) // Ajoute un hash pour le cache.
);
// Enregistre le script de configuration pour le bloc.
wp_register_script(
'redbot-companion-block-editor',
plugin_dir_url( __FILE__ ) . 'blocks/block-editor.js',
array( 'wp-blocks', 'wp-element', 'wp-editor' ),
filemtime( plugin_dir_path( __FILE__ ) . 'blocks/block-editor.js' ) // Ajoute un hash pour le cache.
);
// Enregistre les scripts et styles pour le bloc.
register_block_type( 'redbot-companion/trois-colonnes-pages', array(
'editor_script' => 'redbot-companion-block-script',
'editor_style' => 'redbot-companion-block-editor',
'attributes' => array(
'selectedPage1' => array(
'type' => 'object',
),
'selectedPage2' => array(
'type' => 'object',
),
'selectedPage3' => array(
'type' => 'object',
),
),
'edit' => 'redbot_companion_edit_block_trois_colonnes_pages',
'save' => 'redbot_companion_save_block_trois_colonnes_pages',
) );
}
add_action( 'init', 'redbot_companion_register_block_assets' );
// Ajoute d'autres fonctionnalités du plugin ici.