| 1 |
<?php |
| 2 |
/* |
| 3 |
Plugin Name: Qi Blocks |
| 4 |
Description: A collection of blocks for the Gutenberg block editor, developed by Qode Interactive. |
| 5 |
Author: Qode Interactive |
| 6 |
Author URI: https://qodeinteractive.com/ |
| 7 |
Plugin URI: https://qodeinteractive.com/qi-blocks-for-gutenberg/ |
| 8 |
Version: 1.0.4 |
| 9 |
Requires at least: 5.8 |
| 10 |
Requires PHP: 7.0 |
| 11 |
Text Domain: qi-blocks |
| 12 |
*/ |
| 13 |
if ( ! class_exists( 'Qi_Blocks' ) ) { |
| 14 |
class Qi_Blocks { |
| 15 |
private static $instance; |
| 16 |
|
| 17 |
public function __construct() { |
| 18 |
// Set the main plugins constants |
| 19 |
define( 'QI_BLOCKS_PLUGIN_BASE_FILE', plugin_basename( __FILE__ ) ); |
| 20 |
define( 'QI_BLOCKS_PLUGIN_LANGUAGES_PATH', plugin_dir_path( __FILE__ ) . '/languages/' ); |
| 21 |
|
| 22 |
// Include required files |
| 23 |
require_once dirname( __FILE__ ) . '/constants.php'; |
| 24 |
|
| 25 |
// Check if Gutenberg editor exists |
| 26 |
if ( class_exists( 'WP_Block_Type' ) ) { |
| 27 |
require_once QI_BLOCKS_ABS_PATH . '/helpers/helper.php'; |
| 28 |
|
| 29 |
// Make plugin available for translation |
| 30 |
add_action( 'plugins_loaded', array( $this, 'load_plugin_text_domain' ) ); |
| 31 |
|
| 32 |
// Add plugin's body classes |
| 33 |
add_filter( 'body_class', array( $this, 'add_body_classes' ) ); |
| 34 |
|
| 35 |
// Allow SVG MIME Type in Media Upload |
| 36 |
add_filter( 'upload_mimes', array( $this, 'allow_svg_media_files' ) ); |
| 37 |
add_filter( 'wp_check_filetype_and_ext', array( $this, 'check_svg_upload' ), 10, 4 ); |
| 38 |
|
| 39 |
// Enqueue plugin's assets |
| 40 |
add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_assets' ) ); |
| 41 |
add_action( 'wp_enqueue_scripts', array( $this, 'localize_js_scripts' ) ); |
| 42 |
|
| 43 |
// Register plugin's editor assets |
| 44 |
add_action( 'init', array( $this, 'register_editor_assets' ) ); |
| 45 |
|
| 46 |
// Enqueue plugin's editor assets |
| 47 |
add_action( 'enqueue_block_editor_assets', array( $this, 'enqueue_editor_assets' ) ); |
| 48 |
add_action( 'enqueue_block_editor_assets', array( $this, 'localize_editor_js_scripts' ) ); |
| 49 |
|
| 50 |
// Set plugin's blocks style dependency |
| 51 |
add_filter( 'qi_blocks_filter_block_style_dependency', array( $this, 'set_block_style_dependency' ) ); |
| 52 |
|
| 53 |
// Include plugin's modules |
| 54 |
$this->include_modules(); |
| 55 |
} |
| 56 |
} |
| 57 |
|
| 58 |
/** |
| 59 |
* @return Qi_Blocks |
| 60 |
*/ |
| 61 |
public static function get_instance() { |
| 62 |
if ( is_null( self::$instance ) ) { |
| 63 |
self::$instance = new self(); |
| 64 |
} |
| 65 |
|
| 66 |
return self::$instance; |
| 67 |
} |
| 68 |
|
| 69 |
function load_plugin_text_domain() { |
| 70 |
// Make plugin available for translation |
| 71 |
load_plugin_textdomain( 'qi-blocks', false, QI_BLOCKS_REL_PATH . '/languages' ); |
| 72 |
} |
| 73 |
|
| 74 |
function add_body_classes( $classes ) { |
| 75 |
$classes[] = 'qi-blocks-' . QI_BLOCKS_VERSION; |
| 76 |
|
| 77 |
if ( wp_is_mobile() ) { |
| 78 |
$classes[] = 'qodef-gutenberg--touch'; |
| 79 |
} else { |
| 80 |
$classes[] = 'qodef-gutenberg--no-touch'; |
| 81 |
} |
| 82 |
|
| 83 |
return $classes; |
| 84 |
} |
| 85 |
|
| 86 |
function allow_svg_media_files( $mimes ) { |
| 87 |
$mimes['svg'] = 'image/svg+xml'; |
| 88 |
$mimes['svgz'] = 'image/svg+xml'; |
| 89 |
|
| 90 |
return $mimes; |
| 91 |
} |
| 92 |
|
| 93 |
function check_svg_upload( $checked, $file, $filename, $mimes ) { |
| 94 |
|
| 95 |
if ( ! $checked['type'] ) { |
| 96 |
|
| 97 |
$check_filetype = wp_check_filetype( $filename, $mimes ); |
| 98 |
$ext = $check_filetype['ext']; |
| 99 |
$type = $check_filetype['type']; |
| 100 |
$proper_filename = $filename; |
| 101 |
|
| 102 |
if ( $type && 0 === strpos( $type, 'image/' ) && $ext !== 'svg' ) { |
| 103 |
$ext = $type = false; |
| 104 |
} |
| 105 |
|
| 106 |
$checked = compact( 'ext', 'type', 'proper_filename' ); |
| 107 |
} |
| 108 |
|
| 109 |
return $checked; |
| 110 |
} |
| 111 |
|
| 112 |
function enqueue_assets() { |
| 113 |
|
| 114 |
// Enqueue plugin's 3rd party scripts |
| 115 |
$this->enqueue_3rd_party_assets(); |
| 116 |
|
| 117 |
// Enqueue CSS grid styles |
| 118 |
wp_enqueue_style( 'qi-blocks-grid', QI_BLOCKS_ASSETS_URL_PATH . '/dist/grid.css' ); |
| 119 |
|
| 120 |
// Enqueue CSS styles |
| 121 |
wp_enqueue_style( 'qi-blocks-main', QI_BLOCKS_ASSETS_URL_PATH . '/dist/main.css' ); |
| 122 |
|
| 123 |
// Enqueue JS scripts |
| 124 |
wp_enqueue_script( 'qi-blocks-main', QI_BLOCKS_ASSETS_URL_PATH . '/dist/main.js', array( 'jquery' ), false, true ); |
| 125 |
} |
| 126 |
|
| 127 |
function register_editor_assets() { |
| 128 |
|
| 129 |
// Enqueue plugin's 3rd party scripts |
| 130 |
$this->enqueue_3rd_party_assets(); |
| 131 |
|
| 132 |
// Register CSS grid styles |
| 133 |
wp_register_style( 'qi-blocks-grid-editor', QI_BLOCKS_ASSETS_URL_PATH . '/dist/grid-editor.css', array( 'qi-blocks-main' ) ); |
| 134 |
|
| 135 |
// Register CSS styles |
| 136 |
wp_register_style( 'qi-blocks-main', QI_BLOCKS_ASSETS_URL_PATH . '/dist/main.css' ); |
| 137 |
wp_register_style( 'qi-blocks-main-editor', QI_BLOCKS_ASSETS_URL_PATH . '/dist/main-editor.css', array( 'qi-blocks-main' ) ); |
| 138 |
} |
| 139 |
|
| 140 |
function enqueue_editor_assets() { |
| 141 |
|
| 142 |
// Enqueue CSS grid styles |
| 143 |
wp_enqueue_style( 'qi-blocks-grid-editor' ); |
| 144 |
|
| 145 |
// Enqueue CSS styles |
| 146 |
wp_enqueue_style( 'qi-blocks-main' ); |
| 147 |
wp_enqueue_style( 'qi-blocks-main-editor' ); |
| 148 |
|
| 149 |
// Enqueue JS scripts |
| 150 |
wp_enqueue_script( 'qi-blocks-main-editor', QI_BLOCKS_ASSETS_URL_PATH . '/dist/main-editor.js', array( 'wp-blocks', 'wp-element', 'wp-block-editor', 'wp-plugins', 'wp-edit-post', 'wp-i18n', 'wp-api-fetch', 'wp-api', 'wp-data', 'wp-html-entities', 'wp-date', 'wp-autop' ), false, true ); |
| 151 |
|
| 152 |
// Enqueue localization data for our blocks |
| 153 |
if ( function_exists( 'wp_set_script_translations' ) ) { |
| 154 |
wp_set_script_translations( 'qi-blocks-main-editor', 'qi-blocks' ); |
| 155 |
} |
| 156 |
} |
| 157 |
|
| 158 |
function enqueue_3rd_party_assets() { |
| 159 |
|
| 160 |
// Hook to include additional 3rd party scripts |
| 161 |
do_action( 'qi_blocks_action_additional_3rd_party_scripts' ); |
| 162 |
|
| 163 |
// Register and enqueue animate styles |
| 164 |
wp_register_style( 'animate', QI_BLOCKS_ASSETS_URL_PATH . '/css/plugins/animate/animate.min.css' ); |
| 165 |
wp_enqueue_style( 'animate' ); |
| 166 |
|
| 167 |
// Register lightbox scripts |
| 168 |
wp_register_script( 'fslightbox', QI_BLOCKS_ASSETS_URL_PATH . '/js/plugins/fslightbox/fslightbox.min.js', array( 'jquery' ), false, true ); |
| 169 |
} |
| 170 |
|
| 171 |
function set_block_style_dependency( $style_dependency ) { |
| 172 |
$style_dependency[] = 'animate'; |
| 173 |
$style_dependency[] = 'qi-blocks-main'; |
| 174 |
|
| 175 |
if ( is_admin() ) { |
| 176 |
$style_dependency[] = 'qi-blocks-main-editor'; |
| 177 |
$style_dependency[] = 'qi-blocks-grid-editor'; |
| 178 |
} |
| 179 |
|
| 180 |
return $style_dependency; |
| 181 |
} |
| 182 |
|
| 183 |
function localize_js_scripts() { |
| 184 |
$global = apply_filters( |
| 185 |
'qi_blocks_filter_localize_main_js', |
| 186 |
array( |
| 187 |
'arrowLeftIcon' => '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 34.2 32.3" xml:space="preserve" style="stroke-width: 2;"><line x1="0.5" y1="16" x2="33.5" y2="16"/><line x1="0.3" y1="16.5" x2="16.2" y2="0.7"/><line x1="0" y1="15.4" x2="16.2" y2="31.6"/></svg>', |
| 188 |
'arrowRightIcon' => '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 34.2 32.3" xml:space="preserve" style="stroke-width: 2;"><line x1="0" y1="16" x2="33" y2="16"/><line x1="17.3" y1="0.7" x2="33.2" y2="16.5"/><line x1="17.3" y1="31.6" x2="33.5" y2="15.4"/></svg>', |
| 189 |
'closeIcon' => '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 9.1 9.1" xml:space="preserve"><g><path d="M8.5,0L9,0.6L5.1,4.5L9,8.5L8.5,9L4.5,5.1L0.6,9L0,8.5L4,4.5L0,0.6L0.6,0L4.5,4L8.5,0z"/></g></svg>', |
| 190 |
) |
| 191 |
); |
| 192 |
|
| 193 |
wp_localize_script( |
| 194 |
'qi-blocks-main', |
| 195 |
'qiBlocks', |
| 196 |
array( |
| 197 |
'vars' => $global, |
| 198 |
) |
| 199 |
); |
| 200 |
} |
| 201 |
|
| 202 |
function localize_editor_js_scripts() { |
| 203 |
$global = apply_filters( |
| 204 |
'qi_blocks_filter_localize_main_editor_js', |
| 205 |
array( |
| 206 |
'siteURL' => esc_url( get_home_url( '/' ) ), |
| 207 |
'dateFormat' => esc_attr( get_option( 'date_format' ) ), // TBR! |
| 208 |
'defaultTitleLabel' => esc_html__( 'Example Title Text', 'qi-blocks' ), |
| 209 |
'defaultSubtitleLabel' => esc_html__( 'Example Subtitle Text', 'qi-blocks' ), |
| 210 |
'defaultContentLabel' => esc_html__( 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.', 'qi-blocks' ), |
| 211 |
'defaultContentLong' => esc_html__( 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris tempus nisl vitae magna pulvinar laoreet. Nullam erat ipsum, mattis nec mollis ac, accumsan a enim. Nunc at euismod arcu. Aliquam ullamcorper eros justo, vel mollis neque facilisis vel. Proin augue tortor, condimentum id sapien a, tempus venenatis massa. Aliquam egestas eget diam sed sagittis. Vivamus consectetur purus vel felis molestie sollicitudin. Vivamus sit amet enim nisl. Cras vitae varius metus, a hendrerit ex. Sed in mi dolor. Proin pretium nibh non volutpat efficitur.', 'qi-blocks' ), |
| 212 |
'defaultImage' => esc_url( QI_BLOCKS_ASSETS_URL_PATH . '/img/placeholder.png' ), |
| 213 |
'defaultThumbnail' => esc_url( QI_BLOCKS_ASSETS_URL_PATH . '/img/placeholder-150x150.png' ), |
| 214 |
'defaultImagePlaceholder' => esc_html__( 'Placeholder Image', 'qi-blocks' ), |
| 215 |
'defaultFontSize' => 16, |
| 216 |
'defaultLineHeight' => 26, |
| 217 |
'defaultIcon' => '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="16" height="15" x="0px" y="0px" viewBox="0 0 16.2 15.2" xml:space="preserve"><g><g><path d="M16.1,5.8l-5,3.5l1.9,5.7l-4.9-3.6l-4.9,3.6l1.9-5.7l-5-3.5h6.1l1.9-5.7L10,5.8H16.1z"/></g></g></svg>', |
| 218 |
'quoteIcon' => '<svg class="qodef-e-quote-icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 190.5 148" xml:space="preserve"><g><path d="M37.7,146.3L2.1,124.6C19.3,100,28.2,74.1,28.8,46.7V2.3H90v38.8c0,19.3-5,38.8-15.1,58.4C64.9,119,52.5,134.6,37.7,146.3z M133.7,146.3l-35.6-21.7c17.2-24.5,26.2-50.5,26.8-77.9V2.3h61.2v38.8c0,19.3-5,38.8-15.1,58.4C160.9,119,148.5,134.6,133.7,146.3z"/></g></svg>', |
| 219 |
'arrowLeftIcon' => '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 34.2 32.3" xml:space="preserve" style="stroke-width: 2;"><line x1="0.5" y1="16" x2="33.5" y2="16"/><line x1="0.3" y1="16.5" x2="16.2" y2="0.7"/><line x1="0" y1="15.4" x2="16.2" y2="31.6"/></svg>', |
| 220 |
'arrowRightIcon' => '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 34.2 32.3" xml:space="preserve" style="stroke-width: 2;"><line x1="0" y1="16" x2="33" y2="16"/><line x1="17.3" y1="0.7" x2="33.2" y2="16.5"/><line x1="17.3" y1="31.6" x2="33.5" y2="15.4"/></svg>', |
| 221 |
'closeIcon' => '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 9.1 9.1" xml:space="preserve"><g><path d="M8.5,0L9,0.6L5.1,4.5L9,8.5L8.5,9L4.5,5.1L0.6,9L0,8.5L4,4.5L0,0.6L0.6,0L4.5,4L8.5,0z"/></g></svg>', |
| 222 |
'searchIcon' => '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="18.7px" height="19px" viewBox="0 0 18.7 19" xml:space="preserve"><g><path d="M11.1,15.2c-4.2,0-7.6-3.4-7.6-7.6S6.9,0,11.1,0s7.6,3.4,7.6,7.6S15.3,15.2,11.1,15.2z M11.1,1.4c-3.4,0-6.2,2.8-6.2,6.2s2.8,6.2,6.2,6.2s6.2-2.8,6.2-6.2S14.5,1.4,11.1,1.4z"/></g><g><rect x="-0.7" y="14.8" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -9.9871 6.9931)" width="8.3" height="1.4"/></g></svg>', |
| 223 |
'menuIcon' => '<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="13" x="0px" y="0px" viewBox="0 0 21.3 13.7" xml:space="preserve" aria-hidden="true"><rect x="10.1" y="-9.1" transform="matrix(-1.836970e-16 1 -1 -1.836970e-16 11.5 -9.75)" width="1" height="20"/><rect x="10.1" y="-3.1" transform="matrix(-1.836970e-16 1 -1 -1.836970e-16 17.5 -3.75)" width="1" height="20"/><rect x="10.1" y="2.9" transform="matrix(-1.836970e-16 1 -1 -1.836970e-16 23.5 2.25)" width="1" height="20"/></svg>', |
| 224 |
'categoryIcon' => '<svg class="qodef-e-info-item-icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 16.1 14.9" xml:space="preserve"><path d="M14.6,0.3c0.3,0,0.6,0.1,0.9,0.3s0.4,0.5,0.4,0.9v10.6c0,0.3-0.1,0.6-0.4,0.9s-0.5,0.4-0.9,0.4H9.3c-0.6,0-0.9,0.2-0.9,0.7v0.5H8H7.8v-0.5c0-0.5-0.3-0.7-0.9-0.7H1.5c-0.3,0-0.6-0.1-0.9-0.4c-0.2-0.2-0.4-0.5-0.4-0.9V1.5c0-0.3,0.1-0.6,0.4-0.9c0.2-0.2,0.5-0.3,0.9-0.3h5.6c0.4,0,0.7,0.1,1,0.4c0.2-0.3,0.6-0.4,1-0.4H14.6z M7.8,13.2V1.7c0-0.2-0.1-0.4-0.3-0.5C7.3,1,7,0.9,6.8,0.9H1.5c-0.4,0-0.6,0.2-0.6,0.6v10.6c0,0.2,0.1,0.3,0.2,0.5s0.3,0.2,0.4,0.2h5.3C7.3,12.8,7.6,12.9,7.8,13.2zM15.2,12.1V1.5c0-0.4-0.2-0.6-0.6-0.6h-1.2v4.9l-1.8-1.2L9.8,5.7V0.9H9.3C9,0.9,8.8,1,8.6,1.2C8.4,1.3,8.3,1.5,8.3,1.7v11.5c0.1-0.3,0.4-0.4,0.9-0.4h5.3c0.2,0,0.3-0.1,0.4-0.2S15.2,12.3,15.2,12.1z M10.4,0.9v3.7l0.9-0.5l0.3-0.2l0.3,0.2l0.9,0.5V0.9H10.4z"/></svg>', |
| 225 |
'authorIcon' => '<svg class="qodef-e-info-item-icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 15.9 15.9" xml:space="preserve"><path d="M2.5,2.5C4,1,5.8,0.2,7.9,0.2c2.1,0,3.9,0.8,5.5,2.3c1.5,1.5,2.3,3.3,2.3,5.5c0,2.1-0.8,3.9-2.3,5.5c-1.5,1.5-3.3,2.3-5.5,2.3c-2.1,0-3.9-0.8-5.5-2.3C1,11.9,0.2,10,0.2,7.9C0.2,5.8,1,4,2.5,2.5z M12.9,2.9c-1.4-1.4-3.1-2.1-5-2.1c-2,0-3.6,0.7-5,2.1C1.5,4.3,0.9,6,0.9,7.9c0,1.7,0.6,3.2,1.7,4.5c1-0.4,2.1-0.8,3.3-1.2c0.1,0,0.1-0.2,0.1-0.4c0-0.4,0-0.7-0.1-0.9C5.7,9.7,5.6,9.3,5.5,8.8C5.3,8.5,5.1,8.1,5,7.6c-0.1-0.4-0.1-0.7,0-1V6.5c0.1-0.2,0-0.7-0.1-1.4C4.8,4.5,5,3.8,5.5,3.2c0.5-0.6,1.2-1,2.2-1h0.7c1,0,1.7,0.4,2.2,1c0.5,0.6,0.7,1.3,0.6,1.9c-0.1,0.7-0.2,1.2-0.1,1.4c0,0,0,0,0,0.1c0.1,0.2,0.1,0.6,0,1c-0.1,0.5-0.3,0.9-0.5,1.2c-0.1,0.5-0.2,0.9-0.3,1.2c-0.1,0.3-0.2,0.6-0.2,0.9c0,0.2,0,0.4,0.1,0.4c1.2,0.4,2.4,0.8,3.5,1.2c1.1-1.3,1.7-2.8,1.7-4.5C15,6,14.3,4.3,12.9,2.9z"/></svg>', |
| 226 |
'dateIcon' => '<svg class="qodef-e-info-item-icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 14.6 14.6" xml:space="preserve"><path d="M10.9,1.3V0.2h-0.6v1.2H4.3V0.2H3.7v1.2H0.2v13.1h14.3V1.3H10.9z M10.9,1.9v1.2h-0.6V1.9H10.9z M4.3,1.9v1.2H3.7V1.9H4.3z M13.8,13.8H0.8V4.9h13.1V13.8z"/></svg>', |
| 227 |
) |
| 228 |
); |
| 229 |
|
| 230 |
wp_localize_script( |
| 231 |
'qi-blocks-main-editor', |
| 232 |
'qiBlocksEditor', |
| 233 |
array( |
| 234 |
'vars' => $global, |
| 235 |
) |
| 236 |
); |
| 237 |
} |
| 238 |
|
| 239 |
function include_modules() { |
| 240 |
// Hook to include additional element before modules inclusion |
| 241 |
do_action( 'qi_blocks_action_before_include_modules' ); |
| 242 |
|
| 243 |
foreach ( glob( QI_BLOCKS_INC_PATH . '/*/include.php' ) as $module ) { |
| 244 |
include_once $module; |
| 245 |
} |
| 246 |
|
| 247 |
// Hook to include additional element after modules inclusion |
| 248 |
do_action( 'qi_blocks_action_after_include_modules' ); |
| 249 |
} |
| 250 |
} |
| 251 |
|
| 252 |
Qi_Blocks::get_instance(); |
| 253 |
} |
| 254 |
|
| 255 |
if ( ! function_exists( 'qi_blocks_activation_trigger' ) ) { |
| 256 |
/** |
| 257 |
* Function that trigger hooks on plugin activation |
| 258 |
*/ |
| 259 |
function qi_blocks_activation_trigger() { |
| 260 |
set_transient( QI_BLOCKS_ACTIVATED_TRANSIENT, 1 ); |
| 261 |
|
| 262 |
// Hook to add additional code on plugin activation |
| 263 |
do_action( 'qi_blocks_action_on_activation' ); |
| 264 |
} |
| 265 |
|
| 266 |
register_activation_hook( __FILE__, 'qi_blocks_activation_trigger' ); |
| 267 |
} |
| 268 |
|
| 269 |
if ( ! function_exists( 'qi_blocks_deactivation_trigger' ) ) { |
| 270 |
/** |
| 271 |
* Function that trigger hooks on plugin deactivation |
| 272 |
*/ |
| 273 |
function qi_blocks_deactivation_trigger() { |
| 274 |
|
| 275 |
// Hook to add additional code on plugin deactivation |
| 276 |
do_action( 'qi_blocks_action_on_deactivation' ); |
| 277 |
} |
| 278 |
|
| 279 |
register_deactivation_hook( __FILE__, 'qi_blocks_deactivation_trigger' ); |
| 280 |
} |
| 281 |
|