Page MenuHomePhorge

AphrontNoteView.php
No OneTemporary

Size
619 B
Referenced Files
None
Subscribers
None

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
Mon, May 5, 6:30 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
72807
Default Alt Text
AphrontNoteView.php (619 B)

Event Timeline