mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-31 05:25:32 +08:00
20 lines
390 B
PHP
20 lines
390 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
|
||
class desktop_io_io{
|
||
|
||
function getTitle(&$cols){
|
||
$title = array();
|
||
foreach( $cols as $col => $val ){
|
||
if( !$val['deny_export'] )
|
||
$title[$col] = $val['label'].'('.$col.')';
|
||
}
|
||
return $title;
|
||
}
|
||
|
||
}
|