Extension:Admin Links/bn

This page is a translated version of the page Extension:Admin Links and the translation is 30% complete.
মিডিয়াউইকি এক্সটেনশন ম্যানুয়াল
Admin Links
মুক্তির অবস্থা: স্থিতিশীল
বাস্তবায়ন বিশেষ পৃষ্ঠা , হুক , এপিআই
বিবরণ Defines a special page, "AdminLinks", meant to serve as a "control panel" for administrators; and adds a link to this page to their "user links"
লেখক(গণ) Yaron Koren <yaron57@gmail.com> (Yaron Korenআলোচনা)
সর্বশেষ সংস্করণ 0.6.2 (আগস্ট, ২০২৩)
সমর্থন নীতি Master maintains backward compatibility.
MediaWiki 1.35+
PHP 7.4+
ডাটাবেজ পরিবর্তন না
Composer mediawiki/admin-links
লাইসেন্স গ্নু জেনারেল পাবলিক লাইসেন্স ২.০ অথবা পরবর্তী
ডাউনলোড
README
উদাহরণ The "Admin links" page for Discourse DB
  • $wgAdminLinksDelimiter
adminlinks
Translate the Admin Links extension if it is available at translatewiki.net
Issues Open tasks · বাগ প্রতিবেদন

Admin Links is an extension to MediaWiki that defines a special page, "Special:AdminLinks", that holds links meant to be helpful for wiki administrators; it is meant to serve as a "control panel" for the functions an administrator would typically perform in a wiki. All users can view this page; however, for those with the 'adminlinks' permission (sysops/administrators, by default), a link to the page also shows up in their "Personal URLs", between "Talk" and "Preferences".

প্রশাসক লিঙ্কগুলি অন্যান্য এক্সটেনশনগুলির জন্য একটি হুক এবং একটি API প্রদান করে যাতে পৃষ্ঠায় তাদের নিজস্ব লিঙ্ক এবং বিভাগগুলি যোগ করতে সক্ষম হয়৷

You can see an example of this page with additional links and sections added by other extensions here.

মিডিয়াউইকি ইতিমধ্যেই একটি "Special:SpecialPages" পৃষ্ঠা প্রদান করে, যা উইকিতে ইনস্টল করা সমস্ত এক্সটেনশনের জন্য বিশেষ পৃষ্ঠাগুলির তালিকা করে, যা আপনাকে ভাবতে পারে যে অতিরিক্ত "প্রশাসকের লিংক" পৃষ্ঠার জন্য কী প্রয়োজন। However, there are a number of important differences that make "AdminLinks" useful:

  • "SpecialPages" holds links to every special page in the wiki, including many (such as Unused categories) that are not specifically helpful to administrators; "AdminLinks" attempts to link only to the administrator-specific ones
  • "AdminLinks" can hold links to pages that are not special pages, such as the "Edit sidebar" page and documentation for various extensions
  • Finally, the Admin Links extension puts a link to "AdminLinks" in administrators' personal tools, which makes things more convenient.

কোড এবং ডাউনলোড

You can download the Admin Links code, in .zip format, here.

You can also download the code directly via Git from the MediaWiki source code repository. From a command line, you can call the following:

git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/AdminLinks.git

To view the code online, including version history for each file, go here: phab:diffusion/EADL/browse/master/

Installation


  • ডাউনলোড করুন এবং আপনার extensions/ ফোল্ডারের AdminLinks নামক ডিরেক্টরিতে ফাইল(গুলি) নিন।
    Developers and code contributors should install the extension from Git instead, using:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/AdminLinks
  • আপনার LocalSettings.php -এর নিচের অংশে নিম্নলিখিত কোড যোগ করুন:
    wfLoadExtension( 'AdminLinks' );
    
  • Configure as required.
  •   করা হয়েছে – এক্সটেনশনটি সফলভাবে ইনস্টল করা হয়েছে কিনা তা যাচাই করতে আপনার উইকির Special:Version-এ যান।

Configuration

If you want to have the members of groups other than 'sysop' see a link to the AdminLinks page among their navigation links, you can also add lines like the following after it:

$wgGroupPermissions['my-group']['adminlinks'] = true;

By default, links are separated by an interpunct (·) You can change this via the global variable $wgAdminLinksDelimiter; for example, to have links separated by a pipe, add the following:

$wgAdminLinksDelimiter = '|';

লেখক

Admin Links was written by Yaron Koren, reachable at yaron57@gmail.com.

সংস্করণ ইতিহাস

Admin Links is currently at version 0.6.2.

সংস্করণ ইতিহাস হল:

  • 0.1 (2009-05-13) - Initial version
  • 0.1.1 (2009-06-02) - Support for many languages added
  • 0.1.2 (2009-09-09) - Support for many more languages added
  • 0.1.3 (2010-07-12) - More links added; some section headers renamed
  • 0.1.4 (2011-02-22) - Handling improved for MW 1.16+; link to Special:ListFiles added
  • 0.1.5 (2011-10-10) - Handling improved for MW 1.17+; link to Special:Log added
  • 0.1.6 (2012-01-06) - Support removed for MW < 1.16
  • 0.1.7 (2012-11-12) - Handling improved for MW 1.18+; support removed for MW < 1.18
  • 0.1.8 (2013-05-01) - Fix for ALItem::newFromPage()
  • 0.2 (2014-05-30) - i18n messages moved into JSON files; grouping added for Special:AdminLinks within Special:SpecialPages
  • 0.2.1 (2015-01-20) - Minor code fixes
  • 0.2.2 (2015-06-24) - Support for Composer added; handling improved for MW 1.21+
  • 0.2.3 (2016-06-07) - Fix for nonexistent special pages; support removed for MW < 1.23
  • 0.3 (2018-05-24) - extension.json added
  • 0.3.1 (2018-05-31) - Re-added accidentally-removed support for MW < 1.28; dedicated link to Special:CreateAccount added
  • 0.4 (2020-01-16) - AdminLinks.php removed; support removed for MW < 1.28; link escaping improved
  • 0.4.1 (2020-06-22) - Handling improved for MW 1.32+
  • 0.4.2 (2021-06-08) - Handling improved for MW 1.35+
  • 0.5 (2022-02-07) - Support removed for MW < 1.32; coding improvements
  • 0.6 (2023-01-27) - Support removed for MW < 1.35; $wgAdminLinksDelimiter setting added; coding improvements
  • 0.6.1 (2023-03-28) - Fix for display within Chameleon skin
  • 0.6.2 (2023-08-21) - Updated hook handling; support removed for PHP 7.3


The Admin Links API

In order for an extension to add links and sections to the AdminLinks page, it must define a new function, and register it with the "AdminLinks" hook. See the AdminLinks hook manual for more info.

Extensions that use Admin Links

A number of extensions and skins add links to the Admin Links page, if installed. See Category:AdminLinks extensions for the current list.

Contributing to the project

বাগ এবং বৈশিষ্ট্য অনুরোধ

Send any bug reports and requests to Yaron Koren, at yaron57@gmail.com.

Contributing patches to the project

If you found some bug and fixed it, or if you wrote code for a new feature, please create a patch by going to the "AdminLinks" directory, and typing:

git diff > descriptivename.patch

Then send this patch, with a description, to Yaron Koren.