XCL Web Application Platform 2.5.0
The XoopsCube Legacy Project
Loading...
Searching...
No Matches
NotifyCancelAction.class.php
1<?php
11
12if (!defined('XOOPS_ROOT_PATH')) {
13 exit();
14}
15
16class Legacy_NotifyCancelAction extends Legacy_Action
17{
18 public function getDefaultView(&$contoller, &$xoopsUser)
19 {
20 $contoller->executeForward(XOOPS_URL . '/');
21 }
22
23 public function execute(&$contoller, &$xoopsUser)
24 {
25 $contoller->executeForward(XOOPS_URL . '/');
26 }
27}