Input Box Extension

From WikiIndex

Jump to: navigation, search


Help for using this extension at Help:Inputbox

This line of code goes in LocalSettings.php

require_once("extensions/inputbox.php");

This is the code for InputBox.php, it resides in the Extensions Directory

<?php

/**
 * This file contains the main include file for the Inputbox extension of 
 * MediaWiki. 
 *
 * Usage: require_once("path/to/inputbox.php"); in LocalSettings.php
 *
 * This extension requires MediaWiki 1.5 or higher.
 *
 * @author Erik Moeller <moeller@scireview.de>
 * @copyright Public domain
 * @license Public domain
 * @package MediaWikiExtensions
 * @version 0.1
 */
 
/**
 * Register the Inputbox extension with MediaWiki
 */ 
$wgExtensionFunctions[] = 'registerInputboxExtension';
$wgExtensionCredits['parserhook'][] = array(
'name' => 'Inputbox',
'author' => 'Erik Moeller',
'url' => 'http://meta.wikimedia.org/wiki/Help:Inputbox',
);

/**
 * Sets the tag that this extension looks for and the function by which it
 * operates
 */
function registerInputboxExtension()
{
    global $wgParser;
    $wgParser->setHook('inputbox', 'renderInputbox');
}


/**
 * Renders an inputbox based on information provided by $input.
 */
function renderInputbox($input)
{
	global $wgTitle;
	$inputbox=new Inputbox();
	getBoxOption($inputbox->type,$input,'type');
	getBoxOption($inputbox->width,$input,'width',true);	
	getBoxOption($inputbox->preload,$input,'preload');
	getBoxOption($inputbox->editintro,$input,'editintro');
	getBoxOption($inputbox->defaulttext,$input,'default');	
	getBoxOption($inputbox->bgcolor,$input,'bgcolor');
	getBoxOption($inputbox->buttonlabel,$input,'buttonlabel');	
	getBoxOption($inputbox->searchbuttonlabel,$input,'searchbuttonlabel');		
	getBoxOption($inputbox->id,$input,'id');	
	getBoxOption($inputbox->labeltext,$input,'labeltext');
	getBoxOption( $inputbox->br, $input, 'break' );
	$inputbox->lineBreak();
	
	$boxhtml=$inputbox->render();
	# Maybe support other useful magic words here
	$boxhtml=str_replace("{{PAGENAME}}",$wgTitle->getText(),$boxhtml);
	if($boxhtml) {
		return $boxhtml;
	} else {
		return "<br /> <font color='red'>Input box '{$inputbox->type}' not defined.</font>";
	}
}


function getBoxOption(&$value,&$input,$name,$isNumber=false) {

      if(preg_match("/^\s*$name\s*=\s*(.*)/mi",$input,$matches)) {
		if($isNumber) {
			$value=intval($matches[1]);
		} else {
			$value=htmlspecialchars($matches[1]);
		}
	}
}

class Inputbox {
	var $type,$width,$preload,$editintro, $br;
	var $defaulttext,$bgcolor,$buttonlabel,$searchbuttonlabel;
	
	function render() {
		if($this->type=='create' || $this->type=='comment') {
			return $this->getCreateForm();		
		} elseif($this->type=='search') {
			return $this->getSearchForm();
		} elseif($this->type=='search2') {
			return $this->getSearchForm2();
		} else {
			return false;
		}	
	}
	function getSearchForm() {
		global $wgUser;
		
		$sk=$wgUser->getSkin();
		$searchpath = $sk->escapeSearchLink();		
		if(!$this->buttonlabel) {
			$this->buttonlabel = wfMsgHtml( 'tryexact' );
		}
		if(!$this->searchbuttonlabel) {
			$this->searchbuttonlabel = wfMsgHtml( 'searchfulltext' );
		}
		
		$searchform=<<<ENDFORM
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td align="center" bgcolor="{$this->bgcolor}">
<form name="searchbox" action="$searchpath" class="searchbox">
	<input class="searchboxInput" name="search" type="text"
	value="{$this->defaulttext}" size="{$this->width}"/>{$this->br}	
	<input type='submit' name="go" class="searchboxGoButton"
	value="{$this->buttonlabel}"
	/> <input type='submit' name="fulltext"
	class="searchboxSearchButton"
	value="{$this->searchbuttonlabel}" />
</form>
</td>
</tr>
</table>
ENDFORM;
		return $searchform;
	}

	function getSearchForm2() {
		global $wgUser, $wgOut;
		
		$sk=$wgUser->getSkin();
		$searchpath = $sk->escapeSearchLink();		
		if(!$this->buttonlabel) {
			$this->buttonlabel = wfMsgHtml( 'tryexact' );
		}

		$this->labeltext = $wgOut->parse( $this->labeltext, false );
		$this->labeltext = str_replace('<p>', '', $this->labeltext);
		$this->labeltext = str_replace('</p>', '', $this->labeltext);
		
		$searchform=<<<ENDFORM
<form action="$searchpath" class="bodySearch" id="bodySearch{$this->id}"><Div class="bodySearchWrap"><label for="bodySearchIput{$this->id}">{$this->labeltext}</label><input type="text" name="search" size="{$this->width}" class="bodySearchIput" id="bodySearchIput{$this->id}" /><input type="submit" name="go" value="{$this->buttonlabel}" class="bodySearchBtnGo" />
ENDFORM;

		if ( $this->fulltextbtn )
			$searchform .= '<input type="submit" name="fulltext" class="bodySearchBtnSearch" value="{$this->searchbuttonlabel}" />';

		$searchform .= '</div></form>';

		return $searchform;
	}

	
	function getCreateForm() {
		global $wgScript;	
		
		$action = htmlspecialchars( $wgScript );		
		if($this->type=="comment") {
			$comment='<input type="hidden" name="section" value="new">';
			if(!$this->buttonlabel) {
				$this->buttonlabel = wfMsgHtml( "postcomment" );
			}
		} else {
			$comment='';
			if(!$this->buttonlabel) {			
				$this->buttonlabel = wfMsgHtml( "createarticle" );
			}
		}		
		$createform=<<<ENDFORM
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td align="center" bgcolor="{$this->bgcolor}">
<form name="createbox" action="$action" method="get" class="createbox">
	<input type='hidden' name="action" value="edit">
	<input type="hidden" name="preload" value="{$this->preload}" />
	<input type="hidden" name="editintro" value="{$this->editintro}" />	
	{$comment}
	<input class="createboxInput" name="title" type="text"
	value="{$this->defaulttext}" size="{$this->width}"/>{$this->br}	
	<input type='submit' name="create" class="createboxButton"
	value="{$this->buttonlabel}"/>	
</form>
</td>
</tr>
</table>
ENDFORM;
		return $createform;
	}

	function lineBreak() {
		# Should we be inserting a <br /> tag?
		$cond = ( strtolower( $this->br ) == "no" );
		$this->br = $cond ? '' : '<br />';
	}
	
}
?>
Personal tools