*/ /** * [CLASS/FUNCTION INDEX of SCRIPT] * * * * 66: class tx_cms_webinfo_page extends t3lib_extobjbase * 73: function modMenu() * 100: function main() * * * 198: class tx_cms_webinfo_hits extends tx_cms_webinfo_page * * TOTAL FUNCTIONS: 2 * (This index is automatically created/updated by the extension "extdeveval") * */ require_once(PATH_t3lib.'class.t3lib_pagetree.php'); require_once(PATH_t3lib.'class.t3lib_recordlist.php'); require_once(PATH_typo3.'class.db_list.inc'); require_once(t3lib_extMgm::extPath('cms').'layout/class.tx_cms_layout.php'); require_once(PATH_t3lib.'class.t3lib_extobjbase.php'); /** * Class for displaying page information (records, page record properties) * * @author Kasper Skaarhoj * @package TYPO3 * @subpackage tx_cms */ class tx_cms_webinfo_page extends t3lib_extobjbase { /** * Returns the menu array * * @return array */ function modMenu() { global $LANG; return array ( 'pages' => array ( 0 => $LANG->getLL('pages_0'), 2 => $LANG->getLL('pages_2'), 1 => $LANG->getLL('pages_1') ), 'stat_type' => array( 0 => $LANG->getLL('stat_type_0'), 1 => $LANG->getLL('stat_type_1'), 2 => $LANG->getLL('stat_type_2'), ), 'depth' => array( 0 => $LANG->getLL('depth_0'), 1 => $LANG->getLL('depth_1'), 2 => $LANG->getLL('depth_2'), 3 => $LANG->getLL('depth_3') ) ); } /** * MAIN function for page information display (including hit statistics) * * @return string Output HTML for the module. */ function main() { global $BACK_PATH,$LANG,$SOBE; $dblist = t3lib_div::makeInstance('tx_cms_layout'); $dblist->descrTable = '_MOD_'.$GLOBALS['MCONF']['name']; $dblist->backPath = $BACK_PATH; $dblist->thumbs = 0; $dblist->script = 'index.php'; $dblist->showIcon = 0; $dblist->setLMargin=0; $dblist->agePrefixes=$LANG->sL('LLL:EXT:lang/locallang_core.php:labels.minutesHoursDaysYears'); $dblist->pI_showUser=1; $dblist->pI_showStat=0; // PAGES: $this->pObj->MOD_SETTINGS['pages_levels']=$this->pObj->MOD_SETTINGS['depth']; // ONLY for the sake of dblist module which uses this value. $h_func = t3lib_BEfunc::getFuncMenu($this->pObj->id,'SET[depth]',$this->pObj->MOD_SETTINGS['depth'],$this->pObj->MOD_MENU['depth'],'index.php'); if ($this->pObj->MOD_SETTINGS['function']=='tx_cms_webinfo_hits') { $h_func.= t3lib_BEfunc::getFuncMenu($this->pObj->id,'SET[stat_type]',$this->pObj->MOD_SETTINGS['stat_type'],$this->pObj->MOD_MENU['stat_type'],'index.php'); if ($this->pObj->MOD_SETTINGS['stat_type']==1) $dblist->stat_select_field='rl0'; if ($this->pObj->MOD_SETTINGS['stat_type']==2) $dblist->stat_select_field='rl1'; // Timespan for ($a=0;$a<30;$a++) { $dblist->stat_codes[]='HITS_days:'.(-$a); } $timespan_b = mktime (0,0,0); $timespan_e = mktime (0,0,0)-(30-1)*3600*24+1; $header='
'.sprintf($LANG->getLL('stat_period'),t3lib_BEfunc::date($timespan_b),t3lib_BEfunc::date($timespan_e)).'
'; // $dblist->start($this->pObj->id,'pages',0); $dblist->pages_noEditColumns=1; $dblist->generateList(); $theOutput.= $this->pObj->doc->section($LANG->getLL('hits_title'), t3lib_BEfunc::cshItem($dblist->descrTable,'stat',$GLOBALS['BACK_PATH'],'|
'). // CSH $h_func. $header. $dblist->HTMLcode, 0, 1 ); } else { $h_func.= t3lib_BEfunc::getFuncMenu($this->pObj->id,'SET[pages]',$this->pObj->MOD_SETTINGS['pages'],$this->pObj->MOD_MENU['pages'],'index.php'); $dblist->start($this->pObj->id,'pages',0); $dblist->generateList(); // CSH $theOutput.=$this->pObj->doc->section($LANG->getLL('page_title'), t3lib_BEfunc::cshItem($dblist->descrTable,'pagetree_overview',$GLOBALS['BACK_PATH'],'|
'). // CSH $h_func. $dblist->HTMLcode, 0, 1 ); // SYS_NOTES: if (t3lib_extMgm::isLoaded('sys_note')) { $dblist->start($this->pObj->id,'sys_note',0); $dblist->generateList(); if ($dblist->HTMLcode) { $theOutput.=$this->pObj->doc->spacer(10); $theOutput.=$this->pObj->doc->section($LANG->getLL('page_sysnote'), $dblist->HTMLcode, 0, 1 ); } } // PAGE INFORMATION if ($this->pObj->pageinfo['uid']) { $theOutput.=$this->pObj->doc->spacer(10); $theOutput.=$this->pObj->doc->section($LANG->getLL('pageInformation'),$dblist->getPageInfoBox($this->pObj->pageinfo,$this->pObj->CALC_PERMS&2),0,1); } } return $theOutput; } } /** * Extension class for hits display, basically using tx_cms_webinfo_page (internally this is detected). * This construction is due to the old "pre-extensions" structure * * IMPORTANT: This class is used by the extension "sys_stat" and will be added to the Info module only when "sys_stat" is installed. * The display of statistics goes on in "tx_cms_webinfo_page" though * * @author Kasper Skaarhoj * @package TYPO3 * @subpackage tx_cms */ class tx_cms_webinfo_hits extends tx_cms_webinfo_page { } if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['ext/cms/web_info/class.tx_cms_webinfo.php']) { include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['ext/cms/web_info/class.tx_cms_webinfo.php']); } ?>