| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?php
- /**
- * @param object $data
- * @return object
- * @param mixed[] $storyList
- * @param string $type
- */
- public function getBasicMetrics($storyList, $data, $type = 'execution')
- {
- return $this->loadExtension('report')->getBasicMetrics($storyList, $data, $type);
- }
- /**
- * @param object $data
- * @param mixed[] $storyList
- * @param string $type
- */
- public function buildBasicChartConfig($storyList, $data, $type = 'execution')
- {
- return $this->loadExtension('report')->buildBasicChartConfig($storyList, $data, $type);
- }
- /**
- * @return object
- * @param mixed[] $storyList
- */
- public function getProgressMetrics($storyList)
- {
- return $this->loadExtension('report')->getProgressMetrics($storyList);
- }
- /**
- * @param mixed[] $storyList
- */
- public function buildProgressChartConfig($storyList)
- {
- return $this->loadExtension('report')->buildProgressChartConfig($storyList);
- }
- /**
- * @param int $storyID
- * @param string $begin
- * @param string $end
- */
- public function getChangedStory($storyID, $begin, $end)
- {
- return $this->loadExtension('report')->getChangedStory($storyID, $begin, $end);
- }
- /**
- * @return object
- * @param mixed[] $storyList
- * @param mixed[] $items
- */
- public function getMetricsCount($storyList, $data = null, $items = array())
- {
- return $this->loadExtension('report')->getMetricsCount($storyList, $data, $items);
- }
- /**
- * @return object
- * @param mixed[] $storyList
- * @param mixed[] $items
- */
- public function getMetricsChart($storyList, $items = array())
- {
- return $this->loadExtension('report')->getMetricsChart($storyList, $items);
- }
|