Changeset 887 for trunk/Modules/Network/HostList.php
- Timestamp:
- Nov 20, 2020, 12:08:12 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Network/HostList.php
r874 r887 5 5 class PageHostList extends Page 6 6 { 7 var $FullTitle = 'Seznam registrovaných počítačů'; 8 var $ShortTitle = 'Seznam počítačů'; 9 var $ParentClass = 'PageNetwork'; 7 function __construct(System $System) 8 { 9 parent::__construct($System); 10 $this->FullTitle = 'Seznam registrovaných počítačů'; 11 $this->ShortTitle = 'Seznam počítačů'; 12 $this->ParentClass = 'PageNetwork'; 13 } 10 14 11 function Show() 15 function Show(): string 12 16 { 13 if (! $this->System->User->CheckPermission('Network', 'ShowHostList'))17 if (!ModuleUser::Cast($this->System->GetModule('User'))->User->CheckPermission('Network', 'ShowHostList')) 14 18 return 'Nemáte oprávnění'; 15 19
Note:
See TracChangeset
for help on using the changeset viewer.