Ignore:
Timestamp:
Aug 3, 2021, 11:38:29 AM (3 years ago)
Author:
chronos
Message:
  • Modified: Updated Common package.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/IS/IS.php

    r905 r912  
    1212  {
    1313    parent::__construct($System);
    14     $this->FullTitle = 'Správa dat';
    15     $this->ShortTitle = 'Správa dat';
     14    $this->Title = 'Správa dat';
    1615    $this->ParentClass = 'PagePortal';
    1716
     
    173172        $Form->SetClass($Table);
    174173        $Form->LoadValuesFromForm();
    175         $this->ShortTitle .= ' - '.$Form->Definition['Title'].' úprava';
     174        $this->Title .= ' - '.$Form->Definition['Title'].' úprava';
    176175        try
    177176        {
     
    215214      $Form->SetClass($Table);
    216215      $Form->LoadValuesFromDatabase($Id);
    217       $this->ShortTitle .= ' - '.$Form->Definition['Title'].' úprava';
     216      $this->Title .= ' - '.$Form->Definition['Title'].' úprava';
    218217      $Form->OnSubmit = '?a=edit&t='.$Table.'&i='.$_GET['i'].'&o=save';
    219218      $Output .= $Form->ShowEditForm();
     
    246245        $Form->SetClass($Table);
    247246        $Form->LoadValuesFromForm();
    248         $this->ShortTitle .= ' - '.$Form->Definition['Title'].' duplikování';
     247        $this->Title .= ' - '.$Form->Definition['Title'].' duplikování';
    249248        try
    250249        {
     
    286285      $Form->SetClass($Table);
    287286      $Form->LoadValuesFromDatabase($Id);
    288       $this->ShortTitle .= ' - '.$Form->Definition['Title'].' duplikování';
     287      $this->Title .= ' - '.$Form->Definition['Title'].' duplikování';
    289288      $Form->OnSubmit = '?a='.$_GET['a'].'&t='.$Table.'&o=save';
    290289      $Output .= $Form->ShowEditForm();
     
    318317        $Form->SetClass($Table);
    319318        $Form->LoadValuesFromDatabase($Id);
    320         $this->ShortTitle .= ' - '.$Form->Definition['Title'].' odstranění';
     319        $this->Title .= ' - '.$Form->Definition['Title'].' odstranění';
    321320        if (array_key_exists('BeforeDelete', $Form->Definition))
    322321        {
     
    355354        $Form->SetClass($Table);
    356355        $Form->LoadValuesFromForm();
    357         $this->ShortTitle .= ' - '.$Form->Definition['Title'].' přidání';
     356        $this->Title .= ' - '.$Form->Definition['Title'].' přidání';
    358357        try
    359358        {
     
    405404      $Form = new Form($this->System->FormManager);
    406405      $Form->SetClass($Table);
    407       $this->ShortTitle .= ' - '.$Form->Definition['Title'].' přidání';
     406      $this->Title .= ' - '.$Form->Definition['Title'].' přidání';
    408407      // Load presets from URL
    409408      foreach ($_GET as $Key => $Value)
     
    477476    $Form = new Form($this->System->FormManager);
    478477    $Form->SetClass($Table);
    479     $this->ShortTitle .= ' - '.$Form->Definition['Title'].' položka';
     478    $this->Title .= ' - '.$Form->Definition['Title'].' položka';
    480479    $Form->LoadValuesFromDatabase($Id);
    481480    $Form->OnSubmit = '?a=view';
     
    797796      $FormClass = $this->System->FormManager->Classes[$Table];
    798797      else return $this->SystemMessage('Chyba', 'Tabulka '.$Table.' nenalezena');
    799     if ($ExcludeColumn == '') $this->ShortTitle .= ' - '.$FormClass['Title'];
     798    if ($ExcludeColumn == '') $this->Title .= ' - '.$FormClass['Title'];
    800799    if (array_key_exists('ItemActions', $FormClass))
    801800    {
Note: See TracChangeset for help on using the changeset viewer.