Page MenuHomestyx hydra

PHUIDiffInlineCommentTableScaffold.php
No OneTemporary

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
Sat, Nov 15, 5:19 PM (7 h, 56 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
338251
Default Alt Text
PHUIDiffInlineCommentTableScaffold.php (527 B)

Event Timeline