Page MenuHomePhorge

PHUIDiffInlineCommentTableScaffold.php
No OneTemporary

Size
527 B
Referenced Files
None
Subscribers
None

PHUIDiffInlineCommentTableScaffold.php

<?php
/**
* Wraps an inline comment row scaffold in a table.
*
* This scaffold is used to ship inlines over the wire to the client, so they
* arrive in a form that's easy to manipulate (a valid table node).
*/
final class PHUIDiffInlineCommentTableScaffold extends AphrontView {
private $rows = array();
public function addRowScaffold(PHUIDiffInlineCommentRowScaffold $row) {
$this->rows[] = $row;
return $this;
}
public function render() {
return phutil_tag('table', array(), $this->rows);
}
}

File Metadata

Mime Type
text/x-php
Expires
Wed, Jun 18, 8:32 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
225878
Default Alt Text
PHUIDiffInlineCommentTableScaffold.php (527 B)

Event Timeline