Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:Config external: Difference between revisions

From Obby Wiki
m Protected "Module:Config external" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))
No edit summary
 
(5 intermediate revisions by the same user not shown)
Line 5: Line 5:
             url_form = 'https://discord.com/invite/%s';
             url_form = 'https://discord.com/invite/%s';
             display = 'Discord';
             display = 'Discord';
        };
        ['twitter'] = {
            file = 'External Twitter White Small.png';
            url_form = 'https://twitter.com/%s';
            display = 'Twitter';
        };
        ['bsky'] = {
            file = 'External BlueSky White Small.png';
            url_form = 'https://bsky.app/profile/%s';
            display = 'BlueSky';
        };
        ['roblox'] = {
            file = 'External Roblox White Small.png';
            url_form = 'https://www.roblox.com/users/profile?username=%s';
            display = 'Roblox';
        };
        ['guilded'] = {
            file = 'External Guilded White Small.png';
            url_form = 'https://guilded.gg/%s';
            display = 'Guilded';
        };
        ['youtube'] = {
            file = 'External YouTube White Small.png';
            url_form = 'https://youtube.com/@%s';
            display = 'YouTube';
        };
        ['wiki'] = {
            file = 'External MediaWiki White Small.png';
            url_form = 'https://%s';
            display = 'Wiki';
        };
    };
    platforms = {
        ['phone'] = {
            file = 'Platform Phone White Small.png';
            display = 'Phone';
        };
        ['tablet'] = {
            file = 'Platform Tablet White Small.png';
            display = 'Tablet';
        };
        ['pc'] = {
            file = 'Platform Computer White Small.png';
            display = 'PC';
        };
        ['pc'] = {
            file = 'Platform Computer White Small.png';
            display = 'PC';
        };
        ['console'] = {
            file = 'Platform Console White Small.png';
            display = 'Console (Xbox/PlayStation)';
        };
        ['vr'] = {
            file = 'Platform VR White Small.png';
            display = 'VR';
         };
         };
     };
     };
}
}

Latest revision as of 07:05, 4 April 2025

Documentation for this module may be created at Module:Config external/doc

return {
    media = {
        ['discord'] = {
            file = 'External Discord White Small.png';
            url_form = 'https://discord.com/invite/%s';
            display = 'Discord';
        };
        ['twitter'] = {
            file = 'External Twitter White Small.png';
            url_form = 'https://twitter.com/%s';
            display = 'Twitter';
        };
        ['bsky'] = {
            file = 'External BlueSky White Small.png';
            url_form = 'https://bsky.app/profile/%s';
            display = 'BlueSky';
        };
        ['roblox'] = {
            file = 'External Roblox White Small.png';
            url_form = 'https://www.roblox.com/users/profile?username=%s';
            display = 'Roblox';
        };
        ['guilded'] = {
            file = 'External Guilded White Small.png';
            url_form = 'https://guilded.gg/%s';
            display = 'Guilded';
        };
        ['youtube'] = {
            file = 'External YouTube White Small.png';
            url_form = 'https://youtube.com/@%s';
            display = 'YouTube';
        };
        ['wiki'] = {
            file = 'External MediaWiki White Small.png';
            url_form = 'https://%s';
            display = 'Wiki';
        };
    };

    platforms = {
        ['phone'] = {
            file = 'Platform Phone White Small.png';
            display = 'Phone';
        };

        ['tablet'] = {
            file = 'Platform Tablet White Small.png';
            display = 'Tablet';
        };

        ['pc'] = {
            file = 'Platform Computer White Small.png';
            display = 'PC';
        };

        ['pc'] = {
            file = 'Platform Computer White Small.png';
            display = 'PC';
        };

        ['console'] = {
            file = 'Platform Console White Small.png';
            display = 'Console (Xbox/PlayStation)';
        };

        ['vr'] = {
            file = 'Platform VR White Small.png';
            display = 'VR';
        };
    };
}