If you have the Package Control package installed, you can install Codeigniter framework Snippets from inside Sublime Text itself. Open the Command Palette and select “Package Control: Install Package”, then search for Codeigniter framework Snippets.
Sublime Text 툴에서 Codeigniter framework 의 자동화 완성 즉 snippets을 제공해 준다.
설치 방법은 간단하다.
먼저 preference > package control 을 실행한다. 그 다음 "Package Control: Install Package" 을 선택한다.
이제 package 을 설치할 수 있는데요. 검색어는 Codeigniter 이라고 입력하면, "Codeigniter Snippets" 이 나올겁니다.
이를 선택하면 Sublime Text 에 설치가 됩니다.
model 을 입력 후 tab 버튼을 1번 누르면 Snippets 이 되어 쉽게 작성할 수 있습니다.
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class ModelName extends CI_Model {
}
/* End of file modelName.php */
/* Location: ./application/models/modelName.php */
controller 입력하면 아래 처럼 템플릿을 제공해 줍니다.
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Controllername extends CI_Controller {
public function index()
{
}
}
/* End of file controllername.php */
/* Location: ./application/controllers/controllername.php */