TYPO3 API  SVNRelease
cleaner_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_cleaner_core.php');
00006 
00007 require(PATH_typo3.'template.php');
00008 
00009     // Call the functionality
00010 $cleanerObj = t3lib_div::makeInstance('tx_lowlevel_cleaner_core');
00011 $cleanerObj->cli_main($_SERVER["argv"]);
00012 
00013 ?>