Horde_Rdo_Mapper::mapperToTable PHP Method

mapperToTable() public method

Transform this mapper's class name to a database table name.
public mapperToTable ( ) : string
return string The database table name.
    public function mapperToTable()
    {
        return $this->inflector->pluralize(Horde_String::lower(str_replace('Mapper', '', get_class($this))));
    }