Skip to content

Instantly share code, notes, and snippets.

@mipmip
Created December 18, 2012 13:41
Show Gist options
  • Select an option

  • Save mipmip/4328050 to your computer and use it in GitHub Desktop.

Select an option

Save mipmip/4328050 to your computer and use it in GitHub Desktop.
PHP snippet for TYPO3 to read the setup of an external extension plugin.
<?php
class tx_myclass extends tslib_pibase {
var $conf;
function __construct()
{
$this->conf = $GLOBALS['TSFE']->tmpl->setup['plugin.']['tx_otherplugin_pi3.'];
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment