Advertisement
Guest User

Untitled

a guest
May 14th, 2013
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @ This file is created by deZender.Net
  5. * @ deZender (PHP5 Decoder for ionCube Encoder)
  6. *
  7. * @ Version : 1.1.5.0
  8. * @ Author : DeZender
  9. * @ Release on : 09.06.2012
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14.  
  15. class Controller {
  16. function __construct() {
  17. }
  18.  
  19. function Request() {
  20. $this->OnInput( );
  21. $this->OnOutput( );
  22. }
  23.  
  24. function OnInput() {
  25. }
  26.  
  27. function OnOutput() {
  28. }
  29.  
  30. function IsGet() {
  31. return $_SERVER['REQUEST_METHOD'] == 'GET';
  32. }
  33.  
  34. function IsPost() {
  35. return $_SERVER['REQUEST_METHOD'] == 'POST';
  36. }
  37. .....................................................
  38. .......................
  39. .......
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement