Extension:EmailToWiki

From Organic Design wiki
Revision as of 21:58, 24 May 2007 by Nad (talk | contribs) (create from template ready for discussion)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

<?php

  1. Extension:EmailToWiki
Info.svg These are the MediaWiki extensions we're using and/or developing. Please refer to the information on the mediawiki.org wiki for installation and usage details. Extensions here which have no corresponding mediawiki article are either not ready for use or have been superseded. You can also browse our extension code in our local Subversion repository or our GitHub mirror.

Template:PhpCategory:Extensions created with Template:Extension

  1. - Licenced under LGPL (http://www.gnu.org/copyleft/lesser.html)
  2. - Author: User:Nad

if (!defined('MEDIAWIKI')) die('Not an entry point.');

define('EMAILTOWIKI_VERSION','0.0.0, 2007-05-25');

$wgExtensionFunctions[] = 'wfSetupEmailToWiki'; $wgHooks['LanguageGetMagic'][] = 'wfEmailToWikiLanguageGetMagic';

$wgExtensionCredits['other'][] = array( 'name' => 'EmailToWiki', 'author' => 'User:Nad', 'description' => 'Allows emails to be sent to the wiki and added to an existing or new article', 'url' => 'http://www.mediawiki.org/wiki/Extension:EmailToWiki', 'version' => EMAILTOWIKI_VERSION );

  1. Called from $wgExtensionFunctions array when initialising extensions

function wfSetupEmailToWiki() { }

?>