Horde_Rdo_Mapper::mapperToEntity PHP Метод

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

Transform this mapper's class name to an entity class name.
public mapperToEntity ( ) : string
Результат string A Horde_Rdo_Base concrete class name if the class exists, else null.
    public function mapperToEntity()
    {
        $class = str_replace('Mapper', '', get_class($this));
        if (class_exists($class)) {
            return $class;
        }
        return null;
    }