2
2

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.

NetBeansでYiiのCWebApplicationを補完する

Last updated at Posted at 2012-12-28

Step1 : yiilite.phpを無視する

NBがyiilite.phpも読み込むと重複して補完の候補が上がってしまうので、最初にこのファイルを無視しておくといいかと思います。

設定は
ツール > オプション > その他 > ファイル
のIDEが無視するファイルのパターンに |yiilite.php$を追加します。

Step2 : 補完用のファイルを作成する

nbprojectの中に下記のファイルを追加します。
https://gist.github.com/4393875

<?php
/**
 * Description of Code Completion file for Yii Framework with NetBeans.
 * 
 * This is file for code completion of yii framework.
 * Please put this to your nbproject folder. (e.g. yourproject/nbproject/code_completion.php)
 * 
 * Yii::app()->[Ctrl + Spase]
 * CWebApplication methods and fields are added on the popup list.
 *
 * @author junichi11
 */
class Yii extends YiiBase {
 
	/**
	 * @return CWebApplication
	 */
	public static function app() {}
 
}

フレームワーク本体ではCApplicationを返しているので、上記ファイルを追加しない場合は、Yii::app()->とした場合にCApplicationクラスの候補しかリストに表示されません。

pluginでインクルードパスの追加とこのファイルの追加のアクションをつけれたらつけようと思います。

2
2
1

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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?