AbstractView::defaultSpot PHP Method

defaultSpot() public method

Normally when you add a view, it's output is placed inside tag of its parent view. You can specify a different tag as 3rd argument for the add() method. If you wish for object to use different tag by default, you can override this method.
public defaultSpot ( ) : string
return string Tag / Spot in $this->owner->template
    public function defaultSpot()
    {
        return 'Content';
    }