23 lines
656 B
PHP
23 lines
656 B
PHP
<?php
|
|
include_once DOL_DOCUMENT_ROOT .'/core/modules/DolibarrModules.class.php';
|
|
|
|
class modCzQrPay extends DolibarrModules
|
|
{
|
|
public function __construct($db)
|
|
{
|
|
$this->db = $db;
|
|
$this->numero = 104000;
|
|
$this->rights_class = 'czqrpay';
|
|
|
|
$this->family = "financial";
|
|
$this->name = 'czqrpay';
|
|
$this->description = "CZ QR Platba (SPD) for invoices and POS";
|
|
$this->version = '0.1';
|
|
$this->const_name = 'MAIN_MODULE_CZQRPAY';
|
|
$this->picto = 'payment';
|
|
|
|
$this->module_parts = array(
|
|
'hooks' => array('invoicecard','pdfgeneration','posreceipt')
|
|
);
|
|
}
|
|
}
|