| Server IP : 14.225.204.176 / Your IP : 216.73.216.6 Web Server : nginx/1.24.0 System : Linux nodejs-ybgk 6.8.0-40-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 5 10:34:03 UTC 2024 x86_64 User : root ( 0) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/php/wit-crm/modules/qrcode/service/ |
Upload File : |
<?php
namespace app\modules\qrcode\service;
use Invoice_pdf;
class InvoiceQRCode extends QRCode
{
function getMergeFieldSlug(): string
{
return 'invoice_merge_fields';
}
function getMergeFieldParameter()
{
return $this->getData()['invoice']->id;
}
public function getMergeDataFormat(): string
{
return get_option('invoice_qr_code_info');
}
public function isQrEnabled(): bool
{
return get_option('show_invoice_qr_code') == 1;
}
public function getClientId(): string
{
return $this->getData()['invoice']->clientid;
}
public function isBase64EncryptionEnabled(): bool
{
return get_option('qr_code_invoice_base64_encryption') == '1';
}
/**
* @param Invoice_pdf $pdf
*
* @return void
*/
public function render($pdf): void
{
$this->setQRPosition($pdf, (float) get_option('invoice_qr_code_x_position'), (float) get_option('invoice_qr_code_y_position'));
parent::render($pdf);
}
}