1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

愛するPhpStromでCodeigniterをいじいじするとき、 autoloadしたmodelやlibraryをオートコンプリートする方法

Posted at

phpstorm愛してる!!!!!

というわけで、CodeigniterをPhpstormをコーディングしているときに、get_instanceしたciがオートコンプリートできない問題でうぐうぎしておりました。

	public
	function __construct(){
		$this->ci =& get_instance();
		$this->ci->model_config->set_config('gm_access', 'hogehoge');
	}

こういう奴。

最新のphpstormだと、ある程度はオートコンプリートで追いかけてくれるのだけれど、事前にロードしたモデルとかはオートコンプリートしてくれない。悲しい。

そこで、Ci_controllerを継承したMy_controllerをつくって、そこでmodelを定義しつつ、$ciにMy_controllerを紐付けると、オートコンプリートしてくれます。

core/MY_Controller.php
/**
 * Class App
 * @property Model_config model_config
/***
class MY_Controller extends CI_Controller{
	function __construct(){
		parent::__construct();
	/**
	 * @var $ci MY_Controller
	 **/
	private $ci;

これでオートコンプリートできます!! やったー!!

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?