This file contains 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 | |
//This part would be included in the controller itself like so: | |
class Articles_Controller extends Controller { | |
public function __construct() { | |
parent::__construct(); | |
$this->filter('before', 'csrf')->on('post'); | |
$this->filter('before', 'ajax')->only(array('index', 'show', 'update')); | |
} |