SP page builder helper to pull through article text e.g. newsflash and assign it as item fulltext
$sppb_helper_path = JPATH_ADMINISTRATOR . '/components/com_sppagebuilder/helpers/sppagebuilder.php';
if (!file_exists($sppb_helper_path)) {
return;
}
if(!class_exists('SppagebuilderHelper')) {
require_once $sppb_helper_path;
}
$images = json_decode($item->images);
$item_heading = $params->get('item_heading', 'h4');
$item->fulltext = SppagebuilderHelper::onIntegrationPrepareContent($item->fulltext, 'com_content', 'article', $item->id);