* Cleanup #12245: Reports: Cleaned up API for providers in status report
* Feature #12167: Reports: Enhanced report registration API to provide custom icons for reports
* Feature #12178: Provide a report for installed services in the new Reports module
+ * Cleanup #12249: Improved comments about service registration in EXT:sv/ext_tables.php and EXT:sv/ext_localconf.php
2009-10-15 Steffen Kamper <info@sk-typo3.de>
<?php
if (!defined ('TYPO3_MODE')) die ('Access denied.');
-// auth services needs to be added here. ext_tables.php will be read after authentication.
-
+ // Register base authentication service
t3lib_extMgm::addService($_EXTKEY, 'auth' /* sv type */, 'tx_sv_auth' /* sv key */,
array(
)
);
-// Add hooks to the backend login form
+ // Add hooks to the backend login form
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['typo3/index.php']['loginFormHook'][$_EXTKEY] = 'EXT:' . $_EXTKEY . '/class.tx_sv_loginformhook.php:tx_sv_loginformhook->getLoginFormTag';
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['typo3/index.php']['loginScriptHook'][$_EXTKEY] = 'EXT:' . $_EXTKEY . '/class.tx_sv_loginformhook.php:tx_sv_loginformhook->getLoginScripts';
<?php
if (!defined ('TYPO3_MODE')) die ('Access denied.');
-// normal services should be added here
-
if (TYPO3_MODE == 'BE') {
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['reports']['sv']['services'] = array(
'title' => 'LLL:EXT:sv/reports/locallang.xml:report_title',