getAuthorPHID(); $old = $this->getOldValue(); $new = $this->getNewValue(); switch ($this->getTransactionType()) { case self::TYPE_NAME: if ($old === null) { return pht( '%s created this network.', $this->renderHandleLink($author_phid)); } else { return pht( '%s renamed this network from "%s" to "%s".', $this->renderHandleLink($author_phid), $old, $new); } break; } return parent::getTitle(); } }