BaseEventTypeController::getTitle PHP Method

getTitle() public method

public getTitle ( )
    public function getTitle()
    {
        if (isset($this->title)) {
            return $this->title;
        }
        if (isset($this->event_type)) {
            return $this->event_type->name;
        }
        return '';
    }
BaseEventTypeController