00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00043 require_once(PATH_t3lib."class.t3lib_extobjbase.php");
00044
00052 class tx_version_modfunc1 extends t3lib_extobjbase {
00053 function modMenu() {
00054 global $LANG;
00055
00056 return Array (
00057 "tx_version_modfunc1_check" => "",
00058 );
00059 }
00060
00066 function main() {
00067
00068 global $SOBE,$BE_USER,$LANG,$BACK_PATH,$TCA_DESCR,$TCA,$CLIENT,$TYPO3_CONF_VARS;
00069
00070 $theOutput.=$this->pObj->doc->spacer(5);
00071 $theOutput.=$this->pObj->doc->section($LANG->getLL("title"),"Dummy content here...",0,1);
00072
00073 $menu=array();
00074 $menu[]=t3lib_BEfunc::getFuncCheck($this->pObj->id,"SET[tx_version_modfunc1_check]",$this->pObj->MOD_SETTINGS["tx_version_modfunc1_check"]).$LANG->getLL("checklabel");
00075 $theOutput.=$this->pObj->doc->spacer(5);
00076 $theOutput.=$this->pObj->doc->section("Menu",implode(" - ",$menu),0,1);
00077
00078 return $theOutput;
00079 }
00080 }
00081
00082
00083
00084 if (defined("TYPO3_MODE") && $TYPO3_CONF_VARS[TYPO3_MODE]["XCLASS"]["ext/version/modfunc1/class.tx_version_modfunc1.php"]) {
00085 include_once($TYPO3_CONF_VARS[TYPO3_MODE]["XCLASS"]["ext/version/modfunc1/class.tx_version_modfunc1.php"]);
00086 }
00087
00088 ?>