Skip to content

Instantly share code, notes, and snippets.

@andreaswolf
Created April 19, 2010 16:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andreaswolf/371223 to your computer and use it in GitHub Desktop.
Save andreaswolf/371223 to your computer and use it in GitHub Desktop.
TYPO3 snippets
protected function getExtensionInformation($_EXTKEY) {
if (!t3lib_extMgm::isLoaded($_EXTKEY)) {
return FALSE;
}
include(t3lib_extMgm::extPath($_EXTKEY) . '/ext_emconf.php');
return $EM_CONF[$_EXTKEY];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment