TypoScript
\nn\t3::TypoScript()
Methoden zum Parsen und Konvertieren von TypoScript
Overview of Methods
\nn\t3::TypoScript()->addPageConfig($str = '');
Page-Config hinzufügen
Alias zu \nn\t3::Registry()->addPageConfig( $str );
\nn\t3::TypoScript()->addPageConfig( 'test.was = 10' );
\nn\t3::TypoScript()->addPageConfig( '<INCLUDE_TYPOSCRIPT: source="FILE:EXT:extname/Configuration/TypoScript/page.txt">' );
\nn\t3::TypoScript()->addPageConfig( '@import "EXT:extname/Configuration/TypoScript/page.ts"' );
Copied!
| @return void
\nn\t3::TypoScript()->convertToPlainArray($ts);
TypoScript 'name.'-Syntax in normales Array umwandeln. Erleichtert den Zugriff
\nn\t3::TypoScript()->convertToPlainArray(['example'=>'test', 'example.'=>'here']);
Copied!
| @return array
\nn\t3::TypoScript()->fromString($str = '', $overrideSetup = []);
Wandelt einen Text in ein TypoScript-Array um.
$example = '
lib.test {
someVal = 10
}
';
\nn\t3::TypoScript()->fromString($example); => ['lib'=>['test'=>['someVal'=>10]]]
\nn\t3::TypoScript()->fromString($example, $mergeSetup); => ['lib'=>['test'=>['someVal'=>10]]]
Copied!
| @return array