Changeset 577 for trunk/Modules/Referrer/Referrer.php
- Timestamp:
- Sep 11, 2013, 10:37:54 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Referrer/Referrer.php
r569 r577 57 57 function ShowList() 58 58 { 59 global $System, $User; 60 61 $Banner = '<a href="http://'.$System->Config['Web']['Host'].$System->Link('/').'"><img src="http://'.$System->Config['Web']['Host'].$System->Link('/banners/wowpreklad_big.jpg').'" '. 59 $Banner = '<a href="http://'.$this->System->Config['Web']['Host'].$this->System->Link('/').'">'. 60 '<img src="http://'.$this->System->Config['Web']['Host'].$this->System->Link('/banners/wowpreklad_big.jpg').'" '. 62 61 'alt="wowpreklad" title="Otevřený projekt překládání celé hry World of Warcraft" '. 63 62 'class="banner" height="60" width="468" /></a>'; 64 63 65 $BannerSmall = '<a href="http://'.$System->Config['Web']['Host'].$System->Link('/').'"><img src="http://'.$System->Config['Web']['Host'].$System->Link('/banners/wowpreklad_small.jpg').'" '. 64 $BannerSmall = '<a href="http://'.$this->System->Config['Web']['Host'].$this->System->Link('/').'">'. 65 '<img src="http://'.$this->System->Config['Web']['Host'].$this->System->Link('/banners/wowpreklad_small.jpg').'" '. 66 66 'alt="wowpreklad" title="Otevřený projekt překládání celé hry World of Warcraft" '. 67 67 'class="banner" height="31" width="88" /></a>'; … … 77 77 <div style="font-size: 10px;">Seznam je automaticky aktualizován a zobrazeny jsou servery, ze kterých přišli uživatelé během posledních třech měsíců řazený sestupně dle nejnovějších.</div><br />'; 78 78 79 if(!$ User->Licence(LICENCE_ADMIN)) $Where = ' WHERE (`Show`=1) AND (`Parent` IS NULL)';79 if(!$this->System->User->Licence(LICENCE_ADMIN)) $Where = ' WHERE (`Show`=1) AND (`Parent` IS NULL)'; 80 80 else $Where = ''; 81 81 $Query = 'SELECT *, (SELECT Web FROM `Referrer` AS T4 WHERE T4.Id = T3.Parent) AS ParentName '. … … 101 101 array('Name' => 'TotalHits', 'Title' => 'Příchodů'), 102 102 ); 103 if($ User->Licence(LICENCE_ADMIN))103 if($this->System->User->Licence(LICENCE_ADMIN)) 104 104 { 105 105 $TableColumns[] = array('Name' => 'Show', 'Title' => 'Viditelné'); … … 119 119 '<td>'.HumanDate($Line['MaxDateLast']).'</td>'. 120 120 '<td>'.$Line['TotalHits'].'</td>'; 121 if($ User->Licence(LICENCE_ADMIN))121 if($this->System->User->Licence(LICENCE_ADMIN)) 122 122 { 123 123 $Output .= … … 156 156 function Edit() 157 157 { 158 global $User; 159 160 if($User->Licence(LICENCE_ADMIN)) 158 if($this->System->User->Licence(LICENCE_ADMIN)) 161 159 { 162 160 if(array_key_exists('id', $_GET)) … … 182 180 function EditSave() 183 181 { 184 global $User; 185 186 if($User->Licence(LICENCE_ADMIN)) 182 if($this->System->User->Licence(LICENCE_ADMIN)) 187 183 { 188 184 if($_POST['Parent'] == '') $_POST['Parent'] = null;
Note:
See TracChangeset
for help on using the changeset viewer.