| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/ict/wp-content/plugins/the-post-grid/app/Controllers/ |
Upload File : |
<?php
/**
* Elementor Controller class.
*
* @package RT_TPG
*/
namespace RT\ThePostGrid\Controllers;
use RT\ThePostGrid\Helpers\Fns;
// Do not allow directly accessing this file.
if ( ! defined( 'ABSPATH' ) ) {
exit( 'This script cannot be accessed directly.' );
}
class GutenBergController {
function __construct() {
add_action('enqueue_block_assets', array($this, 'block_assets'));
add_action('enqueue_block_editor_assets', array($this, 'block_editor_assets'));
if(function_exists('register_block_type')) {
register_block_type('rttpg/post-grid', array(
'render_callback' => array($this,'render_shortcode'),
));
}
}
static function render_shortcode( $atts ){
if(!empty($atts['gridId']) && $id = absint($atts['gridId'])){
//return do_shortcode( '[the-post-grid id="' . $id . '"]' );
ob_start();
echo do_shortcode( '[the-post-grid id="' . $id . '"]' );
return ob_get_clean();
}
}
function block_assets() {
wp_enqueue_style('wp-blocks');
}
function block_editor_assets() {
// Scripts.
wp_enqueue_script(
'rt-tpg-cgb-block-js',
rtTPG()->get_assets_uri('js/post-grid-blocks.js'),
array('wp-blocks', 'wp-i18n', 'wp-element'),
(defined('WP_DEBUG') && WP_DEBUG) ? time() : RT_THE_POST_GRID_VERSION,
true
);
wp_localize_script('rt-tpg-cgb-block-js', 'rttpgGB', array(
'short_codes' => Fns::getAllTPGShortCodeList(),
'icon' => rtTPG()->get_assets_uri('images/icon-16x16.png'),
));
wp_enqueue_style('wp-edit-blocks');
}
}