Doctrine_Record::getAccessor PHP Метод

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

gets the custom accessor for a field name
public getAccessor ( string $fieldName ) : string
$fieldName string
Результат string $accessor
    public function getAccessor($fieldName)
    {
        if ($this->hasAccessor($fieldName)) {
            $componentName = $this->_table->getComponentName();
            return self::$_customAccessors[$componentName][$fieldName];
        }
    }