@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
at recaptime-dev/main 15 lines 226 B view raw
1<?php 2 3abstract 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}