[Mediawiki-l] An existing page?

Rob Church robchur at gmail.com
Sat May 20 16:03:46 UTC 2006


On 20/05/06, Luis Mandel <luismandel at gmail.com> wrote:
> How is possible to ask if a page (an article) already exists at mediawiki?

$title = Title::makeTitle( namespace, text );
if( $title->exists() ) {
  ...
}

> How do I know if the user visiting a page is already logged in or not?

global $wgUser;
if( $wgUser->isLoggedIn() ) {
   ...
}


Rob Church



More information about the MediaWiki-l mailing list