dantman@svn.wikimedia.org schreef:
Revision: 39568 Author: dantman Date: 2008-08-18 03:56:38 +0000 (Mon, 18 Aug 2008)
Log Message:
Create a placeholder for the LinkHook experimentation. This will allow us to develop a new method of parsing links (non-hacky), without breaking current syntax, and also allow us to make sure new methods don't break syntax.
Currently this class merely inherits from the Parser class. Constants and static functions are coppied so that use of self:: won't break when we modify things.
Why don't you just use parent:: wrappers for the static functions, like:
static function func($foo, $bar) { return parent::func($foo, $bar); }
Roan Kattouw (Catrope)