Page MenuHomec4science

PHUIDiffOneUpInlineCommentRowScaffold.php
No OneTemporary

File Metadata

Created
Sat, Jan 11, 22:34

PHUIDiffOneUpInlineCommentRowScaffold.php

<?php
/**
* Row scaffold for `1up` (unified) changeset views.
*
* This scaffold is straightforward.
*/
final class PHUIDiffOneUpInlineCommentRowScaffold
extends PHUIDiffInlineCommentRowScaffold {
public function render() {
$inlines = $this->getInlineViews();
if (count($inlines) != 1) {
throw new Exception(
pht('One-up inline row scaffold must have exactly one inline view!'));
}
$inline = head($inlines);
$attrs = array(
'colspan' => 3,
'class' => 'right3',
);
$cells = array(
phutil_tag('th', array()),
phutil_tag('th', array()),
phutil_tag('td', $attrs, $inline),
);
return phutil_tag('tr', $this->getRowAttributes(), $cells);
}
}

Event Timeline