Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
gino committed Jan 12, 2016
1 parent a6face1 commit 0b93a0d
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
1 change: 0 additions & 1 deletion Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ public function getRequestEvent()
$eventName = '';
break;
}

return $eventName . $requestUri;
}

Expand Down
26 changes: 26 additions & 0 deletions TestController.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,31 @@ public function test($input)
public function test2($input)
{
echo __CLASS__ . '::' . __FUNCTION__;
echo $path = dirname(dirname(dirname(__DIR__))) . '/EstBadminton/view/index.html';
require($path);
}

public function index($input)
{
$path = dirname(dirname(dirname(__DIR__))) . '/EstBadminton/view/index.html';
require($path);
}

public function member($input)
{
$path = dirname(dirname(dirname(__DIR__))) . '/EstBadminton/view/member.html';
require($path);
}

public function passbook($input)
{
$path = dirname(dirname(dirname(__DIR__))) . '/EstBadminton/view/passbook.html';
require($path);
}

public function admin($input)
{
$path = dirname(dirname(dirname(__DIR__))) . '/EstBadminton/view/admin.html';
require($path);
}
}

0 comments on commit 0b93a0d

Please sign in to comment.