/**
  * Sets the jumpurl for page type "External URL"
  *
  * @return	void
  */
 function setExternalJumpUrl()
 {
     if ($extUrl = $this->sys_page->getExtURL($this->page, $this->config['config']['disablePageExternalUrl'])) {
         $this->jumpurl = $extUrl;
     }
 }
 /**
  * @test
  */
 public function getExtUrlForDokType3AndUrlType0PrependsSiteUrl()
 {
     $this->assertEquals(t3lib_div::getIndpEnv('TYPO3_SITE_URL') . 'hello/world/', $this->pageSelectObject->getExtURL(array('doktype' => 3, 'urltype' => 0, 'url' => 'hello/world/')));
 }