Editing
Module:Table empty cell
From Thetacola Wiki
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
local p = {} -- List of default title texts. local defaultTitleTextlist = { ["TBA"] = "To be announced", ["TBD"] = "To be determined", ["N/A"] = "Not available" } -- Local function which is used to retrieve the title text. local function getTitleText(args, altText) local titleText = args[2] or args["title_text"] -- If the title text was manually added, return it. if (titleText) then return titleText end -- The title text was not set, get the correct default text which corresponds to the alt text. for k, v in pairs(defaultTitleTextlist) do if (altText == k) then return v end end end -- Local function which is used to retrieve the alt text. local function getAltText(args) local altText = args[1] or args["alt_text"] if (altText == nil) then altText = "TBA" end return altText end -- Local function which does the actual main process. function p._main(args) local altText = getAltText(args) local titleText = getTitleText(args, altText) return "<small style=\"color: #2C2C2C\" title=\"" .. titleText .. "\">" .. altText .. "</small>" end --[[ Public function which is used to create information for an empty text cell. Parameters: -- |1= or |alt_text= β optional; The text which will be written in the cell. -- |2= or |title_text= β optional; The text which will be shown when hovering over the cell. --]] function p.main(frame) local getArgs = require('Module:Arguments').getArgs; local args = getArgs(frame); return p._main(args) end return p
Summary:
Please note that all contributions to Thetacola Wiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
Project:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Template used on this page:
Module:Table empty cell/doc
(
edit
)
Navigation menu
Page actions
Module
Discussion
Read
Edit source
History
Page actions
Module
Discussion
More
Tools
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Search
Tools
What links here
Related changes
Special pages
Page information