Extension:Views

From mediawiki.org
MediaWiki extensions manual
Views
Release status: unmaintained
Implementation MyWiki
Description Allows to avoid inline HTML
Author(s) (Vedmakatalk)
Latest version 0.1 (2013-08-24)
MediaWiki 1.18+
Database changes No
License GNU General Public License 3.0
Download
README
Quarterly downloads 2 (Ranked 138th)

The Views extension brings some templating in dev process to separate HTML and PHP which allows to avoid inline HTML.

Instead of using inline HTML blocks in PHP, just use Views.

Installation[edit]

  • Download and place the file(s) in a directory called Views in your extensions/ folder.
  • Add the following code at the bottom of your LocalSettings.php file:
    require_once "$IP/extensions/Views/Views.php";
    
  • Yes Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.

Usage[edit]

  1. While developing an extension create directory called "views" in your extension folder.
  2. Place some standard php-templates in this directory, for example: template.php with contents
<div>
<p><? echo $a ?></p>
</div>

Somewhere in your code call Views:

$data = array( $a => 'hello' );
$html = Views::forge('template', $data);

This will parse template, extract variables and return result into $html variable.

Result will be:

<div>
<p>hello</p>
</div>

That's it!