Changeset 887 for trunk/Modules/NetworkShare
- Timestamp:
- Nov 20, 2020, 12:08:12 AM (4 years ago)
- Location:
- trunk/Modules/NetworkShare
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/NetworkShare/NetworkShare.php
r738 r887 7 7 class ModuleNetworkShare extends AppModule 8 8 { 9 function __construct( $System)9 function __construct(System $System) 10 10 { 11 11 parent::__construct($System); … … 18 18 } 19 19 20 function DoInstall() 20 function DoInstall(): void 21 21 { 22 22 } 23 23 24 function DoUnInstall() 24 function DoUnInstall(): void 25 25 { 26 26 } 27 27 28 function DoStart() 28 function DoStart(): void 29 29 { 30 $this->System->RegisterPage( 'share', 'SharePage');30 $this->System->RegisterPage(['share'], 'SharePage'); 31 31 } 32 32 } -
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.