Jump to content

މޮޑިއުލް:Main page image

Permanently protected module
ވިކިޕީޑިއާ، މިނިވަން އެކުމާފާނުން
12:04, 25 ޖުލައި 2024 އިން ފެށިގެން EN-Jungwon (ޚިޔާލު ސަފްޙާ | ޙިއްޞާ) (Protected "މޮޑިއުލް:Main page image": Highly visible template ([އުނިއިތުރު ގެންނަވާ=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))) އިށް އިސްލާހުކުރުން
(ފަރަގު) → ކުރީގެ ނުސްހާ | Latest revision (ފަރަގު) | ފަހުގެ ނުސްހާ ← (ފަރަގު)
Documentation icon މޮޑިއުލް ޑޮކިއުމަންޓޭޝަން[create]
local p = {}
local getArgs = require('Module:Arguments').getArgs

function p.width(frame)
	local args = getArgs(frame)
	return p._width(args)
end

function p._width(args)
	local new_width = 140
	local page = mw.title.makeTitle('File', args[1] or '')
	if not page or not page.fileExists then
		return new_width
	end

	new_width = math.floor(140 * math.sqrt(page.file.width / page.file.height) + 0.5)

	return new_width
end

return p