Extension:Download

From Organic Design wiki
Revision as of 07:10, 26 August 2008 by Nad (talk | contribs) (oops bug fixed)

<?php /**

* Download extension - Provides a tag which renders a list of image titles as downloadable links
*
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.

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 .= "$icon\n
\n
\n"; $row .= "
$item

\n";

return $text; }

 }

function efSetupDownload() { global $egDownload; $egDownload = new Download(); }