Yii RESTful URL Manager
Requirement
- PHP >= 5.3.0
Installation
Add depend to your project composer.json file
{
"require": {
"yii/yiisoft": "dev-master",
"likai/yii-restful": "dev-master"
}
}
After, run composer update
update composer packages
Usage
topics
resource
1. Add return array(
'urlManager'=>array(
'class' => 'Likai\\YiiRestful\\UrlManager',
'urlFormat' => 'path',
'showScriptName' => false,
'resources' => arary(
'topics',
),
),
);
UrlManager will generate 5 url rules and bind to the controller, like the following
`GET` http://yourdomain/topics => TopicsController::actionIndex
`GET` http://yourdomain/topics/{id} => TopicsController::actionShow
`POST` http://yourdomain/topics => TopicsController::actionCreate
`PUT` http://yourdomain/topics/{id} => TopicsController::actionUpdate
`DELETE` http://yourdomain/topics/{id} => TopicsController::actionDelete
2. Specified parameters
'resources' => arary(
'topics',
array('posts', 'only' => array('index', 'create')), // just bind Posts::index, Posts::create action
array('users', 'except' => array('delete', 'update'), // except Posts::delete, Posts::update action
),
ChangeLog
Version v1.0.1 and v1.0.2
- Added composer supported
- Added namespace supported
Version v1.0.0
- First release