Files
xinhu/webmain/model/agent/xinhuModel.php
2022-08-14 16:47:40 +08:00

30 lines
1.2 KiB
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
/**
* 信呼团队应用
*/
class agent_xinhuClassModel extends agentModel
{
protected function agentdata($uid, $lx)
{
$rows[] = array(
'title' => '欢迎使用信呼',
'cont' => '官网:<a href="'.URLY.'" target="_blank">'.URLY.'</a><br>版本:'.VERSION.'',
'statuscolor' => 'green',
'statustext' => '官网'
);
$rows[] = array(
'title' => '信呼开源协议',
'cont' => '我们是开源PHP系统可以自己企业单位内部使用禁止商业销售欢迎研究学习使用好的设计你可以借鉴不好的你可以吐槽让我们改善。',
'statuscolor' => 'green',
'statustext' => '官网'
);
$rows[] = array(
'title' => '信呼相关帮助',
'cont' => '1、常见使用问题<a href="'.URLY.'view_cjwt.html" target="_blank">[查看]</a><br>2、使用前必读 <a href="'.URLY.'view_bidu.html" target="_blank">[查看]</a><br>3、二次开发前必读 <a href="'.URLY.'view_devbd.html" target="_blank">[查看]</a><br>4、更多帮助问题列表 <a href="'.URLY.'infor.html" target="_blank">[查看]</a>',
'statuscolor' => 'green',
'statustext' => '官网'
);
$arr['rows'] = $rows;
return $arr;
}
}