-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Owura
authored and
Owura
committed
Jul 17, 2017
1 parent
125462b
commit 4372033
Showing
54 changed files
with
921 additions
and
219 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>403 Forbidden</title> | ||
</head> | ||
<body> | ||
|
||
<p>Directory access is forbidden.</p> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); | ||
|
||
/** | ||
* | ||
*/ | ||
class AppController extends CI_Controller | ||
{ | ||
/** | ||
* Display a listing of the resource. | ||
* GET /appcontroller | ||
*/ | ||
public function index() | ||
{ | ||
echo "hello"; | ||
} | ||
|
||
/** | ||
* Display the specified resource. | ||
* GET /appcontroller/get/{id} | ||
* | ||
* @param int $id | ||
*/ | ||
public function get($id) | ||
{ | ||
|
||
} | ||
|
||
/** | ||
* Show the form for creating a new resource. | ||
* GET /appcontroller/create | ||
*/ | ||
public function create() | ||
{ | ||
|
||
} | ||
|
||
/** | ||
* Store a newly created resource in storage. | ||
* POST /appcontroller/store | ||
*/ | ||
public function store() | ||
{ | ||
|
||
} | ||
|
||
/** | ||
* Show the form for editing the specified resource. | ||
* GET /appcontroller/edit/{id} | ||
* | ||
* @param int $id | ||
*/ | ||
public function edit($id) | ||
{ | ||
|
||
} | ||
|
||
/** | ||
* Update the specified resource in storage. | ||
* PUT /appcontroller/update/{id} | ||
* | ||
* @param int $id | ||
*/ | ||
public function update($id) | ||
{ | ||
|
||
} | ||
|
||
/** | ||
* Remove the specified resource from storage. | ||
* DELETE /appcontroller/delete/{id} | ||
* | ||
* @param int $id | ||
*/ | ||
public function delete($id) | ||
{ | ||
|
||
} | ||
} | ||
|
||
/* End of file AppController.php */ | ||
/* Location: ./app/controllers/AppController.php */ |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<h1>APPCONTROLLER#CREATE</h1> | ||
|
||
<p>Find me in <pre>app/views/create.php</pre></p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<h1>APPCONTROLLER#EDIT</h1> | ||
|
||
<p>Find me in <pre>app/views/edit.php</pre></p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<h1>APPCONTROLLER#GET</h1> | ||
|
||
<p>Find me in <pre>app/views/get.php</pre></p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<h1>APPCONTROLLER#INDEX</h1> | ||
|
||
<p>Find me in <pre>app/views/index.php</pre></p> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.