2 /***************************************************************
5 * (c) 1999-2004 Kasper Skaarhoj (kasper@typo3.com)
8 * This script is part of the TYPO3 project. The TYPO3 project is
9 * free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * The GNU General Public License can be found at
15 * http://www.gnu.org/copyleft/gpl.html.
16 * A copy is found in the textfile GPL.txt and important notices to the license
17 * from the author is found in LICENSE.txt distributed with these scripts.
20 * This script is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * This copyright notice MUST APPEAR in all copies of the script!
26 ***************************************************************/
28 * Contains a class with functions for page related statistics added to the backend Info module
31 * Revised for TYPO3 3.6 5/2003 by Kasper Skaarhoj
33 * @author Kasper Skaarhoj <kasper@typo3.com>
36 * [CLASS/FUNCTION INDEX of SCRIPT]
40 * 66: class tx_cms_webinfo_page extends t3lib_extobjbase
41 * 73: function modMenu()
42 * 100: function main()
45 * 191: class tx_cms_webinfo_hits extends tx_cms_webinfo_page
48 * (This index is automatically created/updated by the extension "extdeveval")
52 require_once(PATH_t3lib
.'class.t3lib_pagetree.php');
53 require_once(PATH_t3lib
.'class.t3lib_recordlist.php');
54 require_once(PATH_typo3
.'class.db_list.inc');
55 require_once(t3lib_extMgm
::extPath('cms').'layout/class.tx_cms_layout.php');
56 require_once(PATH_t3lib
.'class.t3lib_extobjbase.php');
60 * Class for displaying page information (records, page record properties)
62 * @author Kasper Skaarhoj <kasper@typo3.com>
66 class tx_cms_webinfo_page
extends t3lib_extobjbase
{
69 * Returns the menu array
77 0 => $LANG->getLL('pages_0'),
78 2 => $LANG->getLL('pages_2'),
79 1 => $LANG->getLL('pages_1')
82 0 => $LANG->getLL('stat_type_0'),
83 1 => $LANG->getLL('stat_type_1'),
84 2 => $LANG->getLL('stat_type_2'),
87 0 => $LANG->getLL('depth_0'),
88 1 => $LANG->getLL('depth_1'),
89 2 => $LANG->getLL('depth_2'),
90 3 => $LANG->getLL('depth_3')
96 * MAIN function for page information display (including hit statistics)
98 * @return string Output HTML for the module.
101 global $BACK_PATH,$LANG,$SOBE;
103 $dblist = t3lib_div
::makeInstance('tx_cms_layout');
104 $dblist->backPath
= $BACK_PATH;
106 $dblist->script
= 'index.php';
107 $dblist->showIcon
= 0;
108 $dblist->setLMargin
=0;
109 $dblist->agePrefixes
=$LANG->sL('LLL:EXT:lang/locallang_core.php:labels.minutesHoursDaysYears');
111 $dblist->pI_showUser
=1;
112 $dblist->pI_showStat
=0;
116 $this->pObj
->MOD_SETTINGS
['pages_levels']=$this->pObj
->MOD_SETTINGS
['depth']; // ONLY for the sake of dblist module which uses this value.
118 $h_func = t3lib_BEfunc
::getFuncMenu($this->pObj
->id
,'SET[depth]',$this->pObj
->MOD_SETTINGS
['depth'],$this->pObj
->MOD_MENU
['depth'],'index.php');
119 if ($this->pObj
->MOD_SETTINGS
['function']=='tx_cms_webinfo_hits') {
120 $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');
122 if ($this->pObj
->MOD_SETTINGS
['stat_type']==1) $dblist->stat_select_field
='rl0';
123 if ($this->pObj
->MOD_SETTINGS
['stat_type']==2) $dblist->stat_select_field
='rl1';
126 for ($a=0;$a<30;$a++
) {
127 $dblist->stat_codes
[]='HITS_days:'.(-$a);
129 $timespan_b = mktime (0,0,0);
130 $timespan_e = mktime (0,0,0)-(30-1)*3600*24+
1;
131 $header='<br />'.sprintf($LANG->getLL('stat_period'),t3lib_BEfunc
::date($timespan_b),t3lib_BEfunc
::date($timespan_e)).'<br />';
134 $dblist->start($this->pObj
->id
,'pages',0);
135 $dblist->pages_noEditColumns
=1;
136 $dblist->generateList();
139 $theOutput.=$this->pObj
->doc
->section($LANG->getLL('hits_title'),
140 $h_func.$header.$dblist->HTMLcode
,
145 $h_func.= t3lib_BEfunc
::getFuncMenu($this->pObj
->id
,'SET[pages]',$this->pObj
->MOD_SETTINGS
['pages'],$this->pObj
->MOD_MENU
['pages'],'index.php');
147 $dblist->start($this->pObj
->id
,'pages',0);
148 $dblist->generateList();
149 $theOutput.=$this->pObj
->doc
->section($LANG->getLL('page_title'),
150 $h_func.$dblist->HTMLcode
,
156 if (t3lib_extMgm
::isLoaded('sys_note')) {
157 $dblist->start($this->pObj
->id
,'sys_note',0);
158 $dblist->generateList();
159 if ($dblist->HTMLcode
) {
160 $theOutput.=$this->pObj
->doc
->spacer(10);
161 $theOutput.=$this->pObj
->doc
->section($LANG->getLL('page_sysnote'),
170 if ($this->pObj
->pageinfo
['uid']) {
171 $theOutput.=$this->pObj
->doc
->spacer(10);
172 $theOutput.=$this->pObj
->doc
->section($LANG->getLL('pageInformation'),$dblist->getPageInfoBox($this->pObj
->pageinfo
,$this->pObj
->CALC_PERMS
&2),0,1);
181 * Extension class for hits display, basically using tx_cms_webinfo_page (internally this is detected).
182 * This construction is due to the old "pre-extensions" structure
184 * IMPORTANT: This class is used by the extension "sys_stat" and will be added to the Info module only when "sys_stat" is installed.
185 * The display of statistics goes on in "tx_cms_webinfo_page" though
187 * @author Kasper Skaarhoj <kasper@typo3.com>
191 class tx_cms_webinfo_hits
extends tx_cms_webinfo_page
{
195 if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['ext/cms/web_info/class.tx_cms_webinfo.php']) {
196 include_once($TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['ext/cms/web_info/class.tx_cms_webinfo.php']);