mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 10:55:34 +08:00
23 lines
569 B
PHP
23 lines
569 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
|
||
class omecsv_order_actions{
|
||
|
||
|
||
function action_modify(&$actions){
|
||
foreach($actions as $key=>$action){
|
||
if($action['label']=="导入"){
|
||
$actions[$key] = array('label'=>app::get('desktop')->_('导入'),'icon'=>'upload.gif','href'=>'index.php?app=omecsv&ctl=admin_import&act=main&ctler=ome_mdl_orders&add=ome','target'=>'dialog::{width:600,height:300,title:\''.app::get('desktop')->_('导入').'\'}');
|
||
}
|
||
}
|
||
|
||
}
|
||
|
||
|
||
|
||
}
|