wiki.techinc.nl/includes/FakeTitle.php

84 lines
3.7 KiB
PHP

<?php
/**
* Fake title class that triggers an error if any members are called
*/
class FakeTitle extends Title {
function error() { throw new MWException( "Attempt to call member function of FakeTitle\n" ); }
// PHP 5.1 method overload
function __call( $name, $args ) { $this->error(); }
// PHP <5.1 compatibility
function isLocal() { $this->error(); }
function isTrans() { $this->error(); }
function getText() { $this->error(); }
function getPartialURL() { $this->error(); }
function getDBkey() { $this->error(); }
function getNamespace() { $this->error(); }
function getNsText() { $this->error(); }
function getSubjectNsText() { $this->error(); }
function getInterwiki() { $this->error(); }
function getFragment() { $this->error(); }
function getDefaultNamespace() { $this->error(); }
function getIndexTitle() { $this->error(); }
function getPrefixedDBkey() { $this->error(); }
function getPrefixedText() { $this->error(); }
function getFullText() { $this->error(); }
function getPrefixedURL() { $this->error(); }
function getFullURL( $query = '', $variant = false ) {$this->error(); }
function getLocalURL( $query = '', $variant = false ) { $this->error(); }
function escapeLocalURL( $query = '' ) { $this->error(); }
function escapeFullURL( $query = '' ) { $this->error(); }
function getInternalURL( $query = '', $variant = false ) { $this->error(); }
function getEditURL() { $this->error(); }
function getEscapedText() { $this->error(); }
function isExternal() { $this->error(); }
function isSemiProtected( $action = 'edit' ) { $this->error(); }
function isProtected( $action = '' ) { $this->error(); }
function userIsWatching() { $this->error(); }
function userCan( $action, $doExpensiveQueries = true ) { $this->error(); }
function userCanCreate() { $this->error(); }
function userCanEdit( $doExpensiveQueries = true ) { $this->error(); }
function userCanMove() { $this->error(); }
function isMovable() { $this->error(); }
function userCanRead() { $this->error(); }
function isTalkPage() { $this->error(); }
function isCssJsSubpage() { $this->error(); }
function isValidCssJsSubpage() { $this->error(); }
function getSkinFromCssJsSubpage() { $this->error(); }
function isCssSubpage() { $this->error(); }
function isJsSubpage() { $this->error(); }
function userCanEditCssJsSubpage() { $this->error(); }
function loadRestrictions( $res ) { $this->error(); }
function getRestrictions($action) { $this->error(); }
function isDeleted() { $this->error(); }
function getArticleID( $flags = 0 ) { $this->error(); }
function getLatestRevID() { $this->error(); }
function resetArticleID( $newid ) { $this->error(); }
function invalidateCache() { $this->error(); }
function getTalkPage() { $this->error(); }
function getSubjectPage() { $this->error(); }
function getLinksTo() { $this->error(); }
function getTemplateLinksTo() { $this->error(); }
function getBrokenLinksFrom() { $this->error(); }
function getSquidURLs() { $this->error(); }
function moveNoAuth() { $this->error(); }
function isValidMoveOperation() { $this->error(); }
function moveTo() { $this->error(); }
function moveOverExistingRedirect() { $this->error(); }
function moveToNewTitle() { $this->error(); }
function isValidMoveTarget() { $this->error(); }
function getParentCategories() { $this->error(); }
function getParentCategoryTree() { $this->error(); }
function pageCond() { $this->error(); }
function getPreviousRevisionID() { $this->error(); }
function getNextRevisionID() { $this->error(); }
function equals() { $this->error(); }
function exists() { $this->error(); }
function isAlwaysKnown() { $this->error(); }
function isKnown() { $this->error(); }
function touchLinks() { $this->error(); }
function trackbackURL() { $this->error(); }
function trackbackRDF() { $this->error(); }
}