Extension:Soundex
This extension stores its source code on a wiki page. Please be aware that this code may be unreviewed or maliciously altered. They may contain security holes, outdated interfaces that are no longer compatible etc. Note: No localisation updates are provided for this extension by translatewiki.net . |
This extension is currently not actively maintained! Although it may still work, any bug reports or feature requests will more than likely be ignored. |
![]() Release status: unmaintained |
|
---|---|
Implementation | Tag |
Description | Generates soundex codes with <soundex></soundex> tag |
Author(s) | Kurt M. Weber (Kmwebertalk) |
Latest version | 0.1 (2008-09-18) |
MediaWiki | |
License | GNU General Public License 2.0 or later |
Download | Soundex.php |
This extension adds a <soundex></soundex>
tag to enable generation of Soundex codes from within MediaWiki.
It is essentially just a wrapper for PHP's built-in soundex()
function.
UsageEdit
To generate a soundex code, simply place the name between <soundex></soundex>
tags.
For instance,
<soundex>Kurt</soundex>
will generate
- K630
FilesEdit
There is only one file, the one is Soundex.php
.
Simply create a Soundex
directory in your extensions
directory and place the Soundex.php
file there, then add the following to your LocalSettings.php file:
require_once("extensions/Soundex/Soundex.php");