MediaWiki/archive/embedding/1.14/index.php

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
< MediaWiki‎ | archive‎ | embedding
Revision as of 00:08, 15 December 2017 by Woozle (talk | contribs) (Woozle moved page MediaWiki/embedding/1.14/index.php to MediaWiki/archive/embedding/1.14/index.php without leaving a redirect: obsolete, keeps changing)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Code

<php><?php /* HISTORY:

 2009-06-06 Now works with MediaWiki 1.14 and current version of extract.php
 2009-06-07 Added code to view error and warning messages; fixed 2 warnings which popped up
  • /

define('kfpWebAccts','/var/www/'); define('kfpMediaWiki',kfpWebAccts.'wiki-hypertwins-org/');

// To have all your extractable pages as subpages or in a namespace, give them a prefix: define('kEmbeddedPagePrefix',); /* This can be empty, but the idea is that you might want to avoid conflicts between the names of your embedded pages and the names of regular pages in your wiki (if you're using the wiki as a regular wiki too). It all depends on how you are using the embedded pages.

  • /

// This code helps with debugging, but it is optional. error_reporting(E_ALL | E_STRICT); ini_set('display_errors', 1);

//set_include_path(get_include_path() . PATH_SEPARATOR . kPathToMediaWiki); if (isset($_REQUEST['wikipage'])) {

   $pgtitle = $_REQUEST['wikipage'];

} else {

   $pgtitle = 'Main Page';	// default page to show

}

?> loadContent(); echo $wgArticle->mContent; /* End of meta tag code CSS code below is just for standalone presentation. */ ?> </php>