calendar.php 773 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * The model file of calendar module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2012 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
  6. * @license business(商业软件)
  7. * @author Memory <lvtao@cnezsoft.com>
  8. * @package calendar
  9. * @version $Id$
  10. * @link http://www.zentao.net
  11. * @param mixed[]|string $skipProductIDList
  12. * @param int|string|mixed[] $appendStoryID
  13. * @param string $account
  14. * @param int $limit
  15. * @param string $type
  16. */
  17. public function getUserStoryPairs($account, $limit = 10, $type = 'story', $skipProductIDList = array(), $appendStoryID = 0)
  18. {
  19. return $this->loadExtension('calendar')->getUserStoryPairs($account, $limit, $type, $skipProductIDList, $appendStoryID);
  20. }