Changeset 912 for trunk/Modules/IS/IS.php
- Timestamp:
- Aug 3, 2021, 11:38:29 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/IS/IS.php
r905 r912 12 12 { 13 13 parent::__construct($System); 14 $this->FullTitle = 'Správa dat'; 15 $this->ShortTitle = 'Správa dat'; 14 $this->Title = 'Správa dat'; 16 15 $this->ParentClass = 'PagePortal'; 17 16 … … 173 172 $Form->SetClass($Table); 174 173 $Form->LoadValuesFromForm(); 175 $this-> ShortTitle .= ' - '.$Form->Definition['Title'].' úprava';174 $this->Title .= ' - '.$Form->Definition['Title'].' úprava'; 176 175 try 177 176 { … … 215 214 $Form->SetClass($Table); 216 215 $Form->LoadValuesFromDatabase($Id); 217 $this-> ShortTitle .= ' - '.$Form->Definition['Title'].' úprava';216 $this->Title .= ' - '.$Form->Definition['Title'].' úprava'; 218 217 $Form->OnSubmit = '?a=edit&t='.$Table.'&i='.$_GET['i'].'&o=save'; 219 218 $Output .= $Form->ShowEditForm(); … … 246 245 $Form->SetClass($Table); 247 246 $Form->LoadValuesFromForm(); 248 $this-> ShortTitle .= ' - '.$Form->Definition['Title'].' duplikování';247 $this->Title .= ' - '.$Form->Definition['Title'].' duplikování'; 249 248 try 250 249 { … … 286 285 $Form->SetClass($Table); 287 286 $Form->LoadValuesFromDatabase($Id); 288 $this-> ShortTitle .= ' - '.$Form->Definition['Title'].' duplikování';287 $this->Title .= ' - '.$Form->Definition['Title'].' duplikování'; 289 288 $Form->OnSubmit = '?a='.$_GET['a'].'&t='.$Table.'&o=save'; 290 289 $Output .= $Form->ShowEditForm(); … … 318 317 $Form->SetClass($Table); 319 318 $Form->LoadValuesFromDatabase($Id); 320 $this-> ShortTitle .= ' - '.$Form->Definition['Title'].' odstranění';319 $this->Title .= ' - '.$Form->Definition['Title'].' odstranění'; 321 320 if (array_key_exists('BeforeDelete', $Form->Definition)) 322 321 { … … 355 354 $Form->SetClass($Table); 356 355 $Form->LoadValuesFromForm(); 357 $this-> ShortTitle .= ' - '.$Form->Definition['Title'].' přidání';356 $this->Title .= ' - '.$Form->Definition['Title'].' přidání'; 358 357 try 359 358 { … … 405 404 $Form = new Form($this->System->FormManager); 406 405 $Form->SetClass($Table); 407 $this-> ShortTitle .= ' - '.$Form->Definition['Title'].' přidání';406 $this->Title .= ' - '.$Form->Definition['Title'].' přidání'; 408 407 // Load presets from URL 409 408 foreach ($_GET as $Key => $Value) … … 477 476 $Form = new Form($this->System->FormManager); 478 477 $Form->SetClass($Table); 479 $this-> ShortTitle .= ' - '.$Form->Definition['Title'].' položka';478 $this->Title .= ' - '.$Form->Definition['Title'].' položka'; 480 479 $Form->LoadValuesFromDatabase($Id); 481 480 $Form->OnSubmit = '?a=view'; … … 797 796 $FormClass = $this->System->FormManager->Classes[$Table]; 798 797 else return $this->SystemMessage('Chyba', 'Tabulka '.$Table.' nenalezena'); 799 if ($ExcludeColumn == '') $this-> ShortTitle .= ' - '.$FormClass['Title'];798 if ($ExcludeColumn == '') $this->Title .= ' - '.$FormClass['Title']; 800 799 if (array_key_exists('ItemActions', $FormClass)) 801 800 {
Note:
See TracChangeset
for help on using the changeset viewer.