mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-31 05:25:32 +08:00
17 lines
332 B
PHP
17 lines
332 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
|
||
class eccommon_view_helper{
|
||
|
||
function __construct($app){
|
||
$this->app = $app;
|
||
}
|
||
function modifier_barcode($data){
|
||
return kernel::single('eccommon_barcode')->get($data);
|
||
}
|
||
}
|