mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-03 22:25:46 +08:00
15 lines
450 B
PHP
15 lines
450 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
|
||
class desktop_finder_magicvars{
|
||
var $column_control = '编辑';
|
||
function column_control($row){
|
||
return '<a href="index.php?app=desktop&ctl=magicvars&act=edit&p[0]='.$row['var_name'].'&_finder[finder_id]='.$_GET['_finder']['finder_id'].'" target="_blank">'.app::get('desktop')->_('编辑').'</a>';
|
||
}
|
||
|
||
}
|