first commit

This commit is contained in:
Prospect Ogujiuba
2024-07-02 11:00:03 -04:00
commit 7464e10f35
119 changed files with 12935 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<?php
PG_Blocks_v2::register_block_type( array(
'name' => 'leonpharmacy/contact-block',
'title' => __( 'Contact Page', 'leonpharmacy' ),
'category' => 'Leon Pharmacy Blocks',
'enqueue_editor_style' => get_template_directory_uri() . '/assets/css/tailwind_for_wp_editor.css',
'render_template' => 'blocks/contact-block/contact-block.php',
'supports' => array('color' => array('background' => false,'text' => false,'gradients' => false,'link' => false,),'typography' => array('fontSize' => false,),'anchor' => false,'align' => false,),
'base_url' => get_template_directory_uri(),
'base_path' => get_template_directory(),
'js_file' => 'blocks/contact-block/contact-block.js',
'attributes' => array(
),
'example' => array(
),
'dynamic' => true,
'version' => '1.5'
) );