mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 02:45:33 +08:00
24 lines
628 B
PHP
24 lines
628 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
|
||
class omecsv_specification_actions{
|
||
|
||
|
||
function action_modify(&$actions){
|
||
kernel::log("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_specification&add=ome','target'=>'dialog::{width:400,height:150,title:\''.app::get('desktop')->_('导入').'\'}');
|
||
}
|
||
}
|
||
|
||
}
|
||
|
||
|
||
|
||
}
|