Piwik\Plugins\CustomPiwikJs\File::getContent PHP Method

getContent() public method

public getContent ( )
    public function getContent()
    {
        if (!$this->hasReadAccess()) {
            return null;
        }
        return file_get_contents($this->file);
    }

Usage Example

示例#1
0
 public function update()
 {
     if (!$this->toFile->hasWriteAccess() || !$this->fromFile->hasReadAccess()) {
         return;
     }
     $trackingCode = new PiwikJsManipulator($this->fromFile->getContent(), $this->trackerFiles);
     $newContent = $trackingCode->manipulateContent();
     if ($newContent !== $this->toFile->getContent()) {
         $this->toFile->save($newContent);
     }
 }
All Usage Examples Of Piwik\Plugins\CustomPiwikJs\File::getContent