Changeset 738 for trunk/Modules/User


Ignore:
Timestamp:
Apr 14, 2015, 10:20:16 PM (10 years ago)
Author:
chronos
Message:
  • Removed: Spaces on end of line.
  • Modified: Tabs converted to spaces.
Location:
trunk/Modules/User
Files:
2 edited

Legend:

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

    r729 r738  
    434434class ModuleUser extends AppModule
    435435{
    436         var $UserPanel;
     436  var $UserPanel;
    437437
    438438  function __construct($System)
     
    659659    ));
    660660    $this->System->FormManager->RegisterFormType('TUser', array(
    661         'Type' => 'Reference',
    662         'Table' => 'User',
    663         'Id' => 'Id',
    664         'Name' => 'Name',
    665         'Filter' => '1',
     661      'Type' => 'Reference',
     662      'Table' => 'User',
     663      'Id' => 'Id',
     664      'Name' => 'Name',
     665      'Filter' => '1',
    666666    ));
    667667    $this->System->FormManager->RegisterFormType('TPermissionGroup', array(
    668         'Type' => 'Reference',
    669         'Table' => 'PermissionGroup',
    670         'Id' => 'Id',
    671         'Name' => 'Description',
    672         'Filter' => '1',
     668      'Type' => 'Reference',
     669      'Table' => 'PermissionGroup',
     670      'Id' => 'Id',
     671      'Name' => 'Description',
     672      'Filter' => '1',
    673673    ));
    674674    $this->System->FormManager->RegisterFormType('TPermissionGroupAssignment', array(
    675         'Type' => 'Reference',
    676         'Table' => 'PermissionGroupAssignment',
    677         'Id' => 'Id',
    678         'Name' => 'Id',
    679         'Filter' => '1',
     675      'Type' => 'Reference',
     676      'Table' => 'PermissionGroupAssignment',
     677      'Id' => 'Id',
     678      'Name' => 'Id',
     679      'Filter' => '1',
    680680    ));
    681681    $this->System->FormManager->RegisterFormType('TPermissionOperation', array(
    682         'Type' => 'Reference',
    683         'Table' => 'PermissionOperation',
    684         'Id' => 'Id',
    685         'Name' => 'Id',
    686         'Filter' => '1',
    687     ));
    688    
     682      'Type' => 'Reference',
     683      'Table' => 'PermissionOperation',
     684      'Id' => 'Id',
     685      'Name' => 'Id',
     686      'Filter' => '1',
     687    ));
     688
    689689  }
    690690
     
    695695  function TopBarCallback()
    696696  {
    697     if($this->System->User->User['Id'] == null) 
     697    if($this->System->User->User['Id'] == null)
    698698    {
    699699      $Output = '<a href="'.$this->System->Link('/user/?Action=LoginForm').'">Přihlášení</a> '.
    700700        '<a href="'.$this->System->Link('/user/?Action=UserRegister').'">Registrace</a>';
    701     } else 
    702     {
    703         $Output = $this->System->User->User['Name'].
     701    } else
     702    {
     703      $Output = $this->System->User->User['Name'].
    704704        ' <a href="'.$this->System->Link('/user/?Action=UserMenu').'">Nabídka</a>'.
    705705        ' <a href="'.$this->System->Link('/user/?Action=Logout').'">Odhlásit</a>';
    706         //   <a href="'.$this->System->Link('/?Action=UserOptions').'">Nastavení</a>';
     706      //   <a href="'.$this->System->Link('/?Action=UserOptions').'">Nastavení</a>';
    707707    }
    708708    return($Output);
  • trunk/Modules/User/UserPage.php

    r694 r738  
    5454    if($this->System->User->User['Id'] != null)
    5555    {
    56         $Actions = '';
    57         foreach($this->System->ModuleManager->Modules['User']->UserPanel as $Action)
    58         {
    59                 if(is_string($Action[0]))
    60           {
    61                   $Class = new $Action[0]($this->System);
    62                   $Actions .= $Class->$Action[1]();
    63           } else $Actions .= call_user_func($Action).'<br/>';
    64         }
     56      $Actions = '';
     57      foreach($this->System->ModuleManager->Modules['User']->UserPanel as $Action)
     58      {
     59        if(is_string($Action[0]))
     60        {
     61          $Class = new $Action[0]($this->System);
     62          $Actions .= $Class->$Action[1]();
     63        } else $Actions .= call_user_func($Action).'<br/>';
     64      }
    6565      $Output .= '<div class="Centred"><table id="MainTable"><tr><td style="vertical-align:top;">';
    6666      $Output .= $this->Panel('Nabídka uživatele', $Actions);
     
    8383  }
    8484
    85         function Show()
    86         {
    87                 $Output = '';
     85  function Show()
     86  {
     87    $Output = '';
    8888    if(array_key_exists('Action', $_GET))
    8989    {
     
    209209    } else $Output = $this->ShowMain();
    210210    return($Output);
    211         }
    212 
    213         function ShowMain()
    214         {
    215                 $Output = 'Nebyla vybrána akce';
    216                 return($Output);
    217         }
     211  }
     212
     213  function ShowMain()
     214  {
     215    $Output = 'Nebyla vybrána akce';
     216    return($Output);
     217  }
    218218}
Note: See TracChangeset for help on using the changeset viewer.