Extension:AddPersonalUrls/th
AddPersonalUrls Release status: stable |
|
---|---|
Implementation | MyWiki , Skin |
Description | Add some items to the personal URLs. |
Author(s) | RV1971 (RV1971คุย) |
Latest version | 1.2.1 (2018-12-19) |
Compatibility policy | Snapshots releases along with MediaWiki. Master is not backward compatible. |
MediaWiki | 1.30+ |
PHP | 5.4 |
License | GNU General Public License 3.0 or later |
Download | |
|
|
Quarterly downloads | 5 (Ranked 127th) |
Translate the AddPersonalUrls extension if it is available at translatewiki.net | |
Issues | Open tasks · Report a bug |
The AddPersonalUrls extension adds some items to the personal URLs (the links which in the Vector skin are located near the top of the screen). While it is totally configurable, it comes with a default configuration that adds the following:
- A link to the list to all subpages of the user's home page.
- Links to subpages Home, Favorites, Sandbox and Notes of the user's home page.
At the beginning, the new subpages are filled with a configurable default text explaining their purpose. Each user can edit them according to personal needs.
Installation
- ดาวน์โหลดและวางไฟล์ลงในไดเร็กทอรีที่ชื่อ
AddPersonalUrls
ในโฟลเดอร์extensions/
ของคุณ
Developers and code contributors should install the extension from Git instead, using:cd extensions/
git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/AddPersonalUrls - เพิ่มโค้ดต่อไปนี้ไว้ที่ด้านล่างของ LocalSettings.php ของคุณ:
wfLoadExtension( 'AddPersonalUrls' );
- สำเร็จ – ตรวจสอบที่ Special:Version บนวิกิของคุณเพื่อตรวจการติดตั้งส่วนขยาย
Configuration
Table of URLs
The additional URLs are defined in extension.json
, and you may customize them by overriding or adding items in $wgAddPersonalUrlsTable
in your LocalSettings.php
.
The table is an array where each entry assigns an ID to a (partial) URL as follows:
- URLs are inserted after the link to the user's home page, in the order in which they appear in the array.
- Items where the URL is set to NULL are ignored. This allows to deactivate in
LocalSettings.php
items defined inextension.json
. - The ID is the name of a system message used to display the link. AddPersonalUrls is shipped with default messages (in the languages de, en, fr and it) for the links in the default
$wgAddPersonalUrlsTable
. - The URL is either a page name (without brackets), optionally followed by a '?' and a query string, or an external link. A URL is recognized an external link if it contains the string '://'. I'm sure you'll find a better way, so please let me know your ideas.
- The string
$username
will be replaced with the current username. Note that inLocalSettings.php
, you need to write the URL within single quotes to avoid that PHP already interprets$username
while processingLocalSettings.php
, in which case it would evaluate to an empty string.
The default content of $wgAddPersonalUrlsTable
is currently as follows:
$wgAddPersonalUrlsTable = array(
'addpersonalurls-userpages'
=> 'Special:PrefixIndex?prefix=$username&namespace=2',
'addpersonalurls-home' => 'Special:Mypage/Home',
'addpersonalurls-favorites' => 'Special:Mypage/Favorites',
'addpersonalurls-sandbox' => 'Special:Mypage/Sandbox',
'addpersonalurls-notes' => 'Special:Mypage/Notes'
);
Messages
Since the extension defines a lot of messages which are constantly evolving with further development, they are not documented here.
Please refer to i18n/qqq.json
.
When a personal page does not exist, the URL opens the page for editing, and the content of the system messages ID-preload and addpersonalurls-preload is preloaded. This will also work for any URLs you add, provided that ID is equal to addpersonalurls-subpage_title_in_lowercase.
CSS
In the resulting HTML code, each link is wrapped into an <li> element having an id attribute with value pt-ID
.
This is a feature provided by MediaWiki and allows to format personal URLs individually via CSS.
The AddPersonalUrls extension uses this feature to add icons, taken from the Wikicommons Nuvola icons, to the new links as well as to the existing ones provided by MediaWiki. You can override this with your own CSS.
Release notes
These are the release notes for version 1.2.1. See Extension:AddPersonalUrls/History for older releases.
Configuration changes
Allow to deactivate in $wgAddPersonalUrlsTable
items predefined in extension.json
.