Changeset 887 for trunk/Modules/NetworkShare/SharePage.php
- Timestamp:
- Nov 20, 2020, 12:08:12 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/NetworkShare/SharePage.php
r874 r887 3 3 class SharePage extends Page 4 4 { 5 var $FullTitle = 'Prohledávání sdílených souborů';6 var $ShortTitle = 'Sdílené soubory';7 var $ParentClass = 'PagePortal';8 5 var $Dependencies = array('Log'); 9 6 var $MaxNesting = 20; // Maximální vnoření … … 20 17 ); 21 18 19 function __construct(System $System) 20 { 21 parent::__construct($System); 22 $this->FullTitle = 'Prohledávání sdílených souborů'; 23 $this->ShortTitle = 'Sdílené soubory'; 24 $this->ParentClass = 'PagePortal'; 25 } 26 22 27 function ShowTime() 23 28 { … … 66 71 } 67 72 68 function Show() 69 { 70 if (! $this->System->User->CheckPermission('NetworkShare', 'Display')) return 'Nemáte oprávnění';73 function Show(): string 74 { 75 if (!ModuleUser::Cast($this->System->GetModule('User'))->User->CheckPermission('NetworkShare', 'Display')) return 'Nemáte oprávnění'; 71 76 72 77 // If not only online checkbox checked … … 102 107 // Log search 103 108 if (array_key_exists('keyword', $_POST) or array_key_exists('keyword', $_GET)) 104 $this->System->ModuleManager->Modules['Log']->NewRecord('Share', 'Hledaný výraz', $_SESSION['keyword']);109 ModuleLog::Cast($this->System->GetModule('Log'))->NewRecord('Share', 'Hledaný výraz', $_SESSION['keyword']); 105 110 106 111 // Zobrazení formuláře
Note:
See TracChangeset
for help on using the changeset viewer.