Changeset 833


Ignore:
Timestamp:
Jul 3, 2016, 1:41:25 PM (8 years ago)
Author:
chronos
Message:
  • Modified: Show users list, device list and map only for network managers.
Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/Application/Version.php

    r831 r833  
    11<?php
    22
    3 $Revision = 831; // Subversion revision
     3$Revision = 833; // Subversion revision
    44$DatabaseRevision = 831; // SQL structure revision
    5 $ReleaseTime = strtotime('2016-05-01');
     5$ReleaseTime = strtotime('2016-07-03');
  • trunk/Modules/Finance/Manage.php

    r825 r833  
    5252    $MonthFrom = floor(($MonthCurrent - 1) / $MonthCount) * $MonthCount + 1;
    5353    $MonthTo = $MonthFrom + $MonthCount - 1;
    54    
     54
    5555    /* Use period from current month to end month so months before current month are cut out */
    5656    $MonthCount = $MonthTo - $MonthCurrent + 1;
     
    365365      $Content = 'Vyúčtovaní zákazníka <strong>'.$Subject['Name'].'</strong> zastoupeného uživatelem <strong>'.
    366366        $User['Name'].'</strong> ke dni <strong>'.$this->System->HumanDate(time()).'</strong>.<br/><br/>'."\n".
    367         'Váše aktuální služby: ';
     367        'Vaše aktuální služby: ';
    368368      $DbResult = $this->Database->query('SELECT GROUP_CONCAT(`Service`.`Name`) AS `Name` FROM `ServiceCustomerRel` LEFT JOIN `Service` '.
    369369        'ON `Service`.`Id`=`ServiceCustomerRel`.`Service` WHERE (`ServiceCustomerRel`.`Customer`='.$Member['Id'].') '.
  • trunk/Modules/Map/Map.php

    r796 r833  
    1313  function Show()
    1414  {
     15    if(!$this->System->User->CheckPermission('Map', 'Show'))
     16      return('Nemáte oprávnění');
     17
    1518    if(count($this->System->PathItems) > 1)
    1619    {
     
    224227        array('Caption' => 'Ukázat na mapě', 'URL' => '/map/show-position?i=#RowId'),
    225228      ),
     229      'Actions' => array(
     230        array('Caption' => 'Ukázat mapu', 'URL' => '/map/'),
     231      ),
    226232    ));
    227233    $this->System->FormManager->RegisterFormType('TMapPosition', array(
  • trunk/Modules/Network/HostList.php

    r790 r833  
    1111  function Show()
    1212  {
     13    if(!$this->System->User->CheckPermission('Network', 'ShowHostList'))
     14      return('Nemáte oprávnění');
     15
    1316    if(array_key_exists('admin', $_GET)) $Where = 'AND NetworkDevice.Type IN (1,4,5) ';
    1417      else $Where = '';
  • trunk/Modules/Network/Network.php

    r830 r833  
    9090  function ShowInformation()
    9191  {
     92    if(!$this->System->User->CheckPermission('Network', 'ShowInfo'))
     93      return('Nemáte oprávnění');
     94
    9295    $Output = '<a href="'.$this->System->Link('/network/frequency-plan/').'">Frekvenční plán</a><br />';
    9396    $Output .= '<a href="'.$this->System->Link('/network/subnet/').'">Výpis registrovaných podsítí</a><br />';
  • trunk/Modules/User/UserList.php

    r825 r833  
    99  function Show()
    1010  {
     11    if(!$this->System->User->CheckPermission('User', 'ShowList'))
     12      return('Nemáte oprávnění');
     13
    1114    $DbResult = $this->Database->query('SELECT COUNT(*) FROM `User`');
    1215    $DbRow = $DbResult->fetch_row();
Note: See TracChangeset for help on using the changeset viewer.