Extension:Download
<?php /**
* Download extension - Provides a tag which renders a list of image titles as downloadable links *
Template:PhpCategory:Extensions created with Template:Extension
* See http://www.organicdesign.co.nz/Extension:Download for installation and usage details * * @package MediaWiki * @subpackage Extensions * @author User:Nad * @licence GNU General Public Licence 2.0 or later */
if (!defined('MEDIAWIKI')) die('Not an entry point.');
define('DOWNLOAD_VERSION', '1.0.3, 2008-08-26');
$egDownloadTag = "download"; $egDownloadImages = dirname(__FILE__)."/images"; $wgExtensionFunctions[] = 'efSetupDownload';
$wgExtensionCredits['parserhook'][] = array( 'name' => 'Download', 'author' => 'User:Nad', 'description' => 'Provides a tag which renders a list of image titles as downloadable links', 'url' => 'http://www.organicdesign.co.nz/Extension:Download', 'version' => DOWNLOAD_VERSION );
class Download {
function __construct() { global $wgParser, $egDownloadTag;
$wgParser->setHook($egDownloadTag, array($this, 'tagDownload')); }
function tagDownload($text, $argv, &$parser) { global $wgScriptPath, $egDownloadImages; $dir = preg_replace('|^.+(?=[/\\\\]extensions)|', $wgScriptPath, $egDownloadImages); preg_match_all('|^\s*(.+?)\s*(\|(.+?))?\s*$|m', $text, $links);
$text = "
\n"; $cols = isset($argv['cols']) && is_numeric($argv['cols']) ? $argv['cols'] : 4; $row = ""; foreach ($links[3] as $i => $link) { $page = $links[1][$i]; $img = Image::newFromTitle(Title::newFromText($page)); $icon = glob("$egDownloadImages/default.*"); if ($src = $img && $img->exists() ? $img->getURL() : false) { $ext = preg_match('|^.+\.(.+?)$|', $src, $m) ? $m[1] : 'default'; if (count($j = glob("$egDownloadImages/$ext.*")) > 0) $icon = $j; $item = "<a href=\"$src\">$link</a>"; } else $item = "No file associated with $page"; $icon = "<img src=\"$dir/".basename($icon[0])."\" width=\"128\" height=\"128\" alt=\"\" />"; $icon = "<a class=\"image\" title=\"$page\" href=\"$src\">$icon</a>"; $row .= "\n";if ($i%$cols == 3) {
$text .= "\n$row\n"; $row = ""; } } $row = $row ? "\n$row\n" : ""; $text .= "$row\n";
$row .= " \n";
$row .= " \n";
$row .= "\n";
$row .= "$icon\n \n$item |
\n";
return $text; }
}
function efSetupDownload() { global $egDownload; $egDownload = new Download(); }