"TYPO3 4.0.1: typo3_src-4.0.1/typo3/sysext/sv/ext_localconf.php Source File", "datetime" => "Sat Dec 2 19:22:27 2006", "date" => "2 Dec 2006", "doxygenversion" => "1.4.6", "projectname" => "TYPO3 4.0.1", "projectnumber" => "4.0.1" ); get_header($doxygen_vars); ?>

ext_localconf.php

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 ?>