Horde_Rdo_Mapper::mapperToTable PHP Méthode

mapperToTable() public méthode

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