IMP_Compose::getMetadata PHP Метод

getMetadata() публичный Метод

Gets metadata about the current object.
public getMetadata ( string $name ) : mixed
$name string The metadata name.
Результат mixed The metadata value or null if it doesn't exist.
    public function getMetadata($name)
    {
        return isset($this->_metadata[$name]) ? $this->_metadata[$name] : null;
    }