Akeneo\Component\SpreadsheetParser\Xlsx\Relationships::getSharedStringsPath PHP Method

getSharedStringsPath() public method

Returns the path of the shared strings file inside the xlsx file
public getSharedStringsPath ( ) : string
return string
    public function getSharedStringsPath()
    {
        return $this->sharedStringPath;
    }

Usage Example

 /**
  * @return SharedStrings
  */
 protected function getSharedStrings()
 {
     if (!$this->sharedStrings) {
         $path = $this->archive->extract($this->relationships->getSharedStringsPath());
         $this->sharedStrings = $this->sharedStringsLoader->open($path);
     }
     return $this->sharedStrings;
 }