mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-25 09:48:02 -05:00
22 lines
290 B
PHP
22 lines
290 B
PHP
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
/**
|
|
* Token_barcode_price class
|
|
*/
|
|
|
|
class Token_barcode_ean extends Token
|
|
{
|
|
|
|
public function token_id()
|
|
{
|
|
return 'I';
|
|
}
|
|
|
|
public function get_value()
|
|
{
|
|
return '\w';
|
|
}
|
|
|
|
}
|
|
|
|
?>
|