MetaTemplate::getValue PHP 메소드

getValue() 보호된 메소드

protected getValue ( )
    protected function getValue()
    {
        if ($this->_name !== false) {
            return $this->_name;
        }
        $parts = explode('/', $this->m_dbObject->getPath());
        if (count($parts) < 3) {
            $this->_name = null;
            return null;
        }
        array_shift($parts);
        array_shift($parts);
        $this->_name = implode('/', $parts);
        return $this->_name;
    }