Current Path: > home > transcarter > public_html > wp-content > plugins > leadin > public > utils
Operation : Linux host59.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64 Software : Apache Server IP : 198.54.126.42 | Your IP: 216.73.216.135 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
class-proxyutils.php | File | 2000 bytes | July 17 2025 21:06:25. | |
class-queryparameters.php | File | 2283 bytes | July 17 2025 21:06:25. | |
class-requestutils.php | File | 1113 bytes | July 17 2025 21:06:25. | |
class-shortcoderenderutils.php | File | 4883 bytes | July 17 2025 21:06:25. | |
class-versions.php | File | 1567 bytes | July 17 2025 21:06:25. |
<?php namespace Leadin\utils; use Leadin\data\Filters; use Leadin\AssetsManager; /** * Util Class responsible for rendering shortcodes. */ class ShortcodeRenderUtils { /** * Render leadin shortcodes output * * @param array $shortcode_attrs Shortcode attributes. */ public static function render_shortcode( $shortcode_attrs ) { $parsed_attributes = shortcode_atts( array( 'type' => null ), $shortcode_attrs ); $type = $parsed_attributes['type']; if ( ! isset( $type ) ) { return; } switch ( $type ) { case 'form': return self::render_form( $shortcode_attrs ); case 'cta': return self::render_cta( $shortcode_attrs ); case 'meeting': return self::render_meeting( $shortcode_attrs ); } } /** * Render form leadin shortcodes * * @param array $attrs Shortcode attributes. */ private static function render_form( $attrs ) { $parsed_attributes = shortcode_atts( array( 'portal' => null, 'id' => null, 'version' => null, ), $attrs ); $portal_id = $parsed_attributes['portal']; $id = $parsed_attributes['id']; $version = $parsed_attributes['version']; if ( ! isset( $portal_id ) || ! isset( $id ) || ! is_numeric( $portal_id ) || ! ( self::is_valid_uuid( $id ) || is_numeric( $id ) ) ) { return; } $form_div_uuid = self::generate_div_uuid(); $hublet = Filters::apply_hublet_filters(); if ( isset( $version ) && 'v4' === $version ) { AssetsManager::enqueue_form_v4_script( $portal_id ); return ' <div class="hs-form-frame" data-region="' . $hublet . '" data-form-id="' . $id . '" data-portal-id="' . $portal_id . '" ' . Filters::apply_forms_v4_payload_filters() . ' > </div> '; } else { AssetsManager::enqueue_forms_script(); return ' <script> window.hsFormsOnReady = window.hsFormsOnReady || []; window.hsFormsOnReady.push(()=>{ hbspt.forms.create({ portalId: ' . $portal_id . ', formId: "' . $id . '", target: "#hbspt-form-' . $form_div_uuid . '", region: "' . $hublet . '", ' . Filters::apply_forms_payload_filters() . ' })}); </script> <div class="hbspt-form" id="hbspt-form-' . $form_div_uuid . '"></div>'; } } /** * Render cta leadin shortcodes * * @param array $attrs Shortcode attributes. */ private static function render_cta( $attrs ) { $parsed_attributes = shortcode_atts( array( 'portal' => null, 'id' => null, ), $attrs ); $portal_id = $parsed_attributes['portal']; $id = $parsed_attributes['id']; if ( ! isset( $portal_id ) || ! isset( $id ) || ! is_numeric( $portal_id ) || ! ( self::is_valid_uuid( $id ) || is_numeric( $id ) ) ) { return; } return ' <!--HubSpot Call-to-Action Code --> <span class="hs-cta-wrapper" id="hs-cta-wrapper-' . $id . '"> <span class="hs-cta-node hs-cta-' . $id . '" id="' . $id . '"> <!--[if lte IE 8]> <div id="hs-cta-ie-element"></div> <![endif]--> <a href="https://cta-redirect.hubspot.com/cta/redirect/' . $portal_id . '/' . $id . '" > <img class="hs-cta-img" id="hs-cta-img-' . $id . '" style="border-width:0px;" src="https://no-cache.hubspot.com/cta/default/' . $portal_id . '/' . $id . '.png" alt="New call-to-action"/> </a> </span> <' . 'script charset="utf-8" src="//js.hubspot.com/cta/current.js"></script> <script> hbspt.cta.load(' . $portal_id . ', \'' . $id . '\', {}); </script> </span> <!-- end HubSpot Call-to-Action Code --> '; } /** * Render meeting leadin shortcodes * * @param array $attrs Shortcode attributes. */ private static function render_meeting( $attrs ) { $parsed_attributes = shortcode_atts( array( 'url' => null, ), $attrs ); $url = esc_url_raw( $parsed_attributes['url'] ); if ( filter_var( $url, FILTER_VALIDATE_URL ) === false ) { return; } AssetsManager::enqueue_meetings_script(); return ' <div class="meetings-iframe-container" data-src="' . $url . '?embed=true"></div> <script> if(window.hbspt && window.hbspt.meetings){ window.hbspt.meetings.create(".meetings-iframe-container"); } </script> '; } /** * Generates 10 characters long string with random values */ private static function get_random_number_string() { $result = ''; for ( $i = 0; $i < 10; $i++ ) { $result .= wp_rand( 0, 9 ); } return $result; } /** * Generates a unique uuid */ private static function generate_div_uuid() { return time() * 1000 . '-' . self::get_random_number_string(); } /** * Checks if input is a valid uuid. * * @param String $uuid input to validate. */ private static function is_valid_uuid( $uuid ) { if ( ! is_string( $uuid ) || ( preg_match( '/^[a-f\d]{8}(-[a-f\d]{4}){4}[a-f\d]{8}$/i', $uuid ) !== 1 ) ) { return false; } return true; } }
SILENT KILLER Tool