Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lloydzhou/yii.extension
yii.extension
https://github.com/lloydzhou/yii.extension
Last synced: 7 days ago
JSON representation
yii.extension
- Host: GitHub
- URL: https://github.com/lloydzhou/yii.extension
- Owner: lloydzhou
- Created: 2013-10-31T08:57:16.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2013-11-06T06:36:12.000Z (about 11 years ago)
- Last Synced: 2024-12-06T21:58:07.369Z (27 days ago)
- Language: PHP
- Size: 484 KB
- Stars: 3
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
yii.extension
=============jtable
===
config it in controller
```php
public function actions()
{
return array(
'user'=>array(
'class' => 'JRestAction',
'model' => 'User',
),
'useradmin'=>array(
'class' => 'JTableAction',
'model' => 'User',
),
'post'=>array(
'class' => 'JRestAction',
'model' => 'Post',
),
'comment'=>array(
'class' => 'JRestAction',
'model' => 'Comment',
),
);
}
```