Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- *
- * @ This file is created by deZender.Net
- * @ deZender (PHP5 Decoder for ionCube Encoder)
- *
- * @ Version : 1.1.5.0
- * @ Author : DeZender
- * @ Release on : 09.06.2012
- * @ Official site : http://DeZender.Net
- *
- */
- class Controller {
- function __construct() {
- }
- function Request() {
- $this->OnInput( );
- $this->OnOutput( );
- }
- function OnInput() {
- }
- function OnOutput() {
- }
- function IsGet() {
- return $_SERVER['REQUEST_METHOD'] == 'GET';
- }
- function IsPost() {
- return $_SERVER['REQUEST_METHOD'] == 'POST';
- }
- .....................................................
- .......................
- .......
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement