信呼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,27 @@
<?php
/**
* 移动端应用【word.文档】的接口程序
* 主页http://www.rockoa.com/
* 软件:信呼
* 作者:雨中磐石(rainrock)
* 日期2017-11-21
*/
class ying_wordClass extends yingClassAction{
private $mobj;
private $searchtool = true; //需要搜索拦
public function initYing($mobj)
{
$this->mobj = $mobj;
//获取分区
$worcarr = m('worc')->getmywroc();
$this->mobj->assign('worcarr', $worcarr);
$this->mobj->assign('searchtool', $this->searchtool);
$this->mobj->assign('searchmsg', '文件名/文件夹');
}
}