Beiträge von GeGeek

    Tom, add a link of this page to the breadcrumb like this :



    To do this, you need to add :

    XML
    use wcf\system\breadcrumb\Breadcrumb;
    use wcf\system\request\LinkHandler;


    and


    XML
    public function readData() {
        	parent::readData();
    
        	// add breadcrumbs
        	WCF::getBreadcrumbs()->add(new Breadcrumb(WCF::getLanguage()->get('AdditionalInformations'), LinkHandler::getInstance()->getLink('AdditionalInformations')));
    	}


    so there is the complete AdditionalInformationsPage.class file :


    Great !


    Maybe you can add BreadCrumbs :)


    PHP
    use wcf\system\breadcrumb\Breadcrumb;


    PHP
    public function readData() {
    		parent::readData();
    
    		// add breadcrumbs
    		WCF::getBreadcrumbs()->add(new Breadcrumb(WCF::getLanguage()->get('Your Text'), LinkHandler::getInstance()->getLink('Your Text')));
    	}