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
Thu, Jan 15, 2:02 AM (1 d, 8 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
612057
Default Alt Text
AphrontNoteView.php (619 B)

Event Timeline