--- /dev/null
+<?php
+
+$wgHooks['ParserFirstCallInit'][] = 'efSetupPaypalWMES';
+
+function efSetupPaypalWMES(&$parser) {
+ $parser->setHook( 'paypal wm-es', 'efHookPaypalWMES' );
+ return true;
+}
+
+function efHookPaypalWMES( $input, array $args, Parser $parser, PPFrame $frame ) {
+ return '
+<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
+<input name="cmd" type="hidden" value="_s-xclick" />
+<input name="hosted_button_id" type="hidden" value="G5QN39QKQGMNE" />
+<input alt="PayPal. La forma rápida y segura de pagar en Internet." name="submit"
+src="http://www.wikimedia.org.es/wp-content/uploads/2011/06/btn_donateCC_LG.gif" type="image" />
+</form>';
+}
\ No newline at end of file