Files
opensourcepos/app/Models/Tokens/Token.php
objecttothis de531e20c6 Migrations
- Delete old CI3 file
- Correct format of Migrations file datetime
2024-06-15 17:19:15 +02:00

63 lines
1.1 KiB
PHP

<?php
namespace App\Models\Tokens;
use CodeIgniter\Model;
/**
* Token class
*/
abstract class Token Extends Model
{
protected $value = '';
public function __construct(string $value = '')
{
parent::__construct();
$this->value = $value;
}
static function get_barcode_tokens(): array
{
return [
new Token_barcode_price(),
new Token_barcode_weight(),
new Token_barcode_ean()
];
}
static function get_tokens(): array
{
return [
new Token_customer(),
new Token_invoice_count(),
new Token_invoice_sequence(),
new Token_quote_sequence(),
new Token_suspended_invoice_count(),
new Token_quote_sequence(),
new Token_work_order_sequence(),
new Token_year_invoice_count(),
new Token_year_quote_count()
];
}
abstract public function token_id(): string;
abstract public function get_value();
function matches($token_id): bool
{
return $this->token_id() == $token_id;
}
function replace_token(string $text): string //TODO: This function is never called in the code
{
if(strstr($text, $this->token_id()))
{
return str_replace($this->token_id(), $this->get_value(), $text);
}
return $text;
}
}