Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/view/AphrontAutoIDView.php
12241 views
1
<?php
2
3
abstract class AphrontAutoIDView
4
extends AphrontView {
5
6
private $id;
7
8
final public function getID() {
9
if (!$this->id) {
10
$this->id = celerity_generate_unique_node_id();
11
}
12
return $this->id;
13
}
14
15
}
16
17