Mô đun:EmailTracking
Giao diện

Bạn có thể muốn tạo một trang tài liệu cho mô đun Scribunto này. Biên tập viên sửa đổi có thể thử nghiệm trong các trang chỗ thử (tạo | sao) và trường hợp kiểm thử (tạo) của mô đun này. Các trang con của mô đun này. |
local i = {}
function i.EmailTracking(frame)
local output = '';
local email = frame.args["email"] or '';
if mw.ustring.match(email,'@.*@') ~= nil then
output = '[[' .. 'Thể loại:Địa điểm có nhiều địa chỉ thư điện tử]]<span class="phoneinfo" style="display:none;">MULTIPLE-EMAIL</span>';
end
if mw.title.getCurrentTitle().namespace ~= 0 then
output = '';
end
return output;
end
return i;