|
TYPO3 API
SVNRelease
|
00001 <?php 00002 00003 /* * 00004 * This script belongs to the FLOW3 package "Fluid". * 00005 * * 00006 * It is free software; you can redistribute it and/or modify it under * 00007 * the terms of the GNU Lesser General Public License as published by the * 00008 * Free Software Foundation, either version 3 of the License, or (at your * 00009 * option) any later version. * 00010 * * 00011 * This script is distributed in the hope that it will be useful, but * 00012 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- * 00013 * TABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser * 00014 * General Public License for more details. * 00015 * * 00016 * You should have received a copy of the GNU Lesser General Public * 00017 * License along with the script. * 00018 * If not, see http://www.gnu.org/licenses/lgpl.html * 00019 * * 00020 * The TYPO3 project - inspiring people to share! * 00021 * */ 00022 00023 /** 00024 * 00025 * 00026 * @license http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public License, version 3 or later 00027 */ 00028 interface Tx_Fluid_Core_Rendering_RenderingContextInterface { 00029 00030 /** 00031 * Returns the object manager. Only the ViewHelperNode should do this. 00032 * 00033 * @param Tx_Extbase_Object_ObjectManagerInterface $objectManager 00034 */ 00035 public function getObjectManager(); 00036 00037 /** 00038 * Injects the template variable container containing all variables available through ObjectAccessors 00039 * in the template 00040 * 00041 * @param Tx_Fluid_Core_ViewHelper_TemplateVariableContainer $templateVariableContainer The template variable container to set 00042 */ 00043 public function setTemplateVariableContainer(Tx_Fluid_Core_ViewHelper_TemplateVariableContainer $templateVariableContainer); 00044 00045 /** 00046 * Get the template variable container 00047 * 00048 * @return Tx_Fluid_Core_ViewHelper_TemplateVariableContainer The Template Variable Container 00049 */ 00050 public function getTemplateVariableContainer(); 00051 00052 /** 00053 * Set the controller context which will be passed to the ViewHelper 00054 * 00055 * @param Tx_Extbase_MVC_Controller_ControllerContext $controllerContext The controller context to set 00056 */ 00057 public function setControllerContext(Tx_Extbase_MVC_Controller_ControllerContext $controllerContext); 00058 00059 /** 00060 * Get the controller context which will be passed to the ViewHelper 00061 * 00062 * @return Tx_Extbase_MVC_Controller_ControllerContext The controller context to set 00063 */ 00064 public function getControllerContext(); 00065 00066 /** 00067 * Set the ViewHelperVariableContainer 00068 * 00069 * @param Tx_Fluid_Core_ViewHelper_ViewHelperVariableContainer $viewHelperVariableContainer 00070 * @return void 00071 */ 00072 public function setViewHelperVariableContainer(Tx_Fluid_Core_ViewHelper_ViewHelperVariableContainer $viewHelperVariableContainer); 00073 00074 /** 00075 * Get the ViewHelperVariableContainer 00076 * 00077 * @return Tx_Fluid_Core_ViewHelper_ViewHelperVariableContainer 00078 */ 00079 public function getViewHelperVariableContainer(); 00080 } 00081 ?>
1.8.0