本文整理汇总了PHP中TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::_call方法的典型用法代码示例。如果您正苦于以下问题:PHP ContentObjectRenderer::_call方法的具体用法?PHP ContentObjectRenderer::_call怎么用?PHP ContentObjectRenderer::_call使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer
的用法示例。
在下文中一共展示了ContentObjectRenderer::_call方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: forceAbsoluteUrlReturnsCorrectAbsoluteUrlWithSubfolder
/**
* @test
*/
public function forceAbsoluteUrlReturnsCorrectAbsoluteUrlWithSubfolder()
{
// Force hostname and subfolder
$this->subject->expects($this->any())->method('getEnvironmentVariable')->will($this->returnValueMap(array(array('HTTP_HOST', 'localhost'), array('TYPO3_SITE_PATH', '/subfolder/'))));
$expected = 'http://localhost/subfolder/fileadmin/my.pdf';
$url = 'fileadmin/my.pdf';
$configuration = array('forceAbsoluteUrl' => '1');
$this->assertEquals($expected, $this->subject->_call('forceAbsoluteUrl', $url, $configuration));
}
示例2: detectLinkTypeFromLinkParameter
/**
* @test
* @param string $linkParameter
* @param string $expectedResult
* @dataProvider detectLinkTypeFromLinkParameterDataProvider
*/
public function detectLinkTypeFromLinkParameter($linkParameter, $expectedResult)
{
/** @var TemplateService|\PHPUnit_Framework_MockObject_MockObject $templateServiceObjectMock */
$templateServiceObjectMock = $this->getMock(TemplateService::class, array('dummy'));
$templateServiceObjectMock->setup = array('lib.' => array('parseFunc.' => $this->getLibParseFunc()));
/** @var TypoScriptFrontendController|\PHPUnit_Framework_MockObject_MockObject $typoScriptFrontendControllerMockObject */
$typoScriptFrontendControllerMockObject = $this->getMock(TypoScriptFrontendController::class, array(), array(), '', false);
$typoScriptFrontendControllerMockObject->config = array('config' => array(), 'mainScript' => 'index.php');
$typoScriptFrontendControllerMockObject->tmpl = $templateServiceObjectMock;
$GLOBALS['TSFE'] = $typoScriptFrontendControllerMockObject;
$this->subject->_set('typoScriptFrontendController', $typoScriptFrontendControllerMockObject);
$this->assertEquals($expectedResult, $this->subject->_call('detectLinkTypeFromLinkParameter', $linkParameter));
}
示例3: forceAbsoluteUrlReturnsCorrectAbsoluteUrl
/**
* @param string $expected The expected URL
* @param string $url The URL to parse and manipulate
* @param array $configuration The configuration array
* @test
* @dataProvider forceAbsoluteUrlReturnsCorrectAbsoluteUrlDataProvider
*/
public function forceAbsoluteUrlReturnsCorrectAbsoluteUrl($expected, $url, array $configuration)
{
// Force hostname
$this->cObj->expects($this->any())->method('getEnvironmentVariable')->will($this->returnValueMap(array(array('HTTP_HOST', 'localhost'), array('TYPO3_SITE_PATH', '/'))));
$this->assertEquals($expected, $this->cObj->_call('forceAbsoluteUrl', $url, $configuration));
}