Files
OMS/app/monitor/lib/finder/event/receiver.php
2025-12-28 23:13:25 +08:00

23 lines
688 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/**
* Copyright © ShopeX http://www.shopex.cn. All rights reserved.
* See LICENSE file for license details.
*/
/**
* @Author: xueding@shopex.cn
* @Vsersion: 2022/10/13
* @Describe: 预警配置finder类
*/
class monitor_finder_event_receiver
{
var $column_edit = '操作';
var $column_edit_width = "75";
var $column_edit_order = "10";
function column_edit($row)
{
$btn = '<a href="index.php?app=monitor&ctl=admin_alarm_receiver&act=edit&p[0]=' . $row['id'] . '&finder_id=' . $_GET['_finder']['finder_id'] . '" target="dialog::{width:800,height:630,title:\'编辑收件人\'}" >编辑</a>&nbsp;&nbsp;';
return $btn;
}
}