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:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk

    • Property svn:ignore
      •  

        old new  
        1 
        21config.php
         2.project
  • trunk/Application/Controller/Add.php

    r45 r47  
    2222  }
    2323}
    24 
    25 ?>
  • trunk/Application/Controller/Client.php

    r45 r47  
    1010    $MeasureClient = new MeasureClient($this->System);
    1111    $MeasureClient->Process();
    12    
     12
    1313    //$View = new MeasureView($this->System);
    1414    //return($View->Add());
    1515  }
    1616}
    17 
    18 ?>
  • trunk/Application/Controller/Graph.php

    r45 r47  
    99  {
    1010    $this->System->Output->FullPage = false;
    11    
     11
    1212    $View = new GraphView($this->System);
    1313    return($View->Render());
    1414  }
    1515}
    16 
    17 ?>
  • trunk/Application/Controller/Main.php

    r42 r47  
    1212  }
    1313}
    14 
    15 ?>
  • trunk/Application/Controller/Measure.php

    r40 r47  
    99  }
    1010}
    11 
    12 ?>
  • trunk/Application/Controller/User.php

    r40 r47  
    88    $View = new UserView($this->System);
    99    return($Page->GetOutput($View->Login()));
    10   } 
    11  
     10  }
     11
    1212  function LoginFinish()
    1313  {
     
    1515    $View = new UserView($this->System);
    1616    return($Page->GetOutput($View->LoginFinish()));
    17   } 
     17  }
    1818
    1919  function Logout()
     
    2222    $View = new UserView($this->System);
    2323    return($Page->GetOutput($View->Logout()));
    24   } 
     24  }
    2525
    2626  function Options()
     
    2929    $View = new UserView($this->System);
    3030    return($Page->GetOutput($View->Options()));
    31   } 
    32  
     31  }
     32
    3333  function OptionsSave()
    3434  {
     
    3636    $View = new UserView($this->System);
    3737    return($Page->GetOutput($View->OptionsSave()));
    38   } 
     38  }
    3939
    4040  function Register()
     
    4343    $View = new UserView($this->System);
    4444    return($Page->GetOutput($View->Register()));
    45   } 
     45  }
    4646
    4747  function RegisterConfirm()
     
    5050    $View = new UserView($this->System);
    5151    return($Page->GetOutput($View->Confirm()));
    52   } 
     52  }
    5353
    5454  function PasswordRecovery()
     
    5757    $View = new UserView($this->System);
    5858    return($Page->GetOutput($View->PasswordRecovery()));
    59   } 
     59  }
    6060
    6161  function PasswordRecoveryFinish()
     
    6464    $View = new UserView($this->System);
    6565    return($Page->GetOutput($View->PasswordRecovery()));
    66   } 
     66  }
    6767
    6868  function PasswordRecoveryConfirm()
     
    7171    $View = new UserView($this->System);
    7272    return($Page->GetOutput($View->PasswordRecoveryConfirm()));
    73   } 
     73  }
    7474
    7575  function RegisterSave()
     
    7878    $View = new UserView($this->System);
    7979    return($Page->GetOutput($View->RegisterSave()));
    80   }   
     80  }
    8181}
    82 
    83 ?>
Note: See TracChangeset for help on using the changeset viewer.