Skip to content

Instantly share code, notes, and snippets.

@michaelorionmcmanus
Created September 22, 2010 19:15
Show Gist options
  • Save michaelorionmcmanus/592311 to your computer and use it in GitHub Desktop.
Save michaelorionmcmanus/592311 to your computer and use it in GitHub Desktop.
<?php
Tx_Extbase_Utility_Extension::configurePlugin(
$_EXTKEY,
'Screening',
array( // An array holding the controller-action-combinations that are accessible
'Screening' => 'show, index',
'Season' => 'index' // The first controller and its first action will be the default
),
array( // An array of non-cachable controller-action-combinations (they must already be enabled)
'Screening' => '',
'Season' => ''
)
);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment