mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-24 17:27:55 -05:00
23 lines
294 B
PHP
23 lines
294 B
PHP
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
/**
|
|
* Token_barcode_price class
|
|
*/
|
|
|
|
class Token_barcode_weight extends Token
|
|
{
|
|
|
|
public function token_id()
|
|
{
|
|
return 'W';
|
|
}
|
|
|
|
public function get_value()
|
|
{
|
|
return '\d';
|
|
}
|
|
|
|
}
|
|
|
|
?>
|