Horde_Rdo_Mapper::mapperToTable PHP 메소드

mapperToTable() 공개 메소드

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