| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- /**
- * @param int $dimensionID
- */
- public function getList($dimensionID)
- {
- return $this->loadExtension('zentaobiz')->getList($dimensionID);
- }
- public function create($dimensionID)
- {
- return $this->loadExtension('zentaobiz')->create($dimensionID);
- }
- public function update($screenID)
- {
- return $this->loadExtension('zentaobiz')->update($screenID);
- }
- public function publish($screenID)
- {
- return $this->loadExtension('zentaobiz')->publish($screenID);
- }
- public function getTreeData($dimensionID)
- {
- return $this->loadExtension('zentaobiz')->getTreeData($dimensionID);
- }
- public function getChartTreeData($dimensionID, $type, $parent = '')
- {
- return $this->loadExtension('zentaobiz')->getChartTreeData($dimensionID, $type, $parent);
- }
- public function getDimensionPairs()
- {
- return $this->loadExtension('zentaobiz')->getDimensionPairs();
- }
- public function getTreeSelectOptions()
- {
- return $this->loadExtension('zentaobiz')->getTreeSelectOptions();
- }
- public function checkIFChartInUse($chartID, $type = 'chart')
- {
- return $this->loadExtension('zentaobiz')->checkIFChartInUse($chartID, $type);
- }
- public function saveThumbnail($screenID)
- {
- return $this->loadExtension('zentaobiz')->saveThumbnail($screenID);
- }
|