Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
syncEnrollments
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Yeray Santana Hualde
syncEnrollments
Commits
88e61433
Commit
88e61433
authored
Nov 05, 2011
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
made controllers restful by default.
parent
16a62193
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
7 deletions
+14
-7
home.php
application/controllers/home.php
+10
-6
controller.php
laravel/routing/controller.php
+4
-1
No files found.
application/controllers/home.php
View file @
88e61433
...
...
@@ -10,31 +10,35 @@ class Home_Controller extends Controller {
| Instead of using RESTful routes and anonymous functions, you may wish to
| use controllers to organize your application API. You'll love them.
|
| To start using this controller, simpl
e
remove the default route from the
| To start using this controller, simpl
y
remove the default route from the
| application "routes.php" file. Laravel is smart enough to find this
| controller and call the default method, which is "index".
| controller and call the default method, which is "get_index".
|
| Just like routes, controllers are also RESTful by default. Each function
| is prefixed with the HTTP verb it responds to, allowing you to quickly
| build beautiful RESTful applications.
|
| This controller responds to URIs beginning with "home", and it also
| serves as the default controller for the application, meaning it
| handles requests to the root of the application.
|
| You can respond to requests to "/home/profile" like so:
| You can respond to
GET
requests to "/home/profile" like so:
|
| public function profile()
| public function
get_
profile()
| {
| return "This is your profile!";
| }
|
| Any extra segments are passed to the method as parameters:
|
| public function profile($id)
| public function
get_
profile($id)
| {
| return "This is the profile for user {$id}.";
| }
|
*/
public
function
index
()
public
function
get_
index
()
{
return
View
::
make
(
'home.index'
);
}
...
...
laravel/routing/controller.php
View file @
88e61433
<?php
namespace
Laravel\Routing
;
use
Laravel\IoC
;
use
Laravel\Request
;
use
Laravel\Response
;
abstract
class
Controller
{
...
...
@@ -118,7 +119,9 @@ abstract class Controller {
if
(
is_null
(
$response
))
{
$response
=
call_user_func_array
(
array
(
$this
,
$method
),
$parameters
);
$verb
=
strtolower
(
Request
::
method
());
$response
=
call_user_func_array
(
array
(
$this
,
"
{
$verb
}
_
{
$method
}
"
),
$parameters
);
}
// The after filter and the framework expects all responses to
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment