Xpressengine\Plugin\AbstractPlugin::getIdWith PHP Method

getIdWith() public static method

플러그인의 id에 주어진 인자를 덧붙여서 반환한다.
public static getIdWith ( string $postfix = '', string $delimiter = '::' ) : string
$postfix string 아이디 뒤에 추가할 문자열
$delimiter string 아이디와 추가할 문자열 사이의 구분자
return string 플러그인 id
    public static function getIdWith($postfix = '', $delimiter = '::')
    {
        return static::getId() . ($postfix ? $delimiter . $postfix : $postfix);
    }