Files
xinhu/webmain/we/ying/yingyong/ying_wordClass.php
2022-08-14 16:47:40 +08:00

27 lines
596 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
/**
* 移动端应用【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', '文件名/文件夹');
}
}