Module:CareerList/config: Difference between revisions

From Porn Base Central
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
local config = {}
return {

-- Конфигурация для сайта example.com
bromo = {
config.Bromo = {
type = "Website",
name = 'Pornosite PBC', -- Название сайта
name = "Porno Andreya",
type = 'Website', -- Тип сайта (Website или Studio)
url = 'https://example.com/$1', -- Шаблон ссылки на страницу
url = "https://www.example1.com/a/$1/b.html"
},
-- Конфигурация для сайта studio.example.com
studioexample = {
name = 'Example Studio', -- Название студии
type = 'Studio', -- Тип сайта (Website или Studio)
url = 'https://studio.example.com/$1', -- Шаблон ссылки на страницу
},
-- Конфигурация для сайта example2.com
example2 = {
name = 'Example Site 2', -- Название сайта
type = 'Website', -- Тип сайта (Website или Studio)
url = 'https://example2.com/$1', -- Шаблон ссылки на страницу
},
}
}

config.Example2 = {
type = "Studio",
name = "Example Studio 2",
url = "https://www.example2.com/a/$1/b.html"
}

return config

Revision as of 01:09, 13 March 2023

Documentation for this module may be created at Module:CareerList/config/doc

local config = {}

config.Bromo = {
    type = "Website",
    name = "Porno Andreya",
    url = "https://www.example1.com/a/$1/b.html"
}

config.Example2 = {
    type = "Studio",
    name = "Example Studio 2",
    url = "https://www.example2.com/a/$1/b.html"
}

return config