Horde_Rdo_Mapper::mapperToEntity PHP Method

mapperToEntity() public method

Transform this mapper's class name to an entity class name.
public mapperToEntity ( ) : string
return 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;
    }