install() public method

플러그인을 설치한다. 플러그인이 설치될 때 실행할 코드를 여기에 작성한다
public install ( ) : void
return void
示例#1
0
 /**
  * 플러그인을 설치한다. 플러그인이 설치될 때 실행할 코드를 여기에 작성한다
  *
  * @return void
  */
 public function install()
 {
     // implement code
     // #1 plugin 에서 테이블 생성은 Migration 을 사용하지 않고 Schema 직접 사용
     $this->createTables();
     parent::install();
 }
示例#2
0
 /**
  * 플러그인을 설치한다. 플러그인이 설치될 때 실행할 코드를 여기에 작성한다
  *
  * @return void
  */
 public function install()
 {
     // implement code
     parent::install();
 }