Changeset 78 for trunk/www/Application/View/Page.php
- Timestamp:
- Sep 11, 2009, 8:18:38 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/www/Application/View/Page.php
r77 r78 1 1 <?php 2 3 include_once(dirname(__FILE__).'/../../Base/View.php'); 4 include_once(dirname(__FILE__).'/News.php'); 2 5 3 6 class PageView extends View … … 56 59 '<li>Správce: '.$this->Config['Web']['Admin'].'</li>'. 57 60 '<li>E-mail: '.$this->Config['Web']['AdminEmail'].'</li>'; 58 if($this->Config['Web']['ShowRuntimeInfo'] == true) $Output .= '<li>Doba generování: '.$Time.' s / '.ini_get('max_execution_time').' s</li><li>Použitá paměť: '. HumanSize(memory_get_peak_usage(FALSE)).' / '.ini_get('memory_limit').'B</li>';61 if($this->Config['Web']['ShowRuntimeInfo'] == true) $Output .= '<li>Doba generování: '.$Time.' s / '.ini_get('max_execution_time').' s</li><li>Použitá paměť: '.$this->System->AddPrefixMultipliers(memory_get_peak_usage(FALSE), 'B').' / '.ini_get('memory_limit').'B</li>'; 59 62 $Output .= '</ul></div></body></html>'; 60 63 return($Output);
Note:
See TracChangeset
for help on using the changeset viewer.