Package

ViewHelpers

ViewHelper Documentation

be.container

View helper which allows you to create extbase based modules in the style of TYPO3 default modules. Note: This feature is experimental!

= Examples =

<f:be.container>your module content</f:be.container> "your module content" wrapped with propper head & body tags. Default backend CSS styles and JavaScript will be included

<f:be.container pageTitle="foo" enableJumpToUrl="false" enableClickMenu="false" loadPrototype="false" loadScriptaculous="false" scriptaculousModule="someModule,someOtherModule" loadExtJs="true" loadExtJsTheme="false" extJsAdapter="jQuery" enableExtJsDebug="true" addCssFile="{f:uri.resource(path:'styles/backend.css')}" addJsFile="{f:uri.resource(path:'scripts/main.js')}">your module content</f:be.container> "your module content" wrapped with propper head & body tags. Custom CSS file EXT:your_extension/Resources/Public/styles/backend.css and JavaScript file EXT:your_extension/Resources/Public/scripts/main.js will be loaded

Arguments

pageTitle string

$pageTitle title tag of the module. Not required by default, as BE modules are shown in a frame

enableJumpToUrl string

If TRUE, includes "jumpTpUrl" javascript function required by ActionMenu. Defaults to TRUE

enableClickMenu string

If TRUE, loads clickmenu.js required by BE context menus. Defaults to TRUE

loadPrototype string

specifies whether to load prototype library. Defaults to TRUE

loadScriptaculous string

specifies whether to load scriptaculous libraries. Defaults to FALSE

scriptaculousModule string

$scriptaculousModule additionales modules for scriptaculous

loadExtJs string

specifies whether to load ExtJS library. Defaults to FALSE

loadExtJsTheme string

whether to load ExtJS "grey" theme. Defaults to FALSE

extJsAdapter string

$extJsAdapter load alternative adapter (ext-base is default adapter)

enableExtJsDebug string

if TRUE, debug version of ExtJS is loaded. Use this for development only

addCssFile string

Custom CSS file to be loaded

addJsFile string

Custom JavaScript file to be loaded

ViewHelper Resources

Schema Resources