eZ\Publish\Core\Repository\Values\ObjectState\ObjectStateGroup::getDescription PHP 메소드

getDescription() 공개 메소드

This method returns the name of the content type in the given language.
public getDescription ( string $languageCode ) : string
$languageCode string
리턴 string the description for the given language or null if none exists.
    public function getDescription($languageCode)
    {
        if (!isset($this->descriptions[$languageCode])) {
            return null;
        }
        return $this->descriptions[$languageCode];
    }