پودمان:EmailTracking
توضیحات پودمان[ایجاد]
در صورت تمایل یک صفحهٔ توضیحات برای این پودمان اسکریبونتو ایجاد کنید. ویرایشگران میتوانند در صفحات تمرین (ایجاد | آینه) و آزمایشی (ایجاد) این پودمان را آزمایش کنند. لطفاً ردهها را به زیرصفحهٔ /توضیحات بیافزایید. زیرصفحههای این پودمان. |
local i = {}
function i.EmailTracking(frame)
local output = '';
local email = frame.args["email"] or '';
if mw.ustring.match(email,'@.*@') ~= nil then
output = '[[' .. 'Category:Listing with multiple email addresses]]<span class="phoneinfo" style="display:none;">MULTIPLE-EMAIL</span>';
end
if mw.title.getCurrentTitle().namespace ~= 0 then
output = '';
end
return output;
end
return i;