Wikipedia
eewiki
https://ee.wikipedia.org/wiki/Axa_do_%C5%8Ag%C9%94
MediaWiki 1.46.0-wmf.24
first-letter
Media
Special
Talk
User
User talk
Wikipedia
Wikipedia talk
File
File talk
MediaWiki
MediaWiki talk
Template
Template talk
Help
Help talk
Category
Category talk
TimedText
TimedText talk
Module
Module talk
Event
Event talk
Template:Databox
10
9343
61579
48830
2026-04-29T11:50:24Z
Danny Benjafield (WMDE)
14860
+ Add new parameter (useImage) to choose displayed image phab:T400318. Add new parameter (excludeProperties) to hide properties on current page phab:T400319.
61579
wikitext
text/x-wiki
{{#invoke:Databox|databox|useImage={{{useImage|}}}|excludeProperties={{{excludeProperties|}}}}}
<noinclude>{{Documentation}}</noinclude>
4e8lawmro6frtxxs4shfjg1lrwkypvp
Module:Databox
828
9344
61580
49154
2026-04-29T11:52:48Z
Danny Benjafield (WMDE)
14860
Add new parameter (useImage) to choose displayed image phab:T400318. Add new parameter (excludeProperties) to hide properties on current page phab:T400319. Add Wikidata Icon + link to connected Item phab:T400322
61580
Scribunto
text/plain
-- A more extensive version is stored and documented at the Swedish Wikipedia site, sv.wikipedia.org/wiki/Modul:Databox
-- It is supposed to work for any language.
-- Properties excluded for all Databoxes in Fulah Wikipedia
local site_excluded_properties = {
'P360', --is a list of
'P4224', --category contains
'P935', -- Commons gallery
'P1472', -- Commons Creator page
'P1612', -- Commons Institution page
'P373', -- Commons category
'P3722', -- Commons maps category
'P1151', -- topic's main Wikimedia portal
'P1424', -- topic's main template
'P910', -- topic's main category
'P1200', -- bodies of water basin category
'P1792', -- category of associated people
'P1464', -- category for people born here
'P1465', -- category for people who died here
'P1791', -- category of people buried here
'P1740', -- category for films shot at this location
'P2033', -- Category for pictures taken with camera
'P2517', -- category for recipients of this award
'P4195', -- category for employees of the organization
'P1754', -- category related to list
'P301', -- category's main topic
'P971', -- category combines topics
'P3876', -- category for alumni of educational institution
'P1753', -- list related to category
'P3921', -- Wikidata SPARQL query equivalent
'P1204', -- Wikimedia portal's main topic
'P1423', -- template's main topic
'P1709', -- equivalent class
'P3950', -- narrower external class
'P2888', -- exact match
'P1382', -- coincident with
'P527', -- has part
'P2670', -- has parts of the class
'P3113', -- does not have part
'P2737', -- union of
'P2738', -- disjoint union of
'P2445', -- metasubclass of
'P1963', -- properties for this type
'P3176', -- uses property
'P1889', -- different from
'P460', -- said to be the same as
'P2959', -- permanent duplicated item
'P2860', -- cites
'P5125', -- wikimedia outline
'P5008', -- on focus list of Wikimedia project
'P2559', -- Wikidata usage instructions
'P1343', -- described by source
'P972', -- catalogu
'P1282', -- OSM tag or key
'P4839', -- Wolfram Language entity code
'P6104', -- Maintained by Wikiproject
'P5996' -- Category for films in this language
}
function valuesToKeys(array)
local result = {}
for _, v in pairs(array) do
result[v] = true
end
return result
end
local p = {}
function p.databox(frame)
local args = frame:getParent().args
local argsLocal = frame.args
local itemId = nil
if args.item then
itemId = args.item
end
local argsLocal = frame.args
local useImage = nil
if argsLocal.useImage then
useImage = argsLocal["useImage"]
end
-- excludeProperties is a local parameter to exclude given properties for a Databox on a specific page
local excludeProperties = {}
if argsLocal.excludeProperties then
for item in string.gmatch(argsLocal.excludeProperties, "[^,]+") do
table.insert(excludeProperties, item)
end
end
local lang = mw.language.getContentLanguage()
local item = mw.wikibase.getEntity(itemId)
if item == nil then
mw.addWarning("Wikidata item not found")
return ""
end
local databoxRoot = mw.html.create('div')
:addClass('infobox')
:css({
float = 'right',
border = '1px solid #aaa',
['max-width'] = '300px',
padding = '0 0.4em',
margin = '0 0 0.4em 0.4em',
})
--Title
databoxRoot:tag('div')
:css({
['text-align'] = 'center',
['background-color'] = '#f5f5f5',
padding = '0.5em 0',
margin = '0.5em 0',
['font-size'] = '120%',
['font-weight'] = 'bold',
})
:wikitext(item:getLabel() or mw.title.getCurrentTitle().text)
--Image
local databoxImage = nil
if useImage and useImage ~= "" then
local allWikidataImages = item:getAllStatements('P18')
if #allWikidataImages >= 1 then
for _, image in ipairs( allWikidataImages ) do
if image.mainsnak.datavalue.value == useImage then
databoxImage = useImage
break
end
end
end
end
if databoxImage == nil then
local bestWikidataImages = item:getBestStatements('P18')
if #bestWikidataImages >= 1 then
databoxImage = bestWikidataImages[1].mainsnak.datavalue.value
end
end
if databoxImage then
databoxRoot
:tag('div')
:wikitext('[[File:' .. databoxImage .. '|frameless|300px]]')
end
--Table
local dataTable = databoxRoot
:tag('table')
:css({
['text-align'] = 'left',
['font-size'] = '90%',
['word-break'] = 'break-word',
['width'] = '100%',
['table-layout'] = 'fixed',
})
dataTable:tag('caption')
:addClass('notheme')
:css({
['background-color'] = '#f5f5f5',
['font-weight'] = 'bold',
['margin-top'] = '0.2em',
})
:wikitext(item:formatStatements('P31').value)
local properties = mw.wikibase.orderProperties(item:getProperties())
local site_excluded_properties_hash = valuesToKeys(site_excluded_properties)
site_excluded_properties_hash['P31'] = true --Special property
local excludeProperties_hash = valuesToKeys(excludeProperties)
local edit_message = mw.message.new('vector-view-edit'):plain()
for _, property in pairs(properties) do
local datatype = item.claims[property][1].mainsnak.datatype
local valueCount = #item:getBestStatements(property)
if datatype ~= 'commonsMedia' and datatype ~= 'external-id' and datatype ~= 'quantity' and datatype ~= 'wikibase-property' and datatype ~= 'geo-shape' and datatype ~= 'tabular-data' and not site_excluded_properties_hash[property] and not excludeProperties_hash[property] and valueCount > 0 and valueCount <= 5 then
local propertyValue = item:formatStatements(property)
dataTable:tag('tr')
:tag('th')
:attr('scope', 'row')
:wikitext(lang:ucfirst(propertyValue.label)):done()
:tag('td')
:wikitext(frame:preprocess(propertyValue.value))
:wikitext(' [[File:OOjs UI icon edit-ltr.svg|' .. edit_message .. '|12px|baseline|class=noviewer skin-invert|link=https://www.wikidata.org/wiki/' .. item.id .. '#' .. property .. ']]')
end
end
--Map
local coordinates_statements = item:getBestStatements('P625')
if #coordinates_statements >= 1 and coordinates_statements[1].mainsnak.datavalue and coordinates_statements[1].mainsnak.datavalue.value.globe == 'http://www.wikidata.org/entity/Q2' then
--We build the call to mapframe
local latitude = coordinates_statements[1].mainsnak.datavalue.value.latitude
local longitude = coordinates_statements[1].mainsnak.datavalue.value.longitude
local geojson = {
type = 'Feature',
geometry = {
type = 'Point',
coordinates = { longitude, latitude }
},
properties = {
title = item:getLabel() or mw.title.getCurrentTitle().text,
['marker-symbol'] = 'marker',
['marker-color'] = '#224422',
}
}
databoxRoot:wikitext(frame:extensionTag('mapframe', mw.text.jsonEncode(geojson), {
height = 300,
width = 300,
frameless = 'frameless',
align = 'center',
latitude = latitude,
longitude = longitude,
zoom = zoom
}))
end
--Wikidata Link
databoxRoot:tag('div')
:css({
['display'] = 'flex',
padding = '0.3em 0',
['width'] = '100%',
['font-size'] = '90%',
})
:addClass('databox-from-wikidata-link')
:wikitext(' [[File:Wikidata-logo.svg|22px|class=noviewer|link=https://www.wikidata.org/wiki/' .. item.id .. ']]')
:tag('div')
:css({
margin = '0.05em 0 0 0',
})
:wikitext(' [[d:' .. item.id .. '|<span title="The information in this section originates from Wikidata. Click to visit this article\'s Wikidata page">From Wikidata</span>]]')
return tostring(databoxRoot)
end
return p
q6w5yi8of6n87ug6ahvcndo0dz4ezni
61581
61580
2026-04-29T11:53:08Z
Danny Benjafield (WMDE)
14860
- typo
61581
Scribunto
text/plain
-- A more extensive version is stored and documented at the Swedish Wikipedia site, sv.wikipedia.org/wiki/Modul:Databox
-- It is supposed to work for any language.
-- Properties excluded for all Databoxes in Ewe Wikipedia
local site_excluded_properties = {
'P360', --is a list of
'P4224', --category contains
'P935', -- Commons gallery
'P1472', -- Commons Creator page
'P1612', -- Commons Institution page
'P373', -- Commons category
'P3722', -- Commons maps category
'P1151', -- topic's main Wikimedia portal
'P1424', -- topic's main template
'P910', -- topic's main category
'P1200', -- bodies of water basin category
'P1792', -- category of associated people
'P1464', -- category for people born here
'P1465', -- category for people who died here
'P1791', -- category of people buried here
'P1740', -- category for films shot at this location
'P2033', -- Category for pictures taken with camera
'P2517', -- category for recipients of this award
'P4195', -- category for employees of the organization
'P1754', -- category related to list
'P301', -- category's main topic
'P971', -- category combines topics
'P3876', -- category for alumni of educational institution
'P1753', -- list related to category
'P3921', -- Wikidata SPARQL query equivalent
'P1204', -- Wikimedia portal's main topic
'P1423', -- template's main topic
'P1709', -- equivalent class
'P3950', -- narrower external class
'P2888', -- exact match
'P1382', -- coincident with
'P527', -- has part
'P2670', -- has parts of the class
'P3113', -- does not have part
'P2737', -- union of
'P2738', -- disjoint union of
'P2445', -- metasubclass of
'P1963', -- properties for this type
'P3176', -- uses property
'P1889', -- different from
'P460', -- said to be the same as
'P2959', -- permanent duplicated item
'P2860', -- cites
'P5125', -- wikimedia outline
'P5008', -- on focus list of Wikimedia project
'P2559', -- Wikidata usage instructions
'P1343', -- described by source
'P972', -- catalogu
'P1282', -- OSM tag or key
'P4839', -- Wolfram Language entity code
'P6104', -- Maintained by Wikiproject
'P5996' -- Category for films in this language
}
function valuesToKeys(array)
local result = {}
for _, v in pairs(array) do
result[v] = true
end
return result
end
local p = {}
function p.databox(frame)
local args = frame:getParent().args
local argsLocal = frame.args
local itemId = nil
if args.item then
itemId = args.item
end
local argsLocal = frame.args
local useImage = nil
if argsLocal.useImage then
useImage = argsLocal["useImage"]
end
-- excludeProperties is a local parameter to exclude given properties for a Databox on a specific page
local excludeProperties = {}
if argsLocal.excludeProperties then
for item in string.gmatch(argsLocal.excludeProperties, "[^,]+") do
table.insert(excludeProperties, item)
end
end
local lang = mw.language.getContentLanguage()
local item = mw.wikibase.getEntity(itemId)
if item == nil then
mw.addWarning("Wikidata item not found")
return ""
end
local databoxRoot = mw.html.create('div')
:addClass('infobox')
:css({
float = 'right',
border = '1px solid #aaa',
['max-width'] = '300px',
padding = '0 0.4em',
margin = '0 0 0.4em 0.4em',
})
--Title
databoxRoot:tag('div')
:css({
['text-align'] = 'center',
['background-color'] = '#f5f5f5',
padding = '0.5em 0',
margin = '0.5em 0',
['font-size'] = '120%',
['font-weight'] = 'bold',
})
:wikitext(item:getLabel() or mw.title.getCurrentTitle().text)
--Image
local databoxImage = nil
if useImage and useImage ~= "" then
local allWikidataImages = item:getAllStatements('P18')
if #allWikidataImages >= 1 then
for _, image in ipairs( allWikidataImages ) do
if image.mainsnak.datavalue.value == useImage then
databoxImage = useImage
break
end
end
end
end
if databoxImage == nil then
local bestWikidataImages = item:getBestStatements('P18')
if #bestWikidataImages >= 1 then
databoxImage = bestWikidataImages[1].mainsnak.datavalue.value
end
end
if databoxImage then
databoxRoot
:tag('div')
:wikitext('[[File:' .. databoxImage .. '|frameless|300px]]')
end
--Table
local dataTable = databoxRoot
:tag('table')
:css({
['text-align'] = 'left',
['font-size'] = '90%',
['word-break'] = 'break-word',
['width'] = '100%',
['table-layout'] = 'fixed',
})
dataTable:tag('caption')
:addClass('notheme')
:css({
['background-color'] = '#f5f5f5',
['font-weight'] = 'bold',
['margin-top'] = '0.2em',
})
:wikitext(item:formatStatements('P31').value)
local properties = mw.wikibase.orderProperties(item:getProperties())
local site_excluded_properties_hash = valuesToKeys(site_excluded_properties)
site_excluded_properties_hash['P31'] = true --Special property
local excludeProperties_hash = valuesToKeys(excludeProperties)
local edit_message = mw.message.new('vector-view-edit'):plain()
for _, property in pairs(properties) do
local datatype = item.claims[property][1].mainsnak.datatype
local valueCount = #item:getBestStatements(property)
if datatype ~= 'commonsMedia' and datatype ~= 'external-id' and datatype ~= 'quantity' and datatype ~= 'wikibase-property' and datatype ~= 'geo-shape' and datatype ~= 'tabular-data' and not site_excluded_properties_hash[property] and not excludeProperties_hash[property] and valueCount > 0 and valueCount <= 5 then
local propertyValue = item:formatStatements(property)
dataTable:tag('tr')
:tag('th')
:attr('scope', 'row')
:wikitext(lang:ucfirst(propertyValue.label)):done()
:tag('td')
:wikitext(frame:preprocess(propertyValue.value))
:wikitext(' [[File:OOjs UI icon edit-ltr.svg|' .. edit_message .. '|12px|baseline|class=noviewer skin-invert|link=https://www.wikidata.org/wiki/' .. item.id .. '#' .. property .. ']]')
end
end
--Map
local coordinates_statements = item:getBestStatements('P625')
if #coordinates_statements >= 1 and coordinates_statements[1].mainsnak.datavalue and coordinates_statements[1].mainsnak.datavalue.value.globe == 'http://www.wikidata.org/entity/Q2' then
--We build the call to mapframe
local latitude = coordinates_statements[1].mainsnak.datavalue.value.latitude
local longitude = coordinates_statements[1].mainsnak.datavalue.value.longitude
local geojson = {
type = 'Feature',
geometry = {
type = 'Point',
coordinates = { longitude, latitude }
},
properties = {
title = item:getLabel() or mw.title.getCurrentTitle().text,
['marker-symbol'] = 'marker',
['marker-color'] = '#224422',
}
}
databoxRoot:wikitext(frame:extensionTag('mapframe', mw.text.jsonEncode(geojson), {
height = 300,
width = 300,
frameless = 'frameless',
align = 'center',
latitude = latitude,
longitude = longitude,
zoom = zoom
}))
end
--Wikidata Link
databoxRoot:tag('div')
:css({
['display'] = 'flex',
padding = '0.3em 0',
['width'] = '100%',
['font-size'] = '90%',
})
:addClass('databox-from-wikidata-link')
:wikitext(' [[File:Wikidata-logo.svg|22px|class=noviewer|link=https://www.wikidata.org/wiki/' .. item.id .. ']]')
:tag('div')
:css({
margin = '0.05em 0 0 0',
})
:wikitext(' [[d:' .. item.id .. '|<span title="The information in this section originates from Wikidata. Click to visit this article\'s Wikidata page">From Wikidata</span>]]')
return tostring(databoxRoot)
end
return p
pt7yfftft51fmi3b4snzglepkm2v098
Oluranti Adebule
0
11158
61577
59933
2026-04-29T03:44:04Z
InternetArchiveBot
12362
Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.5
61577
wikitext
text/x-wiki
Idiat Oluranti Adebule (wodzi le 27 November 1970) nye Nigeriatɔ agbalẽŋlɔla, sukununyala kple dunyahela<ref>WARDC (4 May 2017). [https://wardcnigeria.org/profile-of-dr-idiat-oluranti-adebule/ "Profile of Dr Idiat Oluranti Adebule".] ''WARDC''. Retrieved 23 June 2024.</ref> si nye sewɔtakpekpe me tɔ si le Lagos Ɣetoɖoƒe sewɔtakpekpe ƒe nuto teƒe tso ƒe 2023 me.<ref>Daramola, Kunle (2 March 2023). [https://www.thecable.ng/full-list-apc-wins-lagos-senatorial-elections-20-of-24-house-of-reps-seats/amp "FULL LIST: APC wins Lagos senatorial elections, 20 of 24 house of reps seats"]. ''The Cable''. Retrieved 11 March 2023.</ref><ref>Akoni, Olasunkanmi (28 February 2023). [https://www.vanguardngr.com/2023/02/apc-clears-3-senate-seats-wins-20-of-24-reps-seats-in-lagos/amp/ "APC clears 3 senate seats, wins 20 of 24 Reps seats in Lagos"]. ''Vanguard''. Retrieved 11 March 2023.</ref><ref>[https://web.archive.org/web/20240623222643/https://orderpaper.ng/voter/10th-national-assembly-member?id=Adebule-Idiat-Oluranti-683 "10th National Assembly Members - Voter - Validating the Office of the Electorate on Representation"]. ''orderpaper.ng''. Retrieved 23 June 2024.</ref> <ref>[https://guardian.ng/tag/idiat-oluranti-adebule/ "Idiat Oluranti Adebule Archives".] ''Guardian Nigeria News''. Retrieved 23 June 2024.</ref><ref>[https://www.shineyoureye.org/person/oluranti-idiat-adebule "ShineYourEye"]. ''www.shineyoureye.org''. Retrieved 23 June 2024.</ref> Tsã la, enye Lagos Nutome ƒe nutodziɖula teƒenɔla 15 lia eye wònye nyɔnu adelia si xɔ dɔa tso ƒe 2015 va ɖo ƒe 2019.<ref>[http://guardian.ng/features/education/adebule-lauds-bafs-intervention-at-yaba-school/ "Adebule lauds BAF's intervention at Yaba school"]. ''guardian.ng''. 7 July 2016. Retrieved 28 November 2016.</ref><ref>[https://thenationonlineng.net/ex-lagos-deputy-governor-in-celebration-mood/ "Ex-Lagos deputy governor in celebration mood"]. ''Latest Nigeria News, Nigerian Newspapers, Politics''. 29 November 2019. Retrieved 22 April 2021.</ref><ref>[https://www.vanguardngr.com/2019/05/i-never-expected-to-be-lagos-dep-gov-adebule/ "I never expected to be Lagos Dep. Gov. – Adebule"]. ''Vanguard News''. 23 May 2019. Retrieved 9 August 2022.</ref><ref>Nigeria, Media (4 June 2018). [https://www.medianigeria.com/biography-of-oluranti-adebule/ "Biography Of Senator Oluranti Adebule"]. ''Media Nigeria''. Retrieved 21 January 2024.</ref>
== Nya siawo ƒe tsoƒe ==
<references />
1v2kjmzm4mhgeleykvpverksm07v88m
Roseline Konya
0
11216
61578
61379
2026-04-29T03:53:19Z
InternetArchiveBot
12362
Rescuing 3 sources and tagging 0 as dead.) #IABot (v2.0.9.5
61578
wikitext
text/x-wiki
{{Databox}}
'''Roseline Sonayee Konya''' nye [[:en:Nigerians|Nigeriatɔ]] agbalẽnyala kple dunyahela tso [[:en:Khana,_Rivers_State|Khana, Rivers State]]. Enye Aɖiŋutinunya kple Atikeŋutinunya ƒe nufialagã le [[:en:University_of_Port_Harcourt|University of Port Harcourt]].<ref>"[https://web.archive.org/web/20160430071643/http://uniport.edu.ng/news/featured/556-presidential-awards.html Konya Calls For Environmental Stewardship In Nigeria]". ''[[:en:University_of_Port_Harcourt|University of Port Harcourt]]''. Retrieved 17 June 2016.</ref><ref>Davies Iheamnachor (28 April 2015). "T[http://www.vanguardngr.com/2015/04/toxicologists-raise-alarm-over-pollutants-in-n-delta-communities/ oxicologists raise alarm over pollutants in N-Delta communities Calls]". [[:en:Vanguard_(Nigeria)|''Vanguard''. Lagos]], Nigeria. Retrieved 17 June 2016.</ref> Ewɔ dɔ abe Nutomenyawo Gbɔkpɔha ƒe Dɔdzikpɔla<ref>"'[https://guardian.ng/saturday-magazine/cover/government-agencies-others-fuelling-air-pollution-in-port-harcourt/ Government agencies, others fuelling air pollution in Port Harcourt]'". ''[[:en:The_Guardian_(Nigeria)|The Guardian]]''. Lagos, Nigeria. 27 May 2018. Retrieved 7 April 2022.</ref> le Dukplɔla [[:en:Peter_Odili|Peter Odili]] ƒe dziɖuɖumegãwo me eye wogaɖoe ɖe dɔwɔƒe ma ke le Dukplɔla Ezenwo Nyesom Wike ƒe dziɖuɖumegãwo dome.<ref>John Ighodaro (4 April 2005). "[http://allafrica.com/stories/200504041179.html Odili Sets Up Committee to Study Ataba Crisis Report]". ''[[:en:Vanguard_(Nigeria)|Vanguard]]''. Retrieved 17 June 2016 – via [[:en:AllAfrica|AllAfrica]].</ref> Enye Dudɔnunɔlawo ƒe [[:en:Civil_service_commission|Civil Service Commission]] ƒe 1997.<ref>"[https://web.archive.org/web/20220927114551/https://litcaf.com/konya-roseline/ Konya Roseline]". ''LitCaf''. 20 August 2020. Retrieved 21 March 2022.</ref>
== Nusiwo dzɔ va yi kple sukudede ==
Wodzii le Buan, Khana Nutome Dziɖuɖunutome le [[:en:Rivers_State|Rivers State]], [[Naidzeria|Nigeria]]. [[:en:Professor|Nufialagã]] Konya de St Arthur ƒe Anglikan Gɔmedzesuku, Buan, tso afima yi Mercy Sekɛndrisuku, Okigwe (le egbegbe [[:en:Imo_State|Imo State]], Nigeria) hena eƒe sekɛndrisuku. Gake Nigeria Dukɔmeviʋa si dze egɔme le ƒe 1967 ƒe nuwuwu la gblẽ esia me. Le ƒe 1968 me, esime aʋaa gakpɔtɔ nɔ edzi yim la, eŋlɔ ŋkɔ ɖe Holy Rosary Sekɛndrisuku, [[:en:Port_Harcourt|Port Harcourt]], afisi wòyi eƒe sekɛndrisukudede dzi le vaseɖe ƒe 1969 me. Tso ƒe 1970 va ɖo ƒe 1971 me la, ewɔ nusɔsrɔ̃ hena eƒe A-level le St. Anne ƒe Suku, Ibadan, tso afima yi ŋgɔ yi The Council for National Academic Awards (CNAA), UK, afisi wòxɔ eƒe B.Sc. le Dzɔdzɔmeŋutinunya me le ƒe 1976 me eye wòxɔ master ƒe ɖaseɖigbalẽ le [[:en:Loughborough_University|Loughborough Yunivɛsiti]] le ƒe 1977 me. Le ƒe 1984 me la, Konya wu eƒe Ðɔkta ƒe Diplome ƒe ɖoɖoa nu le [[:en:Brunel_University_London|Brunel Yunivɛsiti, London]].
== Dᴐwᴐna ==
Konya dze eƒe dɔ gɔme abe Nufiala ƒe Kpeɖeŋutɔ le [[:en:University_of_Port_Harcourt|University of Port Harcourt]] le ƒe 1979 me, emegbe eʋu yi [[:en:Brunel_University_London|Brunel]] University, U.K afisi wòxɔ eƒe Ph.D. Etrɔ yi Nigeria le ƒe 1984 me eye wòyi edzi nye nufiala le Port Harcourt Yunivɛsiti. Hafi woaɖoe Rivers Dukɔa ƒe Nutomenyawo Gbɔkpɔha ƒe Dɔdzikpɔla la, enɔ ɖoƒe geɖewo eye esiawo dometɔ aɖewoe nye:
* Chairman, Protocol Subcommittee of Convocation Committee (1990)
* Director, Delta Rubber Company (1991–1993)<ref>Babah, Chinedu (2 March 2017). "[https://blerf.org/index.php/biography/konya-dr-mrs-roseline-s/ KONYA, Dr. (Mrs.) Roseline S]". ''Biographical Legacy and Research Foundation''. Retrieved 12 April 2022.</ref>
* Commissioner, Civil Service Commission (1993–1996)
* Chairman, Civil Service Commission (1997–1999)
* HOD, Animal and Environmental Biology Department (2001–2003)
* Member, Academic Advisory Board, Institute of Petroleum Studies (IPS)
* Dean, School of Graduate Studies
* Pioneer Provost, School of Graduate Studies
Le ƒe 2003 me la, wodo Konya ɖe ŋgɔ wòzu Lãwo Kple Nutomeŋutinunya Nufialagã.
Enye zimenɔla na, Mɔ̃ɖaŋu Kɔmiti si kpɔa Rivers Dukɔa ƒe Dziɖuɖu ƒe Nyatakaka si ku ɖe Soot ŋu ƒe Aɖaŋuɖoɖowo dzi.<ref>"[https://punchng.com/rivers-govt-sets-up-committee-to-tackle-soot/ Rivers govt sets up committee to tackle soot]". ''[[:en:The_Punch|The Punch]]''. 17 May 2019. Retrieved 12 April 2022.</ref><ref>Isangedighi, Iyanam (18 May 2019). "[https://www.today.ng/news/nigeria/rivers-government-sets-technical-committee-tackle-soot-220992 Rivers government sets up a technical committee to tackle soot]". TODAY. Retrieved 12 April 2022.</ref><ref>Yakubu, Okhumode H. (January 2018). "[[doi:10.3390/environments5010002|Particle (Soot) Pollution in Port Harcourt Rivers State, Nigeria—Double Air Pollution Burden? Understanding and Tackling Potential Environmental Public Health Impacts]]". ''Environments''. '''5''' (1): 2.</ref>
== Awards ==
* Kplɔla Xɔŋkɔwo ƒe Kafukafu le Nutome Mɔ̃ɖaŋununya me si Britaintɔwo ƒe Asitsahabɔbɔ na tsɔ de dzesi nusiwo wowɔ nyuie kple kplɔlanyenye ƒe ŋkɔxɔxɔ le ƒe 2004 me.
*Woyɔ eƒe ŋkɔ le WHO IS WHO for Excellence in Management Intelligence Special Merit Award me le October, 2008 me
*Merit Award si Lãwo kple Nutome Nu Gbagbewo Ŋuti Nusrɔ̃lawo ƒe Habɔbɔ na abe Nufiala Ðeɖedzesitɔ ene - September, 2010
*Kafukafu si tso Post Graduate School (CDPGS) ƒe Deans kple Provosts Kɔmiti gbɔ le Nigeria – December, 2012
== Ame ŋutɔ ƒe agbenɔnɔ ==
Roseline Konya ɖe Barido Konya si megali o,<ref>"[https://web.archive.org/web/20220927114551/https://litcaf.com/konya-roseline/ Konya Roseline]". ''LitCaf''. 20 August 2020. Retrieved 29 August 2022.</ref> eye wòdzi vi etɔ̃.<ref>"[https://web.archive.org/web/20220927114551/https://litcaf.com/konya-roseline/ Konya Roseline]". ''LitCaf''. 20 August 2020. Retrieved 29 August 2022.</ref>
Enye Methodist Knights Council – Port Harcourt Archdiocese ƒe zimenɔla mɔɖela; kple nyɔnu Methodist Knight gbãtɔ le Rivers kple Bayelsa States.<ref>Admin. "[https://web.archive.org/web/20240901125052/https://www.uniport.edu.ng/files/123InaugurlProfKonya.pdf Roseline Konya]" (PDF). ''UNIPORT.edu.ng''. Retrieved 1 September 2024.</ref>
== Nusiwo ŋu woke ɖo ==
7tl6zypdrutdk7uh5cvth7hqb9n4eks