HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux ip-172-31-42-149 5.15.0-1084-aws #91~20.04.1-Ubuntu SMP Fri May 2 07:00:04 UTC 2025 aarch64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/vhost/disk-apps/magento.bikenow.co/vendor/avada/module-proofo/Block/Snippet.php
<?php
/**
 * Avada
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the avada.io license that is
 * available through the world-wide-web at this URL:
 * https://www.avada.io/LICENSE.txt
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade this extension to newer
 * version in the future.
 *
 * @category    Avada
 * @package     Avada_Proofo
 * @copyright   Copyright (c) Avada (https://www.avada.io/)
 * @license     https://www.avada.io/LICENSE.txt
 */

namespace Avada\Proofo\Block;

use Magento\Framework\View\Element\Template;
use \Magento\Framework\View\Element\Template\Context;
use Avada\Proofo\Helper\Data;
use Avada\Proofo\Helper\WebHookSync;

/**
 * Class Snippet
 * @package Avada\Proofo\Block
 */
class Snippet extends Template
{
    /**
     * @var Data
     */
    protected $helperData;

    /**
     * @var \Magento\Framework\Registry
     */
    protected $_registry;

    /**
     * Snippet constructor.
     * @param Context $context
     * @param Data $helperData
     * @param array $data
     */
    public function __construct(
        Context $context,
        Data $helperData,
        \Magento\Framework\Registry $registry,
        array $data = []
    )
    {
        $this->helperData = $helperData;
        $this->_registry = $registry;

        parent::__construct($context, $data);
    }

    /**
     * @return mixed
     * @throws \Magento\Framework\Exception\NoSuchEntityException
     */
    public function getAppId()
    {
        return $this->helperData->getAppId();
    }

    /**
     * @return array|bool|mixed
     * @throws \Magento\Framework\Exception\NoSuchEntityException
     */
    public function isEnabled()
    {
        return $this->helperData->isEnabled();
    }

    /**
     * @return string
     */
    public function getAppUrl()
    {
        return WebHookSync::APP_URL;
    }

    /**
     * @return mixed
     */
    public function getCurrentProductId()
    {
        $currentProduct = $this->_registry->registry('current_product');
        if ($currentProduct) {
            return $this->_registry->registry('current_product')->getId();
        }

        return json_encode(null);
    }

    /**
     * @return false|string
     */
    public function isProductPage()
    {
        return json_encode(
            $this->_request->getFullActionName() === 'catalog_product_view'
        );
    }
}