当前位置: 首页>>代码示例>>PHP>>正文


PHP ContentObjectRenderer::_call方法代码示例

本文整理汇总了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));
 }
开发者ID:CDRO,项目名称:TYPO3.CMS,代码行数:12,代码来源:ContentObjectRendererTest.php

示例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));
 }
开发者ID:TYPO3Incubator,项目名称:TYPO3.CMS,代码行数:19,代码来源:ContentObjectRendererTest.php

示例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));
 }
开发者ID:Mr-Robota,项目名称:TYPO3.CMS,代码行数:13,代码来源:ContentObjectRendererTest.php


注:本文中的TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::_call方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。