Last active
March 27, 2016 10:03
-
-
Save kurozumi/a0ece5b0a19b9e168f3e to your computer and use it in GitHub Desktop.
【CodeIgniter3】フックを使ってコントローラーを拡張するクラスを複数作成する方法
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 | |
defined('BASEPATH') OR exit('No direct script access allowed'); | |
/* | |
| ------------------------------------------------------------------------- | |
| Hooks | |
| ------------------------------------------------------------------------- | |
| This file lets you define "hooks" to extend CI without hacking the core | |
| files. Please see the user guide for info: | |
| | |
| https://codeigniter.com/user_guide/general/hooks.html | |
| | |
*/ | |
$hook["pre_system"] = array( | |
"class" => "CI_Classes", | |
"function" => "register", | |
"filename" => "CI_Classes.php", | |
"filepath" => "hooks", | |
"params" => array(APPPATH . "classes/") | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment