CartPage_Controller::Title PHP Method

Title() public method

Display a title if there is no model, or no title.
public Title ( )
    public function Title()
    {
        if ($this->Title) {
            return $this->Title;
        }
        return _t('CartPage.DefaultTitle', "Shopping Cart");
    }
CartPage_Controller