Last active
          February 10, 2016 11:48 
        
      - 
      
 - 
        
Save YuzuruSano/5a0b00b514854ab28b22 to your computer and use it in GitHub Desktop.  
    concrete5 5.7系 ajaxのアクセスポイントを作る
  
        
  
    
      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 | |
| /* =============================================== | |
| @application/bootstrap/app.php | |
| //for ajax | |
| /endpoint/fav/{page_id} にアクセスすると、 | |
| Application\Controller\FavクラスののsetFavoriteメソッドを実行 | |
| {page_id}は引数、この場合はページIDを渡して処理に使ったりとか | |
| URLのルールとかできることはsymfonyのドキュメントとかで | |
| =============================================== */ | |
| Route::register( | |
| '/endpoint/fav/{page_id}', | |
| 'Application\Controller\Fav::setFavorite' | |
| ); | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment