Page MenuHomestyx hydra

AphrontNoteView.php
No OneTemporary

AphrontNoteView.php

<?php
final class AphrontNoteView extends AphrontView {
private $title;
public function setTitle($title) {
$this->title = $title;
return $this;
}
public function render() {
$title = phutil_tag(
'div',
array(
'class' => 'title',
),
$this->title);
$inner = phutil_tag(
'div',
array(
'class' => 'inner',
),
$this->renderChildren());
require_celerity_resource('aphront-notes');
return phutil_tag(
'div',
array(
'class' => 'aphront-note',
),
array(
$title,
$inner));
}
}

File Metadata

Mime Type
text/x-php
Expires
Tue, Apr 28, 5:45 PM (1 d, 17 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1145343
Default Alt Text
AphrontNoteView.php (619 B)

Event Timeline