Extension:IsAllowedHook.php

From Organic Design wiki
Revision as of 01:30, 9 October 2007 by Nad (talk | contribs) (experimental IsAllowed hook)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

<?php

  1. Extension:IsAllowedHookTemplate:Php
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.
  1. - Started: 2007-10-09
  2. - Licenced under LGPL (http://www.gnu.org/copyleft/lesser.html)

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

define('DFO_VERSION','0.0.0, 2007-10-09');

$wgExtensionCredits['parserhook'][] = array( 'name' => "IsAllowedHook", 'author' => 'User:Nad', 'description' => 'Adds a new hook called "IsAllowed" which is called from the User::isAllowed method.', 'url' => 'http://www.organicdesign.co.nz/Extension:IsAllowedHook.php', 'version' => DFO_VERSION );

  1. Create a new User class by extending the existing one

$User = get_class($wgUser); $User2 = $User.'2'; eval("class $User2 extends $User".' {

# Override the isAllowed method to call the new IsAllowed hook function isAllowed($action = "") { $result = NULL; wfRunHooks("IsAllowed",array(&$this,$action,&$result)); return $result === NULL ? $result = parent::isAllowed($action) : $result; }

}');

  1. Replace the $wgUser object with an identical User2 instance

$oldUser = $wgUser; $wgUser = new $User2(); foreach(array_keys(get_class_vars($User)) as $k) $wgUser->$k = $oldUser->$k;

?>