ying_wordClass.php 596 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * 移动端应用【word.文档】的接口程序
  4. * 主页:http://www.rockoa.com/
  5. * 软件:信呼
  6. * 作者:雨中磐石(rainrock)
  7. * 日期:2017-11-21
  8. */
  9. class ying_wordClass extends yingClassAction{
  10. private $mobj;
  11. private $searchtool = true; //需要搜索拦
  12. public function initYing($mobj)
  13. {
  14. $this->mobj = $mobj;
  15. //获取分区
  16. $worcarr = m('worc')->getmywroc();
  17. $this->mobj->assign('worcarr', $worcarr);
  18. $this->mobj->assign('searchtool', $this->searchtool);
  19. $this->mobj->assign('searchmsg', '文件名/文件夹');
  20. }
  21. }
粤ICP备19079148号