TYPO3 API  SVNRelease
admin_cli.php
Go to the documentation of this file.
00001 <?php
00002 
00003 if (!defined('TYPO3_cliMode'))  die('You cannot run this script directly!');
00004 
00005 require_once(t3lib_extMgm::extPath('lowlevel').'class.tx_lowlevel_admin_core.php');
00006 
00007     // Call the functionality
00008 $adminObj = t3lib_div::makeInstance('tx_lowlevel_admin_core');
00009 $adminObj->cli_main($_SERVER["argv"]);
00010 
00011 ?>