Documentation TYPO3 par Ameos |
00001 <?php 00002 if (!defined ('TYPO3_MODE')) die ('Access denied.'); 00003 00004 // auth services needs to be added here. ext_tables.php will be read after authentication. 00005 00006 t3lib_extMgm::addService($_EXTKEY, 'auth' /* sv type */, 'tx_sv_auth' /* sv key */, 00007 array( 00008 00009 'title' => 'User authentication', 00010 'description' => 'Authentication with username/password.', 00011 00012 'subtype' => 'getUserBE,authUserBE,getUserFE,authUserFE,getGroupsFE', 00013 00014 'available' => TRUE, 00015 'priority' => 50, 00016 'quality' => 50, 00017 00018 'os' => '', 00019 'exec' => '', 00020 00021 'classFile' => t3lib_extMgm::extPath($_EXTKEY).'class.tx_sv_auth.php', 00022 'className' => 'tx_sv_auth', 00023 ) 00024 ); 00025 00026 ?>