Changeset 887 for trunk/block
- Timestamp:
- Nov 20, 2020, 12:08:12 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/block/index.php
r886 r887 1 1 <?php 2 2 3 include_once('../Application/ System.php');3 include_once('../Application/Core.php'); 4 4 5 5 class BlockPage extends Page 6 6 { 7 var $FullTitle = 'Blokování internetu'; 8 var $ShortTitle = 'Blokování internetu'; 9 var $Reasons = array( 7 private array $Reasons = array( 10 8 0 => 'Internet máte povolen, avšak došlo k chybě při kontrole přístupů k Internetu.', 11 9 1 => 'Váš počítač má blokován přístup k internetu. Pravděpodobně je váš účet v mínusu. Přihlaste se do systému a zkontrolujte stav vašich plateb. ', … … 15 13 ); 16 14 17 function Show() 15 function __construct(System $System) 16 { 17 parent::__construct($System); 18 $this->FullTitle = 'Blokování internetu'; 19 $this->ShortTitle = 'Blokování internetu'; 20 } 21 22 function Show(): string 18 23 { 19 24 $Output = '<br/><div style="font-size: 20 pt;">Máte blokován přístup k Internetu.</div> … … 42 47 } 43 48 44 $System = new System();49 $System = new Core(); 45 50 $System->ShowPage = false; 46 51 $System->Run(); 47 $ System->AddModule(new BlockPage($System));48 $System->Modules['BlockPage']->GetOutput();52 $Page = new BlockPage($System); 53 echo($Page->GetOutput()); 49 54
Note:
See TracChangeset
for help on using the changeset viewer.