00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00032 require_once(PATH_t3lib."class.t3lib_extobjbase.php");
00033
00034 class tx_version_modfunc1 extends t3lib_extobjbase {
00035 function modMenu() {
00036 global $LANG;
00037
00038 return Array (
00039 "tx_version_modfunc1_check" => "",
00040 );
00041 }
00042
00043 function main() {
00044
00045 global $SOBE,$BE_USER,$LANG,$BACK_PATH,$TCA_DESCR,$TCA,$CLIENT,$TYPO3_CONF_VARS;
00046
00047 $theOutput.=$this->pObj->doc->spacer(5);
00048 $theOutput.=$this->pObj->doc->section($LANG->getLL("title"),"Dummy content here...",0,1);
00049
00050 $menu=array();
00051 $menu[]=t3lib_BEfunc::getFuncCheck($this->pObj->id,"SET[tx_version_modfunc1_check]",$this->pObj->MOD_SETTINGS["tx_version_modfunc1_check"]).$LANG->getLL("checklabel");
00052 $theOutput.=$this->pObj->doc->spacer(5);
00053 $theOutput.=$this->pObj->doc->section("Menu",implode(" - ",$menu),0,1);
00054
00055 return $theOutput;
00056 }
00057 }
00058
00059
00060
00061 if (defined("TYPO3_MODE") && $TYPO3_CONF_VARS[TYPO3_MODE]["XCLASS"]["ext/version/modfunc1/class.tx_version_modfunc1.php"]) {
00062 include_once($TYPO3_CONF_VARS[TYPO3_MODE]["XCLASS"]["ext/version/modfunc1/class.tx_version_modfunc1.php"]);
00063 }
00064
00065 ?>