calendar.php 782 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * The model file of my module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2012 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
  6. * @license business(商业软件)
  7. * @author Yangyang Shi <shiyangyang@cnezsoft.com>
  8. * @package calendar
  9. * @version $Id$
  10. * @link http://www.zentao.net
  11. */
  12. public function getTodos4Calendar($account = '', $year = '')
  13. {
  14. return $this->loadExtension('calendar')->getTodos4Calendar($account, $year);
  15. }
  16. public function getWeekTodos($begin, $end, $account = '')
  17. {
  18. return $this->loadExtension('calendar')->getWeekTodos($begin, $end, $account);
  19. }
  20. public function getTodos4Side($account = '')
  21. {
  22. return $this->loadExtension('calendar')->getTodos4Side($account);
  23. }