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