Jump to content

Manual:DoMaintenance.php/bn

From mediawiki.org
This page is a translated version of the page Manual:DoMaintenance.php and the translation is 14% complete.
মিডিয়াউইকি সংস্করণ:
1.16

Details

doMaintenance.php file is a maintenance script to verify the most important files and run some jobs automatically.

Usage

একটি রক্ষণাবেক্ষণ স্ক্রিপ্ট লেখার সময়, ফাইলের শেষে RUN_MAINTENANCE_IF_MAIN যোগ করুন।

<?php

require_once __DIR__ . '/Maintenance.php';

class HelloWorld extends Maintenance {
	public function execute() {
		$this->output( "Hello, MediaWiki Devs!" );
	}
}

$maintClass = HelloWorld::class;
require_once RUN_MAINTENANCE_IF_MAIN;

Here RUN_MAINTENANCE_IF_MAIN loads doMaintenance.php file which autoloads MediaWiki classes and configuration to run the script smoothly.

See also