Your IP : 216.73.216.240


Current Path : /home/juvelize/saulnois/tmp/install_695d2cf0b4957/src/View/Others/
Upload File :
Current File : /home/juvelize/saulnois/tmp/install_695d2cf0b4957/src/View/Others/Qrcode.php

<?php
/*
* @package		Tech Fry Library
* @license		https://www.gnu.org/licenses/gpl-3.0.en.html
*/

namespace TechFry\Library\View\Others;

defined('_JEXEC') or die;

use TechFry\Library\View\Sky\Bootstrap;

// Reference: https://quickchart.io/documentation/qr-codes/
class Qrcode extends Bootstrap
{
    public function display()
    {
        if (empty($this->data))
        {
            return;
        }
        
        $url = 'https://quickchart.io/qr?text=' . urlencode($this->data);
        
        $output = '<img src="' . $url . '">';
        
        return $output;
    }
    
    // Depreciated
    public static function get_output($content, $config = array())
    {
        if (empty($content))
        {
            return;
        }
        
        $url = 'https://quickchart.io/qr?text=' . $content;
        
        $output = '<img src="' . $url . '">';
        
        return $output;
    }
}