8889841cunlimited-elements-for-elementor-premium/provider/admin_notices/builders/banner_builder.class.php000064400000003360150514002620042327 0ustar00home/clixcotz/travelport.clix.co.tz/wp-content/pluginstheme = $theme; return $this; } /** * set the notice link URL */ public function link($url, $target = ''){ $this->linkUrl = $url; $this->linkTarget = $target; return $this; } /** * set the notice image URL */ public function image($url){ $this->imageUrl = $url; return $this; } /** * get the notice html */ public function build(){ $class = implode(' ', array( 'notice', 'uc-admin-notice', 'uc-admin-notice--banner', 'uc-admin-notice--theme-' . $this->theme, 'uc-admin-notice--' . $this->getId(), )); $html = '
'; $html .= ''; $html .= $this->getImageHtml(); $html .= ''; $html .= $this->getDebugHtml(); $html .= $this->getDismissHtml(); $html .= '
'; return $html; } /** * get the image html */ private function getImageHtml(){ if(empty($this->imageUrl)) return ''; return ''; } }