Created
December 18, 2012 13:41
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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