تضامنًا مع حق الشعب الفلسطيني |
وحدة:Wikibase
هذه الوحدة تم نسخها من المثال من صفحة توثيق الوحدة في mw:Extension:Wikibase Client/Lua. ويجب أن تبقى متسقة مع تلك الصفحة.
الاستخدام
- معرف
{{#invoke: Wikibase | id }}
- تسمية
{{#invoke: Wikibase | label }}
{{#invoke: Wikibase | label | entity id (Q# or P#) }}
- وصف
{{#invoke: Wikibase | description }}
{{#invoke: Wikibase | description | entity id (Q# or P#) }}
- صفحة
{{#invoke: Wikibase | page }}
{{#invoke: Wikibase | page | item id (Q#) }}
- نوع البيانات
{{#invoke: Wikibase | datatype | property id (P#) }}
أمثلة
معرف
{{#invoke:Wikibase | id }}
ينتج ← no entity
تسمية
{{#invoke:Wikibase | label }}
ينتج ←{{#invoke:Wikibase | label | Q132689 }}
ينتج ←{{#invoke:Wikibase | label | P31 }}
ينتج ←
وصف
{{#invoke:Wikibase | description }}
ينتج ←{{#invoke:Wikibase | description | Q132689 }}
ينتج ←{{#invoke:Wikibase | description | P31 }}
ينتج ←
صفحة
{{#invoke:Wikibase | page }}
ينتج ←{{#invoke:Wikibase | page | Q132689 }}
ينتج ←
نوع البيانات
ملف وسائط من كومنز: (P18)
{{#invoke:Wikibase | datatype | P18 }}
ينتج ←{{#invoke:Wikibase | datatype | Property:P18 }}
ينتج ←
إحداثيات جغرافية: (P625)
{{#invoke:Wikibase | datatype | P625 }}
ينتج ←{{#invoke:Wikibase | datatype | Property:P625 }}
ينتج ←
عنصر: (P6)
{{#invoke:Wikibase | datatype | P6 }}
ينتج ←{{#invoke:Wikibase | datatype | Property:P6 }}
ينتج ←
خاصية: (P1647)
{{#invoke:Wikibase | datatype | P1647 }}
ينتج ←{{#invoke:Wikibase | datatype | Property:P1647 }}
ينتج ←
نص: (P225)
{{#invoke:Wikibase | datatype | P225 }}
ينتج ←{{#invoke:Wikibase | datatype | Property:P225 }}
ينتج ←
نص بلغة وحيدة: (P1448)
{{#invoke:Wikibase | datatype | P1448 }}
ينتج ←{{#invoke:Wikibase | datatype | Property:P1448 }}
ينتج ←
كمية: (P1082)
{{#invoke:Wikibase | datatype | P1082 }}
ينتج ←{{#invoke:Wikibase | datatype | Property:P1082 }}
ينتج ←
نقطة زمنية: (P569)
{{#invoke:Wikibase | datatype | P569 }}
ينتج ←{{#invoke:Wikibase | datatype | Property:P569 }}
ينتج ←
المسار: (P856)
{{#invoke:Wikibase | datatype | P856 }}
ينتج ←{{#invoke:Wikibase | datatype | Property:P856 }}
ينتج ←
تعبير رياضي: (P2534)
{{#invoke:Wikibase | datatype | P2534 }}
ينتج ←{{#invoke:Wikibase | datatype | Property:P2534 }}
ينتج ←
معرف خارجي: (P212)
{{#invoke:Wikibase | datatype | P212 }}
ينتج ←{{#invoke:Wikibase | datatype | Property:P212 }}
ينتج ←
---------- Module:Wikibase ----------------
local p = {}
function p.getEntityObject(id)
if not mw.wikibase then return nil end
entity = mw.wikibase.getEntityObject(id)
return entity
end
-- Return the item ID of the item linked to the current page.
function p.id(frame)
if not mw.wikibase then return nil end
entity = mw.wikibase.getEntityObject()
if entity == nil then
return "no entity"
end
return entity.id
end
-- Return the label of a given data item, or of connected page
-- if no argument is provided to this method.
function p.label(frame)
if not mw.wikibase then return nil end
if frame.args[1] == nil then
entity = mw.wikibase.getEntityObject()
if not entity then return nil end
id = entity.id
else
id = mw.text.trim(frame.args[1])
end
return mw.wikibase.label( id )
end
-- Return the description of a given data item, or of connected page
-- if no argument is provided to this method.
function p.description(frame)
if not mw.wikibase then return nil end
if frame.args[1] == nil then
entity = mw.wikibase.getEntityObject()
if not entity then return nil end
id = entity.id
else
id = mw.text.trim(frame.args[1])
end
return mw.wikibase.description( id )
end
-- Return the local page about a given data item, or of connected page
-- if id is not specified.
function p.page(frame)
if not mw.wikibase then return nil end
if frame.args[1] == nil then
entity = mw.wikibase.getEntityObject()
if not entity then return nil end
id = entity.id
else
id = mw.text.trim(frame.args[1])
end
return mw.wikibase.sitelink( id )
end
-- Return the data type of a property
function p.datatype(frame)
if not mw.wikibase then return nil end
if frame.args[1] and string.find(frame.args[1], "Property:P") then
if mw.wikibase.getEntityObject(string.gsub(frame.args[1], "Property:P", "P")) then
return mw.wikibase.getEntityObject(string.gsub(frame.args[1], "Property:P", "P") ).datatype
end
elseif frame.args[1] and string.find(frame.args[1], "P") then
if mw.wikibase.getEntityObject(frame.args[1]) then
return mw.wikibase.getEntityObject(frame.args[1]).datatype
end
end
end
return p