File "BeaconPro.php"

Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/flexible-shipping-pro/vendor_prefixed/wpdesk/wp-helpscout-beacon/src/Beacon/BeaconPro.php
File size: 762 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace FSProVendor\WPDesk\Beacon;

/**
 * Can display HelpScout Beacon without confirmation. For more info check https://secure.helpscout.net/settings/beacons/
 */
class BeaconPro extends \FSProVendor\WPDesk\Beacon\Beacon
{
    /**
     * Beacon constructor.
     *
     * @param string $beacon_id .
     * @param BeaconShouldShowStrategy $strategy When to display beacon.
     * @param string $assets_url With ending /
     */
    public function __construct($beacon_id, \FSProVendor\WPDesk\Beacon\BeaconShouldShowStrategy $strategy, $assets_url, $beacon_search_elements_class = 'hs-beacon-search')
    {
        parent::__construct($beacon_id, $strategy, $assets_url, $beacon_search_elements_class);
        $this->confirmation_message = '';
    }
}