BaseEventTypeController::getTitle PHP Méthode

getTitle() public méthode

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