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} 16 17