Changeset 3 for trunk/global.php
- Timestamp:
- Jul 27, 2016, 8:36:02 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/global.php
r1 r3 1 1 <?php 2 2 3 $Version = '0. 1';3 $Version = '0.2'; 4 4 //include_once('error.php'); 5 5 include_once('config.php'); 6 include_once('db.php'); 7 DB_Init($Options['DB_Host'],$Options['DB_User'],$Options['DB_Password'], $Options['DB_Database']); 6 include_once('Packages/Common/Common.php'); 7 $Database = new Database(); 8 $Database->Connect($Options['DB_Host'], $Options['DB_User'], $Options['DB_Password'], $Options['DB_Database']); 8 9 9 10 function IconedLink($Link, $Text) 10 11 { 11 12 global $Options; 12 $Extension = strtolower(substr($Link, strrpos($Link, '.')+1)); 13 14 $Extension = strtolower(substr($Link, strrpos($Link, '.') + 1)); 13 15 $IconFile = 'images/icons/'.$Extension.'.gif'; 14 16 //echo($IconFile."<br>\n"); 15 if(!file_exists($IconFile)) 17 if(!file_exists($IconFile)) 16 18 { 17 19 $Extension = 'blank'; 18 $IconFile = 'images/icons/'.$Extension.'.gif'; 20 $IconFile = 'images/icons/'.$Extension.'.gif'; 19 21 } 20 22 $Icon = '<img src="'.$Options['RootPath'].$IconFile.'" alt="'.$Extension.'"> '; … … 31 33 function GetMicrotime() 32 34 { 33 34 35 list($Usec, $Sec) = explode(" ",microtime()); 36 return ((float)$Usec + (float)$Sec); 35 37 } 36 38 … … 38 40 { 39 41 global $Time_Start, $refresh, $Charset, $Options, $Output; 40 $Time_Start = GetMicrotime(); // Zjisti poèáteèní èas 42 43 $Time_Start = GetMicrotime();// Zjisti počáteční čas 41 44 $Cesty = array( 42 45 ); … … 45 48 <meta http-equiv="Content-Language" content="cs"> 46 49 <meta http-equiv="Content-Type" content="text/html; charset='; 47 if(isset($Charset)) $Output .= 'windows-1250'; 50 if(isset($Charset)) $Output .= 'windows-1250'; 48 51 else $Output .= 'iso-8859-2'; 49 52 $Output .= '">'; … … 71 74 global $Time_Start, $Version, $Output; 72 75 $Time = floor((GetMicrotime() - $Time_Start)*100)/100; 73 $Output .= '<div id="AdminInfo">| Web mistr: Ji øí Hajda | e-mail: robie@centrum.cz | ICQ: 277158770 | Vygenerováno za '.$Time.' s | Verze: '.$Version.' | Naposledy aktualizováno: '.date('j.n.Y',filemtime($_SERVER['SCRIPT_FILENAME'])).' |</div>';76 $Output .= '<div id="AdminInfo">| Web mistr: Jiří Hajda | e-mail: robie@centrum.cz | ICQ: 277158770 | Vygenerováno za '.$Time.' s | Verze: '.$Version.' | Naposledy aktualizováno: '.date('j.n.Y',filemtime($_SERVER['SCRIPT_FILENAME'])).' |</div>'; 74 77 //ShowArray($GLOBALS); 75 78 $Output .= '</body></html>'; … … 79 82 80 83 81 $MonthNames = array('','Leden','Únor','B øezen','Duben','Kvìten','Èerven','Èervenec','Srpen','Záøí','Øíjen','Listopad','Prosinec');82 84 $MonthNames = array('','Leden','Únor','Březen','Duben','Květen','Červen','Červenec','Srpen','Září','Říjen','Listopad','Prosinec'); 85 83 86 function HumanDate($Date) 84 87 { … … 88 91 } 89 92 90 // Zobrazení èíselný seznamu stránek93 // Zobrazení číselný seznamu stránek 91 94 function PagesList($URL, $Page, $TotalCount, $CountPerPage) 92 95 { … … 96 99 if($Count>1) 97 100 { 98 if($Page>0) 101 if($Page>0) 99 102 { 100 103 $Result.= '<a href="'.$URL.'0"><<</a> '; … … 114 117 $Result.= '<a href="'.$URL.$i.'">'.($i+1).'</a> '; 115 118 if($i==$Page) $Result.= '</strong>'; 116 } 119 } 117 120 if($PagesMax<($Count-1)) $Result .= ' .. '; 118 if($Page<($Count-1)) 121 if($Page<($Count-1)) 119 122 { 120 123 $Result.= '<a href="'.$URL.($Page+1).'">></a> '; … … 123 126 } 124 127 return($Result); 125 } 128 } 126 129 127 130 function GetRemoteAddress() … … 142 145 $start = strpos($s,'<'); 143 146 $end = strpos($s,'>'); 144 if($start != 0) 147 if($start != 0) 145 148 { 146 149 $end = $start-1; … … 148 151 } 149 152 $line = trim(substr($s,$start,$end+1)); 150 if(strlen($line)>0) 153 if(strlen($line)>0) 151 154 if($line[0] == '<') 152 155 { 153 if($s[$start+1] == '/') 156 if($s[$start+1] == '/') 154 157 { 155 158 $n = $n - 2; 156 159 $nn = $n; 157 } else 160 } else 158 161 { 159 162 if(strpos($line,' ')) $cmd = substr($line,1,strpos($line,' ')-1); … … 161 164 //echo('['.$cmd.']'); 162 165 if(strpos($s,'</'.$cmd.'>')) $n = $n + 2; 163 } 166 } 164 167 }// else $line = '['.$line.']'; 165 168 //if($line != '') echo(htmlspecialchars(str_repeat(' ',$nn).$line."\n")); … … 171 174 } 172 175 173 //phpinfo();174 175 ?>
Note:
See TracChangeset
for help on using the changeset viewer.