Příručka:Třídy bot Chrise G

This page is a translated version of the page Manual:Chris G's botclasses and the translation is 11% complete.

Chris G's botclasses is a PHP MediaWiki bot framework (formerly?) hosted at the Toolserver. They are derived from the wikibot.classes used by ClueBot. Viz také w:User:RMCD bot/botclasses.php a https://github.com/legoktm/harej-bots/blob/master/botclasses.php

Bots

HelloWorldBot.php

<?php
/*
 * HelloWorldBot.php
 * This bot edits Wikipedia:Sandbox.
/*

/* Setup my classes. */
include( 'botclasses.php' );
$wiki      = new wikipedia;
$wiki->url = "https://en.wikipedia.org/w/api.php";
$wiki->setUserAgent( 'User-Agent: FooBot (https://mediawiki.org/wiki/User:FooBot)' );
 
/* All the login stuff. */
$user = 'REMOVED';
$pass = 'REMOVED';
$wiki->login( $user, $pass );
 
/* Test edit. */
$page = 'Wikipedia:Sandbox';
$content = 'Hello, world!';
$summary = 'This is a sample bot edit.';
$wiki->edit( $page, $content, $summary );

Other bots