Xpressengine\Plugin\AbstractPlugin::checkUpdated PHP Method

checkUpdated() public method

이 메소드를 구현하지 않았다면 기본적으로 최신업데이트 상태임(true)을 반환함.
public checkUpdated ( ) : boolean
return boolean 플러그인의 설치 유무,
    public function checkUpdated()
    {
        return true;
    }

Usage Example

 public function checkUpdated()
 {
     if ($this->hasDefaultConfig() === false) {
         return false;
     }
     return parent::checkUpdated();
     // TODO: Change the autogenerated stub
 }