| 123456789101112131415161718 |
- <?php
- public function setListValue($productID, $branch = 0)
- {
- return $this->loadExtension('excel')->setListValue($productID, $branch);
- }
- public function createFromImport($productID, $branch = 0, $type = 'story', $projectID = 0)
- {
- return $this->loadExtension('excel')->createFromImport($productID, $branch, $type, $projectID);
- }
- /**
- * @param string $type
- */
- public function replaceURLang($type)
- {
- $this->loadExtension('excel')->replaceURLang($type);
- }
|