use Elementor\Widget_Base;
use Elementor\Controls_Manager;
use Elementor\Scheme_Color;
+use PhysioAssist\Elementor\Utils;
class TextBlock extends Widget_Base {
// For now only supporting links that start with https://www.youtube.com...
if (strpos($cta_link['url'], 'https://www.youtube.com') === 0) {
$cta_tag = 'div';
- $this->add_render_attribute('cta_text', 'data-elementor-lightbox', VideoGallery::lightbox($cta_link['url'], $this->get_id()));
+ $this->add_render_attribute('cta_text', 'data-elementor-lightbox', Utils::lightbox($cta_link['url'], $this->get_id()));
$this->add_render_attribute('cta_text', 'data-elementor-open-lightbox', 'yes');
} else {
$this->add_render_attribute( 'cta_text', 'href', $cta_link['url'] );