TYPO3  7.6
Public Member Functions | Static Public Member Functions | Public Attributes | Protected Member Functions | Protected Attributes | List of all members
TemplateService Class Reference
Inheritance diagram for TemplateService:
ExtendedTemplateService ConfigurationForm

Public Member Functions

 getProcessExtensionStatics ()
 
 setProcessExtensionStatics ($processExtensionStatics)
 
 setVerbose ($verbose)
 
 init ()
 
 getCurrentPageData ()
 
 runThroughTemplates ($theRootLine, $start_template_uid=0)
 
 processTemplate ($row, $idList, $pid, $templateID= '', $templateParent= '', $includePath= '')
 
 updateRootlineData ($fullRootLine)
 
 includeStaticTypoScriptSources ($idList, $templateID, $pid, $row)
 
 addExtensionStatics ($idList, $templateID, $pid, $row)
 
 prependStaticExtra ($subrow)
 
 versionOL (&$row)
 
 processIncludes ()
 
 flattenSetup ($setupArray, $prefix)
 
 substituteConstants ($all)
 
 substituteConstantsCallBack ($matches)
 
 splitConfArray ($conf, $splitCount)
 
 getFileName ($fileFromSetup)
 
 printTitle ($pageTitle, $noTitle=false, $showTitleFirst=false, $pageTitleSeparator= '')
 
 fileContent ($fileName)
 
 wrap ($content, $wrap)
 
 removeQueryString ($url)
 
 getRootlineLevel ($list)
 
 linkData ($page, $oTarget, $no_cache, $script, $overrideArray=null, $addParams= '', $typeOverride= '', $targetDomain= '')
 
 getFromMPmap ($pageId=0)
 
 initMPmap_create ($id, $MP_array=array(), $level=0)
 

Static Public Member Functions

static sortedKeyList ($setupArr, $acceptOnlyProperties=false)
 

Public Attributes

 $tt_track = true
 
 $forceTemplateParsing = false
 
 $matchAlternative = array()
 
 $matchAll = false
 
 $backend_info = false
 
 $ext_constants_BRP = 0
 
 $ext_config_BRP = 0
 
 $ext_regLinenumbers = false
 
 $ext_regComments = false
 
 $tempPath = 'typo3temp/'
 
 $whereClause = ''
 
 $debug = false
 
 $allowedPaths = array()
 
 $simulationHiddenOrTime = 0
 
 $loaded = false
 
 $setup = array()
 
 $flatSetup = array()
 
 $config = array()
 
 $constants = array()
 
 $hierarchyInfo = array()
 
 $hierarchyInfoToRoot = array()
 
 $nextLevel = 0
 
 $rootId
 
 $rootLine
 
 $absoluteRootLine
 
 $outermostRootlineIndexWithTemplate = 0
 
 $rowSum
 
 $sitetitle = ''
 
 $sections
 
 $sectionsMatch
 
 $clearList_const = array()
 
 $clearList_setup = array()
 
 $parserErrors = array()
 
 $setup_constants = array()
 
 $fileCache = array()
 
 $frames = array()
 
 $MPmap = ''
 

Protected Member Functions

 getTypoScriptSourceFileContent ($filePath, $baseName)
 
 addDefaultTypoScript ()
 
 getDatabaseConnection ()
 
 getTypoScriptFrontendController ()
 
 getTimeTracker ()
 

Protected Attributes

 $verbose = false
 
 $templateIncludePaths = array()
 
 $extensionStaticsProcessed = false
 
 $processExtensionStatics = false
 
 $isDefaultTypoScriptAdded = false
 
 $processIncludesHasBeenRun = false
 

Detailed Description

Template object that is responsible for generating the TypoScript template based on template records.

See Also

Definition at line 36 of file TemplateService.php.

Member Function Documentation

addDefaultTypoScript ( )
protected

Adds the TypoScript from the global array. The class property isDefaultTypoScriptAdded ensures that the adding only happens once.

Returns
void
See Also
isDefaultTypoScriptAdded

Definition at line 1667 of file TemplateService.php.

References $GLOBALS.

Referenced by TemplateService\runThroughTemplates().

addExtensionStatics (   $idList,
  $templateID,
  $pid,
  $row 
)

Adds the default TypoScript files for extensions if any.

Parameters
string$idListA list of already processed template ids including the current; The list is on the form "[prefix]_[uid]" where [prefix] is "sys" for "sys_template" records, "static" for "static_template" records and "ext_" for static include files (from extensions). The list is used to check that the recursive inclusion of templates does not go into circles: Simply it is used to NOT include a template record/file which has already BEEN included somewhere in the recursion.
string$templateIDThe id of the current template. Same syntax as $idList ids, eg. "sys_123
int$pidThe PID of the input template record
array$rowA full TypoScript template record
Returns
void private
See Also
includeStaticTypoScriptSources()

Definition at line 874 of file TemplateService.php.

References $GLOBALS, ExtensionManagementUtility\extPath(), GeneralUtility\getUrl(), TemplateService\prependStaticExtra(), and TemplateService\processTemplate().

Referenced by TemplateService\includeStaticTypoScriptSources(), and TemplateService\runThroughTemplates().

fileContent (   $fileName)

Reads the fileContent of $fileName and returns it. Similar to GeneralUtility::getUrl() but with an additional check if the path is allowed

Parameters
string$fileNameAbsolute filepath to record
Returns
NULL|string The content returned
See Also
::fileResource(), ::MULTIMEDIA(), GeneralUtility::getUrl()

Definition at line 1369 of file TemplateService.php.

References TemplateService\getFileName(), and GeneralUtility\getUrl().

flattenSetup (   $setupArray,
  $prefix 
)

This flattens a hierarchical TypoScript array to $this->flatSetup

Parameters
array$setupArrayTypoScript array
string$prefixPrefix to the object path. Used for recursive calls to this function.
Returns
void
See Also
generateConfig()

Definition at line 1148 of file TemplateService.php.

References StringUtility\beginsWith().

Referenced by ConfigurationForm\ext_setValueArray().

getCurrentPageData ( )

Fetches the "currentPageData" array from cache

NOTE about currentPageData: It holds information about the TypoScript conditions along with the list of template uid's which is used on the page. In the getFromCache() function in TSFE, currentPageData is used to evaluate if there is a template and if the matching conditions are alright. Unfortunately this does not take into account if the templates in the rowSum of currentPageData has changed composition, eg. due to hidden fields or start/end time. So if a template is hidden or times out, it'll not be discovered unless the page is regenerated - at least the this->start function must be called, because this will make a new portion of data in currentPageData string.

Returns
array Returns the unmatched array $currentPageData if found cached in "cache_pagesection". Otherwise FALSE is returned which means that the array must be generated and stored in the cache

Definition at line 415 of file TemplateService.php.

References TemplateService\getTypoScriptFrontendController(), GeneralUtility\makeInstance(), and GeneralUtility\md5int().

getDatabaseConnection ( )
protected
Returns
DatabaseConnection

Definition at line 1702 of file TemplateService.php.

References $GLOBALS.

Referenced by TemplateService\initMPmap_create(), TemplateService\processTemplate(), and TemplateService\runThroughTemplates().

getFileName (   $fileFromSetup)

Returns the reference used for the frontend inclusion, checks against allowed paths for inclusion.

Parameters
string$fileFromSetupTypoScript "resource" data type value.
Returns
string|NULL Resulting filename, is either a full absolute URL or a relative path. Returns NULL if invalid filename or a directory is given

Definition at line 1284 of file TemplateService.php.

References elseif, GeneralUtility\getFileAbsFileName(), TemplateService\getTimeTracker(), GeneralUtility\isFirstPartOfStr(), and PathUtility\stripPathSitePrefix().

Referenced by TemplateService\fileContent().

getFromMPmap (   $pageId = 0)

Initializes the automatically created MPmap coming from the "config.MP_mapRootPoints" setting Can be called many times with overhead only the first time since then the map is generated and cached in memory.

Parameters
int$pageIdPage id to return MPvar value for.
Returns
string
See Also
initMPmap_create()
Todo:
Implement some caching of the result between hits. (more than just the memory caching used here)

Definition at line 1565 of file TemplateService.php.

References TemplateService\getTypoScriptFrontendController(), TemplateService\initMPmap_create(), and GeneralUtility\trimExplode().

Referenced by TemplateService\linkData().

getProcessExtensionStatics ( )
Returns
bool

Definition at line 338 of file TemplateService.php.

References TemplateService\$processExtensionStatics.

getRootlineLevel (   $list)

Returns the level of the given page in the rootline - Multiple pages can be given by separating the UIDs by comma.

Parameters
string$listA list of UIDs for which the rootline-level should get returned
Returns
int The level in the rootline. If more than one page was given the lowest level will get returned.

Definition at line 1443 of file TemplateService.php.

References $list, and GeneralUtility\inList().

getTimeTracker ( )
protected
Returns
TimeTracker

Definition at line 1718 of file TemplateService.php.

References $GLOBALS.

Referenced by TemplateService\getFileName(), and TemplateService\substituteConstants().

getTypoScriptFrontendController ( )
protected
getTypoScriptSourceFileContent (   $filePath,
  $baseName 
)
protected

Retrieves the content of the first existing file by extension order. Returns the empty string if no file is found.

Parameters
string$filePathThe location of the file.
string$baseNameThe base file name. "constants" or "setup".
Returns
string

Definition at line 851 of file TemplateService.php.

References GeneralUtility\getUrl().

Referenced by TemplateService\includeStaticTypoScriptSources().

includeStaticTypoScriptSources (   $idList,
  $templateID,
  $pid,
  $row 
)

Includes static template records (from static_template table, loaded through a hook) and static template files (from extensions) for the input template record row.

Parameters
string$idListA list of already processed template ids including the current; The list is on the form "[prefix]_[uid]" where [prefix] is "sys" for "sys_template" records, "static" for "static_template" records and "ext_" for static include files (from extensions). The list is used to check that the recursive inclusion of templates does not go into circles: Simply it is used to NOT include a template record/file which has already BEEN included somewhere in the recursion.
string$templateIDThe id of the current template. Same syntax as $idList ids, eg. "sys_123
int$pidThe PID of the input template record
array$rowA full TypoScript template record
Returns
void
See Also
processTemplate()

Definition at line 778 of file TemplateService.php.

References $GLOBALS, TemplateService\addExtensionStatics(), GeneralUtility\callUserFunction(), ExtensionManagementUtility\extPath(), TemplateService\getTypoScriptSourceFileContent(), GeneralUtility\getUrl(), GeneralUtility\intExplode(), ExtensionManagementUtility\isLoaded(), TemplateService\prependStaticExtra(), TemplateService\processTemplate(), and GeneralUtility\trimExplode().

Referenced by TemplateService\processTemplate().

init ( )

Initialize MUST be called directly after creating a new template-object

Returns
void
See Also
::initTemplate()

Definition at line 367 of file TemplateService.php.

References $GLOBALS, TemplateService\getTypoScriptFrontendController(), and GeneralUtility\trimExplode().

initMPmap_create (   $id,
  $MP_array = array(),
  $level = 0 
)

Creating MPmap for a certain ID root point.

Parameters
int$idRoot id from which to start map creation.
array$MP_arrayMP_array passed from root page.
int$levelRecursion brake. Incremented for each recursive call. 20 is the limit.
Returns
void
See Also
getFromMPvar()

Definition at line 1601 of file TemplateService.php.

References PageRepository\DOKTYPE_BE_USER_SECTION, PageRepository\DOKTYPE_RECYCLER, TemplateService\getDatabaseConnection(), and TemplateService\getTypoScriptFrontendController().

Referenced by TemplateService\getFromMPmap().

linkData (   $page,
  $oTarget,
  $no_cache,
  $script,
  $overrideArray = null,
  $addParams = '',
  $typeOverride = '',
  $targetDomain = '' 
)

The mother of all functions creating links/URLs etc in a TypoScript environment. See the references below. Basically this function takes care of issues such as type,id,alias and Mount Points, URL rewriting (through hooks), M5/B6 encoded parameters etc. It is important to pass all links created through this function since this is the guarantee that globally configured settings for link creating are observed and that your applications will conform to the various/many configuration options in TypoScript Templates regarding this.

Parameters
array$pageThe page record of the page to which we are creating a link. Needed due to fields like uid, alias, target, no_cache, title and sectionIndex_uid.
string$oTargetDefault target string to use IF not $page['target'] is set.
bool$no_cacheIf set, then the "&no_cache=1" parameter is included in the URL.
string$scriptAlternative script name if you don't want to use $this->getTypoScriptFrontendController()->config['mainScript'] (normally set to "index.php")
array$overrideArrayArray with overriding values for the $page array.
string$addParamsAdditional URL parameters to set in the URL. Syntax is "&foo=bar&foo2=bar2" etc. Also used internally to add parameters if needed.
string$typeOverrideIf you set this value to something else than a blank string, then the typeNumber used in the link will be forced to this value. Normally the typeNum is based on the target set OR on $this->getTypoScriptFrontendController()->config['config']['forceTypeValue'] if found.
string$targetDomainThe target Doamin, if any was detected in typolink
Returns
array Contains keys like "totalURL", "url", "sectionIndex", "linkVars", "no_cache", "type", "target" of which "totalURL" is normally the value you would use while the other keys contains various parts that was used to construct "totalURL
See Also
::frameParams(), ::typoLink(), ::pagegenInit(), ::link()

Definition at line 1477 of file TemplateService.php.

References $GLOBALS, GeneralUtility\callUserFunction(), MathUtility\canBeInterpretedAsInteger(), elseif, GeneralUtility\explodeUrl2Array(), TemplateService\getFromMPmap(), TemplateService\getTypoScriptFrontendController(), GeneralUtility\implodeArrayForUrl(), and TemplateService\removeQueryString().

prependStaticExtra (   $subrow)

Appends (not prepends) additional TypoScript code to static template records/files as set in TYPO3_CONF_VARS For DB records the "uid" value is the integer of the "static_template" record. For files the "uid" value is the extension key but with any underscores removed. Possibly with a path if its a static file selected in the template record

Parameters
array$subrowStatic template record/file
Returns
array Returns the input array where the values for keys "config" and "constants" may have been modified with prepended code. private
See Also
addExtensionStatics(), includeStaticTypoScriptSources()

Definition at line 905 of file TemplateService.php.

References $GLOBALS.

Referenced by TemplateService\addExtensionStatics(), and TemplateService\includeStaticTypoScriptSources().

printTitle (   $pageTitle,
  $noTitle = false,
  $showTitleFirst = false,
  $pageTitleSeparator = '' 
)

Compiles the content for the page <title> tag.

Parameters
string$pageTitleThe input title string, typically the "title" field of a page's record.
bool$noTitleIf set, then only the site title is outputted (from $this->setup['sitetitle'])
bool$showTitleFirstIf set, then "sitetitle" and $title is swapped
string$pageTitleSeparatoran alternative to the ": " as the separator between site title and page title
Returns
string The page title on the form "[sitetitle]: [input-title]". Not htmlspecialchar()'ed.
See Also
::tempPageCacheContent(), ::renderContentWithHeader()

Definition at line 1342 of file TemplateService.php.

References elseif.

processIncludes ( )

Searching TypoScript code text (for constants and config (Setup)) for include instructions and does the inclusion of external TypoScript files if needed.

Returns
void
See Also
, generateConfig()

Definition at line 1081 of file TemplateService.php.

References TemplateService\$templateIncludePaths.

Referenced by TemplateService\runThroughTemplates().

processTemplate (   $row,
  $idList,
  $pid,
  $templateID = '',
  $templateParent = '',
  $includePath = '' 
)

Checks if the template ($row) has some included templates and after including them it fills the arrays with the setup Builds up $this->rowSum

Parameters
array$rowA full TypoScript template record (sys_template/static_template/forged "dummy" record made from static template file)
string$idListA list of already processed template ids including the current; The list is on the form "[prefix]_[uid]" where [prefix] is "sys" for "sys_template" records, "static" for "static_template" records and "ext_" for static include files (from extensions). The list is used to check that the recursive inclusion of templates does not go into circles: Simply it is used to NOT include a template record/file which has already BEEN included somewhere in the recursion.
int$pidThe PID of the input template record
string$templateIDThe id of the current template. Same syntax as $idList ids, eg. "sys_123 @param string $templateParent Parent template id (during recursive call); Same syntax as $idList ids, eg. "sys_123
string$includePathSpecifies the path from which the template was included (used with static_includes)
Returns
void
See Also
runThroughTemplates()

Definition at line 639 of file TemplateService.php.

References TemplateService\getDatabaseConnection(), TemplateService\includeStaticTypoScriptSources(), GeneralUtility\inList(), GeneralUtility\intExplode(), and TemplateService\versionOL().

Referenced by TemplateService\addExtensionStatics(), TemplateService\includeStaticTypoScriptSources(), and TemplateService\runThroughTemplates().

removeQueryString (   $url)

Removes the "?" of input string IF the "?" is the last character.

Parameters
string$urlInput string
Returns
string Output string, free of "?" in the end, if any such character.
See Also
linkData(), ::frameParams()

Definition at line 1405 of file TemplateService.php.

References $url.

Referenced by TemplateService\linkData().

runThroughTemplates (   $theRootLine,
  $start_template_uid = 0 
)

Traverses the rootLine from the root and out. For each page it checks if there is a template record. If there is a template record, $this->processTemplate() is called. Resets and affects internal variables like $this->constants, $this->config and $this->rowSum Also creates $this->rootLine which is a root line stopping at the root template (contrary to $this->getTypoScriptFrontendController()->rootLine which goes all the way to the root of the tree

Parameters
array$theRootLineThe rootline of the current page (going ALL the way to tree root)
int$start_template_uidSet specific template record UID to select; this is only for debugging/development/analysis use in backend modules like "Web > Template". For parsing TypoScript templates in the frontend it should be 0 (zero)
Returns
void
See Also
start()

Definition at line 573 of file TemplateService.php.

References TemplateService\addDefaultTypoScript(), TemplateService\addExtensionStatics(), TemplateService\getDatabaseConnection(), TemplateService\processIncludes(), TemplateService\processTemplate(), and TemplateService\versionOL().

setProcessExtensionStatics (   $processExtensionStatics)
Parameters
bool$processExtensionStatics

Definition at line 346 of file TemplateService.php.

References TemplateService\$processExtensionStatics.

setVerbose (   $verbose)

sets the verbose parameter

Parameters
bool$verbose

Definition at line 355 of file TemplateService.php.

References TemplateService\$verbose.

static sortedKeyList (   $setupArr,
  $acceptOnlyProperties = false 
)
static

Takes a TypoScript array as input and returns an array which contains all integer properties found which had a value (not only properties). The output array will be sorted numerically. Call it like ::sortedKeyList()

Parameters
array$setupArrTypoScript array with numerical array in
bool$acceptOnlyPropertiesIf set, then a value is not required - the properties alone will be enough.
Returns
array An array with all integer properties listed in numeric order.
See Also
::cObjGet(), , ::makeImageMap()

Definition at line 1423 of file TemplateService.php.

References MathUtility\canBeInterpretedAsInteger().

Referenced by ContentObjectRenderer\cObjGet(), FormBuilder\handleIncomingValues(), FramesetRenderer\make(), GifBuilder\make(), ContentDataProcessor\process(), PostProcessor\process(), FormBuilder\setChildElementsByIntegerKey(), and ContentObjectRenderer\stdWrap_orderedStdWrap().

splitConfArray (   $conf,
  $splitCount 
)

Implementation of the "optionSplit" feature in TypoScript (used eg. for MENU objects) What it does is to split the incoming TypoScript array so that the values are exploded by certain strings ("||" and "|*|") and each part distributed into individual TypoScript arrays with a similar structure, but individualized values. The concept is known as "optionSplit" and is rather advanced to handle but quite powerful, in particular for creating menus in TYPO3.

Parameters
array$confA TypoScript array
int$splitCountThe number of items for which to generated individual TypoScript arrays
Returns
array The individualized TypoScript array.
See Also
::IMGTEXT(), ::procesItemStates()

Definition at line 1216 of file TemplateService.php.

References elseif.

substituteConstants (   $all)

Substitutes the constants from $this->flatSetup in the text string $all

Parameters
string$allTypoScript code text string
Returns
string The processed string with all constants found in $this->flatSetup as key/value pairs substituted.
See Also
generateConfig(), flattenSetup()

Definition at line 1171 of file TemplateService.php.

References TemplateService\getTimeTracker().

substituteConstantsCallBack (   $matches)

Call back method for preg_replace_callback in substituteConstants

Parameters
array$matchesRegular expression matches
Returns
string Replacement
See Also
substituteConstants()

Definition at line 1195 of file TemplateService.php.

updateRootlineData (   $fullRootLine)

This function can be used to update the data of the current rootLine e.g. when a different language is used.

This function must not be used if there are different pages in the rootline as before!

Parameters
array$fullRootLineArray containing the FULL rootline (up to the TYPO3 root)
Returns
void
Exceptions
\RuntimeExceptionIf the given $fullRootLine does not contain all pages that are in the current template rootline

Definition at line 746 of file TemplateService.php.

versionOL ( $row)

Creating versioning overlay of a sys_template record. This will use either frontend or backend overlay functionality depending on environment.

Parameters
array$rowRow to overlay (passed by reference)
Returns
void

Definition at line 926 of file TemplateService.php.

References TemplateService\getTypoScriptFrontendController(), and BackendUtility\workspaceOL().

Referenced by TemplateService\processTemplate(), and TemplateService\runThroughTemplates().

wrap (   $content,
  $wrap 
)

Ordinary "wrapping" function. Used in the AbstractMenuContentObject class and extension classes instead of the similar function in ContentObjectRenderer

Parameters
string$contentThe content to wrap
string$wrapThe wrap value, eg. " |
Returns
string Wrapped input string
Deprecated:
since TYPO3 CMS 7, will be removed in TYPO3 CMS 8, use ::wrap() instead
See Also
, ::wrap()

Definition at line 1387 of file TemplateService.php.

References GeneralUtility\logDeprecatedFunction().

Member Data Documentation

$absoluteRootLine

Definition at line 217 of file TemplateService.php.

$allowedPaths = array()

Definition at line 128 of file TemplateService.php.

$backend_info = false

Definition at line 80 of file TemplateService.php.

$clearList_const = array()

Used by Backend only (Typoscript Template Analyzer)

Definition at line 258 of file TemplateService.php.

$clearList_setup = array()

Definition at line 265 of file TemplateService.php.

$config = array()

Definition at line 161 of file TemplateService.php.

$constants = array()

Definition at line 168 of file TemplateService.php.

Referenced by ExtendedTemplateService\ext_regObjectPositions().

$debug = false

Definition at line 120 of file TemplateService.php.

$ext_config_BRP = 0

Definition at line 92 of file TemplateService.php.

$ext_constants_BRP = 0

Definition at line 87 of file TemplateService.php.

$ext_regComments = false

Definition at line 102 of file TemplateService.php.

$ext_regLinenumbers = false

Definition at line 97 of file TemplateService.php.

$extensionStaticsProcessed = false
protected

Definition at line 307 of file TemplateService.php.

$fileCache = array()

Definition at line 282 of file TemplateService.php.

$flatSetup = array()

Definition at line 152 of file TemplateService.php.

Referenced by ConfigurationForm\ext_setValueArray().

$forceTemplateParsing = false

Definition at line 59 of file TemplateService.php.

$frames = array()

Definition at line 289 of file TemplateService.php.

$hierarchyInfo = array()

Definition at line 182 of file TemplateService.php.

$hierarchyInfoToRoot = array()

Definition at line 189 of file TemplateService.php.

$isDefaultTypoScriptAdded = false
protected

Definition at line 323 of file TemplateService.php.

$loaded = false

Definition at line 142 of file TemplateService.php.

$matchAll = false

Definition at line 75 of file TemplateService.php.

$matchAlternative = array()

Definition at line 68 of file TemplateService.php.

$MPmap = ''

Definition at line 296 of file TemplateService.php.

$nextLevel = 0

Definition at line 196 of file TemplateService.php.

$outermostRootlineIndexWithTemplate = 0

Definition at line 224 of file TemplateService.php.

$parserErrors = array()

Definition at line 270 of file TemplateService.php.

$processExtensionStatics = false
protected
$processIncludesHasBeenRun = false
protected

Definition at line 333 of file TemplateService.php.

$rootId

Definition at line 203 of file TemplateService.php.

$rootLine
$rowSum

Definition at line 231 of file TemplateService.php.

$sections

Definition at line 245 of file TemplateService.php.

$sectionsMatch

Definition at line 252 of file TemplateService.php.

$setup = array()

Definition at line 147 of file TemplateService.php.

$setup_constants = array()

Definition at line 275 of file TemplateService.php.

$simulationHiddenOrTime = 0

Definition at line 135 of file TemplateService.php.

$sitetitle = ''

Definition at line 238 of file TemplateService.php.

$templateIncludePaths = array()
protected

Definition at line 175 of file TemplateService.php.

Referenced by TemplateService\processIncludes().

$tempPath = 'typo3temp/'

Definition at line 108 of file TemplateService.php.

$tt_track = true

Definition at line 52 of file TemplateService.php.

$verbose = false
protected

Definition at line 45 of file TemplateService.php.

Referenced by TemplateService\setVerbose().

$whereClause = ''

Definition at line 115 of file TemplateService.php.