HTML5Video.php: Hvordan vise HTML5 videofiler i MediaWiki
onsdag, april 11th, 2012
En eller annen gang i år skrev jeg ett søtt lite tillegg for nettsteds-systemet MediaWiki for å vise HTML5 video. Dette bruker jeg blant annet på nettstedet Norske Dikt.
Les resten av dette innlegget »
<?php $wgExtensionFunctions = 'wfHTMl5Video'; $wgExtensionCredits = array( 'name' => 'HTMl5Video', 'description' => 'HTMl5Video', 'author' => 'oyvinds', 'url' => 'http://oyvinds.livelyblog.com/' ); function wfHTMl5Video() { global $wgParser; $wgParser->setHook('HTMl5Video', 'renderHTMl5Video'); } # The callback function for converting the input text to HTML output function renderHTMl5Video($input, $args) { $width = isset($args) ?...
Les resten av dette innlegget »




