Files
OMS/app/ome/lib/finder/print/otmpl.php
2025-12-28 23:13:25 +08:00

30 lines
683 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.
*/
/**
* 打印模板finder类
*
* @author chenping<chenping@shopex.cn>
* @version 2012-4-18 13:39
*/
class ome_finder_print_otmpl
{
function __construct(&$app)
{
}
var $column_control = '操作';
/**
* column_control
* @param mixed $row row
* @return mixed 返回值
*/
public function column_control($row){
return '<a href="index.php?app=ome&ctl=admin_print_otmpl&act=show&p[0]='.$row['id'].'&p[1]='.$row['type'].'&finder_id='.$_GET['_finder']['finder_id'].'" target="_blank">编辑</a>';
}
}