GIF94;
| Path : /var/www/wordpress/wp-content/plugins/oxygen/plugin/blocks/ |
| Current File : /var/www/wordpress/wp-content/plugins/oxygen/plugin/blocks/block-shortcode.php |
<?php
namespace Breakdance\Blocks;
add_shortcode('breakdance_block', 'Breakdance\Blocks\block_shortcode_handler');
add_shortcode('oxygen_component', 'Breakdance\Blocks\block_shortcode_handler');
/**
* @param array{blockId?:string}|mixed $atts
* @return string
*/
function block_shortcode_handler($atts)
{
if (!is_array($atts) || !array_key_exists('blockid', $atts)) {
return "";
}
$blockId = (int) $atts['blockid'];
if ($blockId) {
return (string) \Breakdance\Render\renderGlobalBlock($blockId);
}
return "";
}