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' => 2, 'id' => $inline->getScaffoldCellID(), ); if ($inline->getIsOnRight()) { $left_hidden = null; $right_hidden = $inline->newHiddenIcon(); } else { $left_hidden = $inline->newHiddenIcon(); $right_hidden = null; } $cells = array( phutil_tag('td', array('class' => 'n'), $left_hidden), phutil_tag('td', array('class' => 'n'), $right_hidden), phutil_tag('td', array('class' => 'copy')), phutil_tag('td', $attrs, $inline), ); return javelin_tag('tr', $this->getRowAttributes(), $cells); } }