信呼OA版本v2.3.8

This commit is contained in:
雨中磐石
2022-08-14 16:47:40 +08:00
parent 4640677d27
commit e3fcd913e3
1405 changed files with 133635 additions and 73 deletions

View File

@@ -0,0 +1,30 @@
<?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;
}
}