Skip to content

Instantly share code, notes, and snippets.

@radmiraal
Created March 27, 2013 08:54
Show Gist options
  • Save radmiraal/5252779 to your computer and use it in GitHub Desktop.
Save radmiraal/5252779 to your computer and use it in GitHub Desktop.
$availableControllerActions = array(
'News' => 'latest,mostPopular,list,breadcrumb',
'Product' => 'list',
'Event' => 'list',
'Training' => 'list'
);
Tx_Extbase_Utility_Extension::configurePlugin(
$_EXTKEY,
'List',
$availableControllerActions,
// non-cacheable actions
array(
)
);
Tx_Extbase_Utility_Extension::configurePlugin(
$_EXTKEY,
'ListNonCached',
$availableControllerActions,
// non-cacheable actions
$availableControllerActions
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment