0byt3m1n1-V2
Path:
/
home
/
yvffpqmy
/
hpacorporateresourcingltd.com
/
wp-content
/
plugins
/
quikblock
/
includes
/
[
Home
]
File: compat.php
<?php /** * Compatibility related functionality. * * Handles things like PHP version requirements * not met, unregistering blocks, etc. * * This file should remain PHP 5.2 compatible. * * @package Quikblock\Compatibility */ if ( PHP_VERSION_ID < 50600 ) { add_action( 'enqueue_block_editor_assets', 'quikblock_unregister_newsletter_block' ); } /** * Unregisters the newsletter block on sites * running PHP < 5.6. */ function quikblock_unregister_newsletter_block() { ?> <script> window.addEventListener( 'DOMContentLoaded', function() { wp.domReady( function() { wp.blocks.unregisterBlockType( 'quikblock/newsletter' ); } ); } ); </script> <?php }
©
2018.