Last active
September 28, 2015 10:38
-
-
Save jamband/1426065 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<?php | |
class HogeController extends Controller | |
{ | |
public function actions() | |
{ | |
return array( | |
'edit' => array( | |
'class' => 'actions.EditAction', | |
//'class' => 'EditAction', // import に追加している場合 | |
), | |
'delete' => array( | |
'class' => 'actions.DeleteAction' | |
//'class' => 'DeleteAction' // import に追加している場合 | |
), | |
); | |
} | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment