Page MenuHomePhorge

PhabricatorPDFContentsObject.php
No OneTemporary

PhabricatorPDFContentsObject.php

<?php
final class PhabricatorPDFContentsObject
extends PhabricatorPDFObject {
private $rawContent;
public function setRawContent($raw_content) {
$this->rawContent = $raw_content;
return $this;
}
public function getRawContent() {
return $this->rawContent;
}
protected function writeObject() {
$data = $this->getRawContent();
$stream_length = $this->newStream($data);
$this->writeLine('/Filter /FlateDecode /Length %d', $stream_length);
}
}

File Metadata

Mime Type
text/x-php
Expires
Sun, Jan 19, 17:33 (1 w, 5 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1127013
Default Alt Text
PhabricatorPDFContentsObject.php (487 B)

Event Timeline