Changeset 912 for trunk/Modules/Network


Ignore:
Timestamp:
Aug 3, 2021, 11:38:29 AM (3 years ago)
Author:
chronos
Message:
  • Modified: Updated Common package.
Location:
trunk/Modules/Network
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Network/HostList.php

    r887 r912  
    88  {
    99    parent::__construct($System);
    10     $this->FullTitle = 'Seznam registrovaných počítačů';
    11     $this->ShortTitle = 'Seznam počítačů';
     10    $this->Title = 'Seznam počítačů';
     11    $this->Description = 'Seznam registrovaných počítačů';
    1212    $this->ParentClass = 'PageNetwork';
    1313  }
  • trunk/Modules/Network/Hosting.php

    r887 r912  
    66  {
    77    parent::__construct($System);
    8     $this->FullTitle = 'Hostované projekty';
    9     $this->ShortTitle = 'Hostované projekty';
     8    $this->Title = 'Hostované projekty';
    109    $this->ParentClass = 'PageNetwork';
    1110  }
  • trunk/Modules/Network/Network.php

    r911 r912  
    1212  {
    1313    parent::__construct($System);
    14     $this->FullTitle = 'Výpis obsazení frekvenčních kanálů';
    15     $this->ShortTitle = 'Frekvenční plán';
     14    $this->Title = 'Frekvenční plán';
     15    $this->Description = 'Výpis obsazení frekvenčních kanálů';
    1616    $this->ParentClass = 'PageNetwork';
    1717  }
     
    8383  {
    8484    parent::__construct($System);
    85     $this->FullTitle = 'Technické informace o síti';
    86     $this->ShortTitle = 'Síť';
     85    $this->Title = 'Síť';
     86    $this->Description = 'Technické informace o síti';
    8787    $this->ParentClass = 'PagePortal';
    8888  }
     
    895895    $Output .= $StillOffline['Report'];
    896896    $Offline = $this->OnlineList('Offline', 0, -1, 0);
    897     return array('Report' => $Output, 'Count' => $Offline['Count'], 'ShortTitle' => 'Odezva');
     897    return array('Report' => $Output, 'Count' => $Offline['Count'], 'Title' => 'Odezva');
    898898  }
    899899
     
    947947    $Output .= $StillOffline['Report'];
    948948    $Offline = $this->PortCheckList('Offline', 0, -1, 0);
    949     return array('Report' => $Output, 'Count' => $Offline['Count'], 'ShortTitle' => 'Port');
     949    return array('Report' => $Output, 'Count' => $Offline['Count'], 'Title' => 'Port');
    950950  }
    951951}
  • trunk/Modules/Network/Subnet.php

    r887 r912  
    66  {
    77    parent::__construct($System);
    8     $this->FullTitle = 'Informace o podsítích';
    9     $this->ShortTitle = 'Podsítě';
     8    $this->Title = 'Podsítě';
     9    $this->Description = 'Informace o podsítích';
    1010    $this->ParentClass = 'PageNetwork';
    1111  }
  • trunk/Modules/Network/UserHosts.php

    r887 r912  
    66  {
    77    parent::__construct($System);
    8     $this->FullTitle = 'Registrované počítače';
    9     $this->ShortTitle = 'Registrované počítače';
     8    $this->Title = 'Registrované počítače';
    109    $this->ParentClass = 'PageNetwork';
    1110  }
Note: See TracChangeset for help on using the changeset viewer.