Ignore:
Timestamp:
Jul 27, 2014, 9:14:56 PM (10 years ago)
Author:
chronos
Message:
  • Odstraněno: Zbytečná PHP ukončovací značka "?>" z konce všech souborů.
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

    • Property svn:ignore
      •  

        old new  
        1 
        21config.php
         2.project
  • trunk/Application/View/User.php

    r42 r47  
    3838      'Email' => array('Type' => 'String', 'Caption' => 'E-mail', 'Default' => ''),
    3939    ),
    40   ); 
     40  );
    4141  var $LoginFormClass = array(
    4242    'Title' => 'Přihlášení uživatele',
     
    4848    ),
    4949  );
    50  
     50
    5151  function Login()
    5252  {
    5353    global $Config;
    54    
     54
    5555    $Form = new Form($this->System, $this->LoginFormClass);
    5656    $Form->OnSubmit = '?Module=User&Action=LoginFinish';
    5757    $Output = $Form->ShowEditForm();
    5858    $Output .= '<div class="Centred">';
    59     if($Config['System']['UserRegistrationEnabled']) 
     59    if($Config['System']['UserRegistrationEnabled'])
    6060      $Output .= '<a href="?Module=User&amp;Action=Register">Registrovat se</a> ';
    6161    $Output .= '<a href="?Module=User&amp;Action=PasswordRecovery">Obnova zapomenutého hesla</a></div>';
    6262    return($Output);
    6363  }
    64  
     64
    6565  function LoginFinish()
    6666  {
     
    8080    return($Output);
    8181  }
    82  
     82
    8383  function RegisterSave()
    8484  {
    8585    global $Config;
    86    
    87     if($Config['System']['UserRegistrationEnabled']) 
     86
     87    if($Config['System']['UserRegistrationEnabled'])
    8888    {
    8989      $Form = new Form($this->System, $this->RegisterFormClass, array());
     
    100100    return($Output);
    101101  }
    102  
     102
    103103  function PasswordRecoveryConfirm()
    104104  {
     
    108108    return($Output);
    109109  }
    110  
     110
    111111  function PasswordRecoveryFinish()
    112112  {
     
    119119    {
    120120      $Output .= $Form->ShowEditForm();
    121     }       
     121    }
    122122    return($Output);
    123123  }
    124  
     124
    125125  function PasswordRecovery()
    126126  {
     
    130130    return($Output);
    131131  }
    132  
     132
    133133  function Logout()
    134134  {
     
    138138    return($Output);
    139139  }
    140  
     140
    141141  function Options()
    142142  {
     
    147147    return($Output);
    148148  }
    149  
     149
    150150  function OptionsSave()
    151151  {
     
    161161    return($Output);
    162162  }
    163  
     163
    164164  function Register()
    165165  {
    166166    global $Config;
    167    
    168     if($Config['System']['UserRegistrationEnabled']) 
     167
     168    if($Config['System']['UserRegistrationEnabled'])
    169169    {
    170170      $Form = new Form($this->System, $this->RegisterFormClass);
     
    176176    return($Output);
    177177  }
    178  
     178
    179179  function RegisterConfirm()
    180180  {
    181181    global $Config;
    182    
    183     if($Config['System']['UserRegistrationEnabled']) 
     182
     183    if($Config['System']['UserRegistrationEnabled'])
    184184    {
    185185      $Page = new PageView($this->System);
     
    190190  }
    191191}
    192 
    193 ?>
Note: See TracChangeset for help on using the changeset viewer.