Manual:Extensions/ru
This page is in progress of translating to Russian. You can help translating it or go to another language version that follows:
Эта страница в процессе перевода на русский язык. Вы можете помочь в переводе или перейти на другие языковые версии, указанные ниже:
| Язык: | English • Deutsch • Ελληνικά • Français • Bahasa Indonesia • 日本語 • 한국어 • Polski • Русский |
|---|
| Теги расширений | Функции парсера | Хуки | Специальные страницы | Скины | Магические слова |
Расширения — это сборки PHP-кода, которые добавляют новые возможности и расширяют функциональность ядра MediaWiki. Расширения - одно из главных преимуществ MediaWiki. Они дают администраторам и пользователям вики возможность адаптировать MediaWiki под собственные запросы.
В зависимости от ваших целей вы можете использовать расширения для:
- расширения языка вики-разметки для написания статей - смотри Category:Parser function extensions и Category:Parser extensions для примеров.
- добавления новых возможностей отчетности и администрирования - смотри Category:Special page extensions для примеров.
- изменения внешнего вида MediaWiki - смотри m:Gallery of user styles и Category:User interface extensions для примеров.
- повышения безопасности через использования различных методов аутентификации - смотри Category:Authentication and Authorization Extensions для примеров.
Если вам требуется полный список существующих расширений, просмотрите категорию «Расширения по категориям» или матрицу расширений. О том, как установить эти расширения или написать свое собственное, читайте ниже.
Contents
|
[edit] Проверка установленных расширений
Только кто-то с правами администрирования файловой системы на сервере может установить расширения для MediaWiki, но кто угодно может проверить какие расширения установлена на MediaWiki, для этого нужно просмотреть Special:Version статью. К примеру, эти расширения активны в Русской Википедии.
[edit] Установка расширения
MediaWiki готова к установке расширений сразу же после собственной установки. Чтобы установить расширение, следуйте следующим шагам:
- Перед тем как начать
- Некоторые расширения требуют установки patch. Многие из них также содержат инструкции, предназначены для установки с помощью Unix-команд. Вам нужен доступ к оболочке (SSH), чтобы ввести эти команды, перечисленные на страницах справки расширений.
- Некоторые расширения требуют установки патчей. Так же многие из них содержат инструкции по установке с использованием unix комманд. Вам потребуется шэлл-доступ (SSH) для использования комманд и инструкций, содержащихся в руководствах по установке этих дополнений.
- Загрузите и установите
ExtensionFunctions.php.- Устанавливайте этот файл, только если у вас возникают ошибки без него, многим расширениям не нужен!
- Некоторые расширения, особенно новые, требуют дополнительный вспомогательный файл именуемый
ExtensionFunctions.php. ExtensionFunctions включает набор функций, упрощяющих код расширений по взаимодействию с основным кодом MediaWiki. Лучший способ установить этот файл это загрузить его текущую версию из SVN. Его так же можно просмотреть здесь в любое время. После загрузки, скопируйте файлExtensionFunctions.phpв каталог$IP/extensions/вашей MediaWiki.
- Загрузите необходимое расширение.
- Расширения обычно распространяются как модульные пакеты. Обычно они располагаются в собственном подкаталоге каталога
$IP/extensions/. Список расширений зарегистрированных на MediaWiki.org доступен на матрице расширений, и список расширений сохранен SVN хранилище на Wikimedia на сервере svn:trunk/extensions. Некоторые расширения доступны в виде исходного кода с помощью this wiki. Можно автоматизировать их загрузку. - Неофициальные пакеты расширений в Wikimedia SVN хранилище могут быть найдены на toolserver. Работоспособность этих пакетов не может быть гарантированна, поскольку этот репозиторий используется непосредственно разработчиком и может содержать неисправный пакеты. Рекомендуется используйть их только для тестирования в тестовой среде.
- Расширения обычно распространяются как модульные пакеты. Обычно они располагаются в собственном подкаталоге каталога
- Установите необходимое расширение.
- Обычно, в конце файла
LocalSettings.php, (но выше признака конца кода PHP, "?>"), добавляется строка: -
require_once "$IP/extensions/extension_name/extension_name.php"; - Эта строка вынуждает интерпретатор PHP прочесть файл расширения, и таким образом сделать это доступным для MediaWiki.
- Some extensions can conflict with maintenance scripts, for example if they directly access $_SERVER (not recommended).
- In this case they can be wrapped in the conditional so maintenance scripts can still run.
if (!$wgCommandLineMode) {# extension includes}- The maintenance script importDump.php will fail for any extension which requires customized namespaces which is included inside the conditional above such as Extension:Semantic MediaWiki, Extension:Semantic Forms.
-
Замечание: While this installation procedure is sufficient for most extensions, some require a different installation procedure. Check your extension's documentation for details.
- Обычно, в конце файла
[edit] Написание расширений
Концептуально каждое расширение состоит из трех частей:
- установка
- выполнение
- интернационализация
[edit] Внутренняя организация расширения
Внутренняя организация расширений постоянно меняется. Первоначально расширения были просто отдельными файлами, именуемыми после расширения и Вы можете найти некоторые примеры этой организации (структуры). По мере развития Медиавики эта структура устарела. Сейчас, каждое расширение помещается в каталог, содержащим один или несколько файлов, соответствующих трем частям: установочной, исполняемой и интернационализации.
- myextension/myextension.php - хранит инструкции по установке. (Памятка: в некоторых расширениях этот файл называется
myextension/myextension.setup.php)
- myextension/myextension.body.php - хранит исполняемый код for the extension for simple extensions. For complex extensions requiring multiple php files, the implementation code may instead be placed in a subdirectory,
myextension/includes. For an example, please see Semantic MediaWiki
- myextension/myextension.i18n.php - хранит интернациональную информацию для расширения.
[edit] Написание инструкции по установке
Your goal in writing the setup portion is to consolidate set up so that users installing your extension need do nothing more than include the setup file in their LocalSettings.php file, like this:
require_once("$IP/extensions/myextension/myextension.php");
Если вы хотите сделать ваше расширение настраиваемым, вы должны задать и задокументировать все конфигурационные параметры и ваши пользователи должны видеть что-то подобное (замените XXX на myextension):
require_once("$IP/extensions/XXX/XXX.php"); $wgXXXConfigThis=1; $wgXXXConfigThat=false;
To reach this simplicity, your setup file will need to accomplish a number of tasks:
- define and/or validate any configuration variables you have defined for your extension.
- prepare the classes used by your extension for autoloading
- determine what parts of your setup should be done immediately and what needs to be deferred until the MediaWiki core has been initialized and configured
- register any special pages, custom XML tags, parser functions, and variables used by your extension.
- define any additional hooks needed by your extension
- setup internationalization and localization for your extension
[edit] Making your extension user configurable
If you want your user to be able to configure your extension, you'll need to provide one or more configuration variables. It is a good idea to give those variables a unique name. They should also follow MediaWiki naming conventions (e.g. global variables should begin with $wg).
For example, if your extension is named "Very silly extension that does nothing", you might want to name all your configuration variables to begin $wgVsetdn or $wgVSETDN. It doesn't really matter what you choose so long as none of the MediaWiki core begins its variables this way and you have done a reasonable job of checking to see that none of the published extensions begin their variables this way. Users won't take kindly to having to choose between your extension and some other extensions because they chose overlapping variable names.
It is also a good idea to include extensive documentation of any configuration variables in your installation notes.
[edit] Preparing classes for autoloading
If you choose to use classes to implement your extension, MediaWiki provides a simplified mechanism for helping php find the source file where your class is located. In most cases this should eliminate the need to write your own __autoload($classname) method.
To use MediaWiki's autoloading mechanism, you add entries to the variable $wgAutoloadClasses. The key of each entry is the class name; the value is the file that stores the definition of the class. For a simple one class extension, the class is usually given the same name as the extension, so your autoloading section might look like this (extension is named Foobar):
$wgAutoloadClasses['Foobar'] = dirname(__FILE__) . '/Foobar.body.php';
.
For complex extensions with multiple classes, your autoloading section might look like this:
$wgFoobarIncludes = dirname(__FILE__) . '/includes/'; $wgAutoloadClasses['SpecialFoobar'] = $wgFoobarIncludes . 'SpecialFoobar.php'; #implements special page Foobar $wgAutoloadClasses['FoobarTag'] = $wgFoobarIncludes . 'FoobarTag.php'; #implements tag <foobar>
[edit] Registering features with MediaWiki
MediaWiki lists all the extensions that have been installed on its Special:Version page. For example, you can see all the extensions installed on this wiki at Special:Version. It is good form to make sure that your extension is also listed on this page. To do this, you will need to add an entry to $wgExtensionCredits for each special page, custom XML tag, parser function, and variable used by your extension. The entry will look something like this:
$wgExtensionCredits['validextensionclass'][] = array( 'name' => 'Example', 'author' =>'John Doe', 'url' => 'http://www.mediawiki.org/wiki/User:JDoe', 'description' => 'This Extension is an example and performs no discernable function' );
validextensionclass must be one of specialpage, parserhook, variable, other, as specified on Manual:$wgExtensionCredits.
In addition to the above registration, you must also "hook" your feature into MediaWiki. The above only sets up the Special:Version page. For details, please see the documentation for each type of extension:
[edit] Deferring setup
LocalSettings.php runs early in the MediaWiki setup process and a lot of things are not fully configured at that point. This can cause problems for certain setup activities. To work around this problem, MediaWiki gives you a choice of when to run set up actions. You can either run them immediately by inserting the commands in your setup file -or- you can run them later, after MediaWiki has finished configuring its core software.
To defer setup actions, your setup file must contain two bits of code:
- the definition of a setup function
- the assignment of that function to the $wgExtensionFunctions array.
The PHP code should look something like this:
$wgExtensionFunctions[]='wfFoobarSetup'; function wfFoobarSetup() { #do stuff that needs to be done after setup }
[edit] Writing the execution portion
The technique for writing the implementation portion depends upon the part of MediaWiki system you wish to extend:
- Wiki markup: Extensions that extend wiki markup will typically contain code that defines and implements custom XML tags, parser functions and variables. You can click on any of the links in the preceding sentence to get full details on how to implement these features in your extension.
- Reporting and administration: Extensions that add reporting and administrative capabilities usually do so by adding special pages. For more information see Manual:Special pages.
- Article automation and integrity: Extensions that improve the integration between MediaWiki and its backing database or check articles for integrity features, will typically add functions to one of the many hooks that affect the process of creating, editing, renaming, and deleting articles. For more information about these hooks and how to attach your code to them, please see Manual:Hooks.
- Look and feel: Extensions that provide a new look and feel to mediaWiki are bundled into skins. For more information about how to write your own skins, see Manual:Skin and Manual:Skinning.
- Security: Extensions that limit their use to certain users should integrate with MediaWiki's own permissions system. To learn more about that system, please see Manual:Preventing access. Some extensions also let MediaWiki make use of external authentication mechanisms. For more information, please see AuthPlugin. In addition, if your extension tries to limit readership of certain articles, please check out the gotchas discussed in Security issues with authorization extensions.
See also the Extensions FAQ, Developer hub
[edit] Интернационализация вашего расширения
If you want your extension to be used on wikis that have a multi-lingual readership, you will need to add internalization support to your extension. Fortunately this is relatively easy to do.
- For any text string displayed to the user, define a message. MediaWiki supports parameterized messages and that feature should be used when a message is dependent on information generated at runtime. Assign each message a lowercase message id.
- In your setup and implementation code, replace each literal use of the message with a call to
wfMsg($msgID, $param1, $param2, ...). Example :wfMsg('addition','1','2','3') - Store the message definition in your internalization file (myextension.i18n.php) . This is normally done by setting up an array that maps language and message id to each string. Each message id should be lowercase. A minimal file might look like this:
<?php $messages = array(); $messages['en'] = array( 'sillysentence' => 'This sentence says nothing', 'answertoeverything' => 'Forty-two', 'addition' => '$1 plus $2 equals $3', //sentence with params ); $messages['fr'] = array( 'sillysentence' => 'Une phrase absurde', 'answertoeverything' => 'quarante-deux', 'addition' => '$1 et $2 font $3', //phrase avec paramètres );
- In your setup routine, load the internalization file :
$wgExtensionMessagesFiles['myextension'] = dirname( __FILE__ ) . '/myextension.i18n.php';
- Finally call
wfLoadExtensionMessages( 'myextension' );in your extension execution code.
For more information, please see:
- Internationalisation - discusses the MediaWiki internationalization engine, in particular, there is a list of features that can be localized and some review of the MediaWiki source code classes involved in localization.
- Localization checks - discusses common problems with localized messages
[edit] Публикация вашего расширения
Для категоризации и стандартизации документации вашего расширение смотрите Template:Extension. Чтобы добавить ваше новое расширении в эту вики: Please replace "MyExtension" with your extension's name:
MediaWiki is an open-source project and users are encouraged to make any MediaWiki extensions under an Open Source Initiative (OSI) approved GPLv2 compatible license (including MIT, BSD, PD). For extensions that have a compatible license, you can request commit access to the MediaWiki source repository for extensions. Alternatively, you may also post your code directly on your extension's page, although that is not the preferred method.
A developer sharing their code on the MediaWiki wiki or code repository should expect:
- Feedback / Criticism / Code reviews
- Review and comments by other developers on things like framework use, security, efficiency and usability.
- Developer tweaking
- Other developers modifying your submission to improve or clean-up your code to meet new framework classes and methods, coding conventions and translations.
- Improved access for wiki sysadmins
- If you do decide to put your code on the wiki, another developer may decide to move it to the MediaWiki code repository for easier maintenance. You may then request commit access to continue maintaining it.
- Future versions by other developers
- New branches of your code being created by other developers as new versions of MediaWiki are released.
- Merger of your code into other extensions with duplicate or similar purposes — incorporating the best features from each extension.
- Credit
- Credit for your work being preserved in future versions — including any merged extensions.
- Similarly, you should credit the developers of any extensions whose code you borrow from — especially when performing a merger.
Any developer who is uncomfortable with any of these actions occurring should not host their code directly on the MediaWiki wiki or code repository. You are still encouraged to create a summary page for your extension on the wiki to let people know about the extension, and where to download it. You may also add the {{Extension exception}} template to your extension requesting other developers refrain from modifying your code, although no guarantees can be made that an update will be made if deemed important for security or compatibility reasons. You may use the current issues noticeboard if you feel another developer has violated the spirit of these expectations in editing your extension.
[edit] Extension techniques
Extensions can be categorized based on the programming techniques used to achieve their effect. Most extensions will use more than one of these techniques:
- Subclassing: MediaWiki expects certain kinds of extensions to be implemented as subclasses of a MediaWiki provided base class:
- Special pages - Subclasses of the SpecialPage class are used to build pages whose content is dynamically generated using a combination of the current system state, user input parameters, and database queries. Both reports and data entry forms can be generated. They are used for both reporting and administration purposes.
- Skins - Skins change the look and feel of MediaWiki by altering the code that outputs pages by subclassing the MediaWiki class SkinTemplate.
- Hooks: A technique for injecting custom php code at key points within MediaWiki processing. They are widely used by MediaWiki's parser, its localization engine, its extension management system, and its page maintenance system.
- Tag-function associations - XML style tags that are associated with a php function that outputs HTML code. You do not need to limit yourself to formatting the text inside the tags. You don't even need to display it. Many tag extensions use the text as parameters that guide the generation of HTML that embeds google objects, data entry forms, RSS feeds, excerpts from selected wiki articles.
- Magic words: A technique for mapping a variety of wiki text string to a single id that is associated with a function. Both variables and parser functions use this technique. All text mapped to that id will be replaced with the return value of the function. The mapping between the text strings and the id is stored in an array passed to each function attached to the LanguageGetMagic hook. The interpretation of the id is a somewhat complex process - see Manual:Magic words for more information.
- Variables - Variables are something of a misnomer. They are bits of wikitext that look like templates but have no parameters and have been assigned hard-coded values. Standard wiki markup such as
{{PAGENAME}}or{{SITENAME}}are examples of variables. They get their name from the source of their value: a php variable or something that could be assigned to a variable, e.g. a string, a number, an expression, or a function return value. - Parser functions - {{functionname: argument 1 | argument 2 | argument 3...}}. Similar to tag extensions, parser functions process arguments and returns a value. Unlike tag extensions, the result of parser functions is wikitext.
- Variables - Variables are something of a misnomer. They are bits of wikitext that look like templates but have no parameters and have been assigned hard-coded values. Standard wiki markup such as
- Ajax - you can use AJAX in your extension to let your JavaScript code interact with your server side extension code, without the need to reload the page.
[edit] См. также
- Extension Matrix
- Category:Extensions/ru
- Template:Extension
- Manual:Parser functions
- Manual:Special pages
- Manual:Tag extensions
- Project:Extension requests
- Manual:Translating extensions - информация о переводе расширений на другие языки.
- m:Category:MediaWiki extensions - в процессе переноса на MediaWiki.org.
| Язык: | English • Deutsch • Ελληνικά • Français • Bahasa Indonesia • 日本語 • 한국어 • Polski • Русский |
|---|
| Extensions: | Category • All • Requests • Tag extensions • Extension Matrix • Extensions FAQ • Extension hook registry • Extension namespace registry |
|---|
