Tabelas de Moderação
Fórum dos Fóruns :: Ajuda e atendimento ao utilizador :: Questões sobre códigos :: Questões resolvidas sobre códigos Javascript e jQuery
Página 1 de 1 • Compartilhe
Tabelas de Moderação
Detalhes da questão
Endereço do fórum: http://jogosemaisjogos.forumeiros.com
Versão do fórum: phpBB3
Descrição
É possível criar tabelas de moderação parecidas com estas (http://prntscr.com/ka2uye) com:
- Código:
[table class="bloqueado"][/table]
OU
- Código:
<div class="bloqueado"></div>
Última edição por Roger123 em 24.07.18 15:07, editado 1 vez(es)
Convidado- Convidado
Re: Tabelas de Moderação
Olá @Roger123,
Adicione no seu CSS:
Cordialmente,
pedxz
Tópico movido de 'Questões sobre códigos' para 'Questões sobre a aparência do fórum'
Adicione no seu CSS:
- Código:
.bloqueado {
background-color: #F5AE42;
border: solid 2px #F5AE42;
color: #fff;
border-radius: 2px;
margin: 1em 25px 1em 1em;
padding: 15px;
display: block;
}
Cordialmente,
pedxz
Tópico movido de 'Questões sobre códigos' para 'Questões sobre a aparência do fórum'
tikky- Admineiro
- Membro desde : 13/01/2017
Mensagens : 7962
Pontos : 9217
Re: Tabelas de Moderação
Demo:
Estilo
Mensagem moderativa. |
- Código:
[table style="background-color: #F5AE42;
border: solid 2px #F5AE42;
border-radius: 2px;
margin: 1em 25px 1em 1em;
min-width: 100%!important;"]
[tr style=][td class="fa fa-archive" style="font-size: 25px;
margin-right: 15px;padding: 15px!important;color: white"][/td]
[td style="width: 100%;color: white"]Mensagem moderativa.[/td]
[/tr]
[/table]
Estilo
- Código:
.bloqueado {
background-color: #F5AE42;
border: solid 2px #F5AE42;
border-radius: 2px;
padding: 1em;
margin: 1em 25px 1em 1em;
min-width: 90%!important;
}
.bloqueado td {
color: white;
width: 90%;
}
tikky- Admineiro
- Membro desde : 13/01/2017
Mensagens : 7962
Pontos : 9217
Re: Tabelas de Moderação
Obrigado! Pode editar o JS?
Todos os títulos com h4. (Mesmas cores (tabelas, texto branco), exceto o bloqueado (cor do .bloqueado) e o Arquivo (grey))
Título:Sugestão aprovada
Mensagem:Prezado(a),
A sua sugestão foi aprovada! Tópico movido para "Aprovadas".
Atenciosamente.
fa fa-check
Título:Sugestão negada
Mensagem:Prezado(a),
A sua sugestão foi negada! Tópico movido para "Negadas".
Atenciosamente.
fa fa-times
Sugestão em avaliação
Prezado(a),
A sua sugestão está em avaliação! Tópico movido para "Em avaliação".
Atenciosamente.
fa fa-refresh
Tópico resolvido
Prezado(a),
A sua dúvida foi marcada como Resolvida, contudo poderá repostar a mesma! Tópico movido para "Resolvidas".
Atenciosamente.
fa fa-check-circle
Tópico bloqueado
fa fa-lock (acho que é este (cadeado)
Tópico apagado
Prezado(a),
O tópico foi abandonado e/ou está fora das regras. Apagado e movido para a "Lixeira"
fa fa-trash-o
Tópico arquivado
Tópico movido para os Arquivos.
fa fa-archive
- Código:
/**
* Title : Forumotion tools for moderation
* Version : 1.0.2
* Author : Zeus
* Author URI : http://help.forumgratuit.ro
* License : GNU - General Public License v3.0
* Documentation : https://github.com/zeusmaximus/Moderation-tools-for-Forumotion/
*/
if (typeof zModConfig === 'undefined') var zModConfig = [{
icon: "https://i58.servimg.com/u/f58/11/80/17/98/chat-110.png"
}];
if (typeof zModTabels === 'undefined') var zModTabels = [{
type: "blue",
body_start: '[color=blue][b][i]',
body_end: "[/b][i][/i][/color]\n\n"
},
{
type: "red",
body_start: '[color=red][b][i]',
body_end: "[/b][i][/i][/color]\n\n"
},
{
type: "orange",
body_start: '[color=orange][b][i]',
body_end: "[/b][i][/i][/color]\n\n"
},
{
type: "green",
body_start: '[color=green][b][i]',
body_end: "[/b][i][/i][/color]\n\n"
}
];
if (typeof zModMessages === 'undefined') var zModMessages = [{
name: "Aprovado",
message: 'Sugestão aprovada',
group_id: 0,
type: "blue"
},
{
name: "Em Avaliação",
message: 'Sugestão em avaliação',
group_id: 0,
type: "orange"
},
{
name: "Negada",
message: 'Sugestão negada',
group_id: 1,
type: "red"
},
{
name: "Resolvido",
message: 'Tópico resolvido',
group_id: 1,
type: "green"
},
{
name: "Bloqueado",
message: 'Tópico bloqueado',
group_id: 1,
type: "orange"
},
{
name: "Apagado",
message: 'Tópico movido para a Lixeira',
group_id: 1,
type: "red"
},
];
if (typeof zModGroups === 'undefined') var zModGroups = [{
id: 0,
name: 'Administradores'
},
{
id: 1,
name: 'Moderadores'
},
{
id: 2,
name: 'Ajudantes'
}
];
$(function() {
$('<style type="text/css">.sceditor-button-staff div {background: url(' + zModConfig[0].icon + ') !important; }</style>').appendTo("head");
var list = "";
$(window).load(function() {
function zModGetTable(type, body) {
var str = "";
for (var y = 0; y < zModTabels.length; y++) str += (zModTabels[y].type === type) ? (body === "start") ? zModTabels[y].body_start : zModTabels[y].body_end : "";
return str;
}
function zModGetModMessageByGroupId(f, g) {
var str = "",
c = 0;
for (var z = 0; z < zModMessages.length; z++) {
if (zModMessages[z].group_id == f) {
str += "<li class='mod_editor_message group_" + zModMessages[z].group_id + "' id='group_" + z + "_" + zModMessages[z].group_id + "'><a style='cursor: pointer'>" + zModMessages[z].name + "</a></li>\n";
if (g === 0) zModInsertToSCEditor('#group_' + z + '_' + zModMessages[z].group_id + ' a', zModMessages[z].message, zModMessages[z].type);
c++;
}
}
if (g === 1) str = c;
return str;
}
function zModInsertToSCEditor(e, t, i) {
$(e).live("click", function(e) {
$("#text_editor_textarea").sceditor("instance").insertText(zModGetTable(i, "start") + t, zModGetTable(i, "end"));
});
}
function zModToggleSCEditor(o, i) {
$(o).live("click", function(o) {
$(i).toggle();
});
}
for (var x = 0; x < zModGroups.length; x++) {
if (zModGetModMessageByGroupId(zModGroups[x].id, 1) > 0) {
list += "<li class='mod_editor_section' id='list_" + zModGroups[x].id + "'><a style='cursor: pointer'>" + zModGroups[x].name + " (" + zModGetModMessageByGroupId(zModGroups[x].id, 1) + ")</a></li>" + zModGetModMessageByGroupId(zModGroups[x].id, 0);
zModToggleSCEditor("#list_" + zModGroups[x].id + " a", ".group_" + zModGroups[x].id + "");
}
}
zModToggleSCEditor('.sceditor-button.sceditor-button-staff', '.mod_box');
$("textarea, .sceditor-button").click(function() {
$(".mod_box").hide();
});
$(".sceditor-button-source").click(function() {
$(".sceditor-button-staff").removeClass("disabled");
});
if(_userdata.user_level === 1 | _userdata.user_level === 2 | _userdata.user_level === 3) $(".sceditor-group:last-child").before('<div class="sceditor-group"><a class="sceditor-button sceditor-button-staff" title="Mesaje de moderare"><div unselectable="on">Mesaje de moderare</div></a><div class="mod_box" style="display: none;"><ul class="mod_groups" id="mod_box_i">' + list + '<li class="copyright_e"> ️️ Created by Zeus - All right reserved</li></div></div></div>');
});
});
Todos os títulos com h4. (Mesmas cores (tabelas, texto branco), exceto o bloqueado (cor do .bloqueado) e o Arquivo (grey))
Título:Sugestão aprovada
Mensagem:Prezado(a),
A sua sugestão foi aprovada! Tópico movido para "Aprovadas".
Atenciosamente.
fa fa-check
Título:Sugestão negada
Mensagem:Prezado(a),
A sua sugestão foi negada! Tópico movido para "Negadas".
Atenciosamente.
fa fa-times
Sugestão em avaliação
Prezado(a),
A sua sugestão está em avaliação! Tópico movido para "Em avaliação".
Atenciosamente.
fa fa-refresh
Tópico resolvido
Prezado(a),
A sua dúvida foi marcada como Resolvida, contudo poderá repostar a mesma! Tópico movido para "Resolvidas".
Atenciosamente.
fa fa-check-circle
Tópico bloqueado
fa fa-lock (acho que é este (cadeado)
Tópico apagado
Prezado(a),
O tópico foi abandonado e/ou está fora das regras. Apagado e movido para a "Lixeira"
fa fa-trash-o
Tópico arquivado
Tópico movido para os Arquivos.
fa fa-archive
Convidado- Convidado
Re: Tabelas de Moderação
No seu JS, você pretende retirar às cores, e adicionar as tabelas ou deixar às cores e adicionar as tabelas, como citado por si?
tikky- Admineiro
- Membro desde : 13/01/2017
Mensagens : 7962
Pontos : 9217
Re: Tabelas de Moderação
O texto a branco e as cores das tabelas assim:Pedxz escreveu:No seu JS, você pretende retirar às cores, e adicionar as tabelas ou deixar às cores e adicionar as tabelas, como citado por si?
Sugestão aprovada - azul
Sugestão negada - vermelho mais escuro
Sugestão em avaliação - laranja
Tópico resolvido - verde
Tópico bloqueado - #F5AE42
Tópico apagado - vermelho (red)
Tópico arquivado - cinza (grey)
Convidado- Convidado
Re: Tabelas de Moderação
Se não me confundi do que você diz, teste:
- Código:
/**
* Title : Forumotion tools for moderation
* Version : 1.0.2
* Author : Zeus
* Author URI : http://help.forumgratuit.ro
* License : GNU - General Public License v3.0
* Documentation : https://github.com/zeusmaximus/Moderation-tools-for-Forumotion/
*/
if (typeof zModConfig === 'undefined') var zModConfig = [{
icon: "https://i58.servimg.com/u/f58/11/80/17/98/chat-110.png"
}];
if (typeof zModTabels === 'undefined') var zModTabels = [{
type: "blue",
body_start: '[table style="background-color: #F5AE42;border: solid 2px #F5AE42;border-radius: 2px;margin: 1em 25px 1em 1em;min-width: 100%!important;"]
[tr style=][td class="fa fa-archive" style="font-size: 25px;margin-right: 15px;padding: 15px!important;color: white"][/td][td style="width: 100%;color: white"]',
body_end: "[/td][/tr][/table]\n\n"
},
{
type: "red",
body_start: '[table style="background-color: #F5AE42;border: solid 2px #F5AE42;border-radius: 2px;margin: 1em 25px 1em 1em;min-width: 100%!important;"]
[tr style=][td class="fa fa-times" style="font-size: 25px;margin-right: 15px;padding: 15px!important;color: white"][/td][td style="width: 100%;color: white"]',
body_end: "[/td][/tr][/table]\n\n"
},
{
type: "orange",
body_start: '[table style="background-color: #F5AE42;border: solid 2px #F5AE42;border-radius: 2px;margin: 1em 25px 1em 1em;min-width: 100%!important;"]
[tr style=][td class="fa fa-refresh" style="font-size: 25px;margin-right: 15px;padding: 15px!important;color: white"][/td][td style="width: 100%;color: white"]',
body_end: "[/td][/tr][/table]\n\n"
},
{
type: "green",
body_start: '[table style="background-color: #F5AE42;border: solid 2px #F5AE42;border-radius: 2px;margin: 1em 25px 1em 1em;min-width: 100%!important;"]
[tr style=][td class="fa fa-check" style="font-size: 25px;margin-right: 15px;padding: 15px!important;color: white"][/td][td style="width: 100%;color: white"]',
body_end: "[/td][/tr][/table]\n\n"
}
];
if (typeof zModMessages === 'undefined') var zModMessages = [{
name: "Aprovado",
message: '[h4]Sugestão aprovada[/h4]\nPrezado(a),\nA sua sugestão foi negada!\nTópico movido para"Negadas".\nAtenciosamente.',
group_id: 0,
type: "blue"
},
{
name: "Em Avaliação",
message: '[h4]Sugestão em avaliação[/h4]\nPrezado(a),\nA sua sugestão está em avaliação!\nTópico movido para "Em avaliação".',
group_id: 0,
type: "orange"
},
{
name: "Negada",
message: '[h4]Sugestão negada[/h4]\nPrezado(a),\n
A sua dúvida foi marcada como Resolvida, contudo poderá repostar a mesma! Tópico movido para "Resolvidas".\nAtenciosamente.',
group_id: 1,
type: "red"
},
{
name: "Resolvido",
message: '[h4]Tópico resolvido[/h4]\nPrezado(a),\n
A sua dúvida foi marcada como Resolvida, contudo poderá repostar a mesma!\nTópico movido para "Resolvidas".\nAtenciosamente.',
group_id: 1,
type: "green"
},
{
name: "Bloqueado",
message: '[h4]Tópico bloqueado[/h4]',
group_id: 1,
type: "orange"
},
{
name: "Apagado",
message: '[h4]Tópico Apagado[/h4]/nPrezado(a),/nO tópico foi abandonado e/ou está fora das regras./nApagado e movido para a "Lixeira"',
group_id: 1,
type: "red"
},
];
if (typeof zModGroups === 'undefined') var zModGroups = [{
id: 0,
name: 'Administradores'
},
{
id: 1,
name: 'Moderadores'
},
{
id: 2,
name: 'Ajudantes'
}
];
$(function() {
$('<style type="text/css">.sceditor-button-staff div {background: url(' + zModConfig[0].icon + ') !important; }</style>').appendTo("head");
var list = "";
$(window).load(function() {
function zModGetTable(type, body) {
var str = "";
for (var y = 0; y < zModTabels.length; y++) str += (zModTabels[y].type === type) ? (body === "start") ? zModTabels[y].body_start : zModTabels[y].body_end : "";
return str;
}
function zModGetModMessageByGroupId(f, g) {
var str = "",
c = 0;
for (var z = 0; z < zModMessages.length; z++) {
if (zModMessages[z].group_id == f) {
str += "<li class='mod_editor_message group_" + zModMessages[z].group_id + "' id='group_" + z + "_" + zModMessages[z].group_id + "'><a style='cursor: pointer'>" + zModMessages[z].name + "</a></li>\n";
if (g === 0) zModInsertToSCEditor('#group_' + z + '_' + zModMessages[z].group_id + ' a', zModMessages[z].message, zModMessages[z].type);
c++;
}
}
if (g === 1) str = c;
return str;
}
function zModInsertToSCEditor(e, t, i) {
$(e).live("click", function(e) {
$("#text_editor_textarea").sceditor("instance").insertText(zModGetTable(i, "start") + t, zModGetTable(i, "end"));
});
}
function zModToggleSCEditor(o, i) {
$(o).live("click", function(o) {
$(i).toggle();
});
}
for (var x = 0; x < zModGroups.length; x++) {
if (zModGetModMessageByGroupId(zModGroups[x].id, 1) > 0) {
list += "<li class='mod_editor_section' id='list_" + zModGroups[x].id + "'><a style='cursor: pointer'>" + zModGroups[x].name + " (" + zModGetModMessageByGroupId(zModGroups[x].id, 1) + ")</a></li>" + zModGetModMessageByGroupId(zModGroups[x].id, 0);
zModToggleSCEditor("#list_" + zModGroups[x].id + " a", ".group_" + zModGroups[x].id + "");
}
}
zModToggleSCEditor('.sceditor-button.sceditor-button-staff', '.mod_box');
$("textarea, .sceditor-button").click(function() {
$(".mod_box").hide();
});
$(".sceditor-button-source").click(function() {
$(".sceditor-button-staff").removeClass("disabled");
});
if(_userdata.user_level === 1 | _userdata.user_level === 2 | _userdata.user_level === 3) $(".sceditor-group:last-child").before('<div class="sceditor-group"><a class="sceditor-button sceditor-button-staff" title="Mesaje de moderare"><div unselectable="on">Mesaje de moderare</div></a><div class="mod_box" style="display: none;"><ul class="mod_groups" id="mod_box_i">' + list + '<li class="copyright_e"> ️️️ Created by Zeus - All right reserved</li></div></div></div>');
});
});
tikky- Admineiro
- Membro desde : 13/01/2017
Mensagens : 7962
Pontos : 9217
Re: Tabelas de Moderação
Olá,Pedxz escreveu:Se não me confundi do que você diz, teste:
- Código:
/**
* Title : Forumotion tools for moderation
* Version : 1.0.2
* Author : Zeus
* Author URI : http://help.forumgratuit.ro
* License : GNU - General Public License v3.0
* Documentation : https://github.com/zeusmaximus/Moderation-tools-for-Forumotion/
*/
if (typeof zModConfig === 'undefined') var zModConfig = [{
icon: "https://i58.servimg.com/u/f58/11/80/17/98/chat-110.png"
}];
if (typeof zModTabels === 'undefined') var zModTabels = [{
type: "blue",
body_start: '[table style="background-color: #F5AE42;border: solid 2px #F5AE42;border-radius: 2px;margin: 1em 25px 1em 1em;min-width: 100%!important;"]
[tr style=][td class="fa fa-archive" style="font-size: 25px;margin-right: 15px;padding: 15px!important;color: white"][/td][td style="width: 100%;color: white"]',
body_end: "[/td][/tr][/table]\n\n"
},
{
type: "red",
body_start: '[table style="background-color: #F5AE42;border: solid 2px #F5AE42;border-radius: 2px;margin: 1em 25px 1em 1em;min-width: 100%!important;"]
[tr style=][td class="fa fa-times" style="font-size: 25px;margin-right: 15px;padding: 15px!important;color: white"][/td][td style="width: 100%;color: white"]',
body_end: "[/td][/tr][/table]\n\n"
},
{
type: "orange",
body_start: '[table style="background-color: #F5AE42;border: solid 2px #F5AE42;border-radius: 2px;margin: 1em 25px 1em 1em;min-width: 100%!important;"]
[tr style=][td class="fa fa-refresh" style="font-size: 25px;margin-right: 15px;padding: 15px!important;color: white"][/td][td style="width: 100%;color: white"]',
body_end: "[/td][/tr][/table]\n\n"
},
{
type: "green",
body_start: '[table style="background-color: #F5AE42;border: solid 2px #F5AE42;border-radius: 2px;margin: 1em 25px 1em 1em;min-width: 100%!important;"]
[tr style=][td class="fa fa-check" style="font-size: 25px;margin-right: 15px;padding: 15px!important;color: white"][/td][td style="width: 100%;color: white"]',
body_end: "[/td][/tr][/table]\n\n"
}
];
if (typeof zModMessages === 'undefined') var zModMessages = [{
name: "Aprovado",
message: '[h4]Sugestão aprovada[/h4]\nPrezado(a),\nA sua sugestão foi negada!\nTópico movido para"Negadas".\nAtenciosamente.',
group_id: 0,
type: "blue"
},
{
name: "Em Avaliação",
message: '[h4]Sugestão em avaliação[/h4]\nPrezado(a),\nA sua sugestão está em avaliação!\nTópico movido para "Em avaliação".',
group_id: 0,
type: "orange"
},
{
name: "Negada",
message: '[h4]Sugestão negada[/h4]\nPrezado(a),\n
A sua dúvida foi marcada como Resolvida, contudo poderá repostar a mesma! Tópico movido para "Resolvidas".\nAtenciosamente.',
group_id: 1,
type: "red"
},
{
name: "Resolvido",
message: '[h4]Tópico resolvido[/h4]\nPrezado(a),\n
A sua dúvida foi marcada como Resolvida, contudo poderá repostar a mesma!\nTópico movido para "Resolvidas".\nAtenciosamente.',
group_id: 1,
type: "green"
},
{
name: "Bloqueado",
message: '[h4]Tópico bloqueado[/h4]',
group_id: 1,
type: "orange"
},
{
name: "Apagado",
message: '[h4]Tópico Apagado[/h4]/nPrezado(a),/nO tópico foi abandonado e/ou está fora das regras./nApagado e movido para a "Lixeira"',
group_id: 1,
type: "red"
},
];
if (typeof zModGroups === 'undefined') var zModGroups = [{
id: 0,
name: 'Administradores'
},
{
id: 1,
name: 'Moderadores'
},
{
id: 2,
name: 'Ajudantes'
}
];
$(function() {
$('<style type="text/css">.sceditor-button-staff div {background: url(' + zModConfig[0].icon + ') !important; }</style>').appendTo("head");
var list = "";
$(window).load(function() {
function zModGetTable(type, body) {
var str = "";
for (var y = 0; y < zModTabels.length; y++) str += (zModTabels[y].type === type) ? (body === "start") ? zModTabels[y].body_start : zModTabels[y].body_end : "";
return str;
}
function zModGetModMessageByGroupId(f, g) {
var str = "",
c = 0;
for (var z = 0; z < zModMessages.length; z++) {
if (zModMessages[z].group_id == f) {
str += "<li class='mod_editor_message group_" + zModMessages[z].group_id + "' id='group_" + z + "_" + zModMessages[z].group_id + "'><a style='cursor: pointer'>" + zModMessages[z].name + "</a></li>\n";
if (g === 0) zModInsertToSCEditor('#group_' + z + '_' + zModMessages[z].group_id + ' a', zModMessages[z].message, zModMessages[z].type);
c++;
}
}
if (g === 1) str = c;
return str;
}
function zModInsertToSCEditor(e, t, i) {
$(e).live("click", function(e) {
$("#text_editor_textarea").sceditor("instance").insertText(zModGetTable(i, "start") + t, zModGetTable(i, "end"));
});
}
function zModToggleSCEditor(o, i) {
$(o).live("click", function(o) {
$(i).toggle();
});
}
for (var x = 0; x < zModGroups.length; x++) {
if (zModGetModMessageByGroupId(zModGroups[x].id, 1) > 0) {
list += "<li class='mod_editor_section' id='list_" + zModGroups[x].id + "'><a style='cursor: pointer'>" + zModGroups[x].name + " (" + zModGetModMessageByGroupId(zModGroups[x].id, 1) + ")</a></li>" + zModGetModMessageByGroupId(zModGroups[x].id, 0);
zModToggleSCEditor("#list_" + zModGroups[x].id + " a", ".group_" + zModGroups[x].id + "");
}
}
zModToggleSCEditor('.sceditor-button.sceditor-button-staff', '.mod_box');
$("textarea, .sceditor-button").click(function() {
$(".mod_box").hide();
});
$(".sceditor-button-source").click(function() {
$(".sceditor-button-staff").removeClass("disabled");
});
if(_userdata.user_level === 1 | _userdata.user_level === 2 | _userdata.user_level === 3) $(".sceditor-group:last-child").before('<div class="sceditor-group"><a class="sceditor-button sceditor-button-staff" title="Mesaje de moderare"><div unselectable="on">Mesaje de moderare</div></a><div class="mod_box" style="display: none;"><ul class="mod_groups" id="mod_box_i">' + list + '<li class="copyright_e"> ️️️ Created by Zeus - All right reserved</li></div></div></div>');
});
});
Era a cor das tabelas e os textos estão errados (alguns).
Também se enganou aqui (em quase todas).
Por exemplo, o tópico resolvido ficaria assim (acho):
- Código:
Tópico resolvido \n\nPrezado(a),\nA sua dúvida foi marcada como Resolvida, contudo poderá postar novamente a mesma! Tópico movido para "Resolvidas".\nAtenciosamente.
- Código:
Tópico resolvido
Prezado(a),
A sua dúvida foi marcada como Resolvida, contudo poderá postar novamente a mesma! Tópico movido para "Resolvidas".\n
Atenciosamente.
Convidado- Convidado
Re: Tabelas de Moderação
O caracter /n em JavaScript simboliza uma quebra de linha, mude para:
- Código:
/**
* Title : Forumotion tools for moderation
* Version : 1.0.2
* Author : Zeus
* Author URI : http://help.forumgratuit.ro
* License : GNU - General Public License v3.0
* Documentation : https://github.com/zeusmaximus/Moderation-tools-for-Forumotion/
*/
if (typeof zModConfig === 'undefined') var zModConfig = [{
icon: "https://i58.servimg.com/u/f58/11/80/17/98/chat-110.png"
}];
if (typeof zModTabels === 'undefined') var zModTabels = [{
type: "blue",
body_start: '[table style="background-color: #00B5D1;border: solid 2px #00B5D1;border-radius: 2px;margin: 1em 25px 1em 1em;min-width: 90%!important;"][tr style=][td class="fa fa-archive" style="font-size: 25px;margin-right: 15px;padding: 15px!important;color: white"][/td][td style="width: 100%;color: white"]',
body_end: "[/td][/tr][/table]\n\n"
},
{
type: "red",
body_start: '[table style="background-color: #EF3333;border: solid 2px #EF3333;border-radius: 2px;margin: 1em 25px 1em 1em;min-width: 90%!important;"][tr style=][td class="fa fa-times" style="font-size: 25px;margin-right: 15px;padding: 15px!important;color: white"][/td][td style="width: 100%;color: white"]',
body_end: "[/td][/tr][/table]\n\n"
},
{
type: "orange",
body_start: '[table style="background-color: #F5AE42;border: solid 2px #F5AE42;border-radius: 2px;margin: 1em 25px 1em 1em;min-width: 90%!important;"][tr style=][td class="fa fa-refresh" style="font-size: 25px;margin-right: 15px;padding: 15px!important;color: white"][/td][td style="width: 100%;color: white"]',
body_end: "[/td][/tr][/table]\n\n"
},
{
type: "green",
body_start: '[table style="background-color: #68B800;border: solid 2px #68B800;border-radius: 2px;margin: 1em 25px 1em 1em;min-width: 90%!important;"][tr style=][td class="fa fa-check" style="font-size: 25px;margin-right: 15px;padding: 15px!important;color: white"][/td][td style="width: 100%;color: white"]',
body_end: "[/td][/tr][/table]\n\n"
}
];
if (typeof zModMessages === 'undefined') var zModMessages = [{
name: "Aprovado",
message: '[h4]Sugestão aprovada[/h4]\nPrezado(a),\nA sua sugestão foi negada!\nTópico movido para"Negadas".\nAtenciosamente.',
group_id: 0,
type: "blue"
},
{
name: "Em Avaliação",
message: '[h4]Sugestão em avaliação[/h4]\nPrezado(a),\nA sua sugestão está em avaliação!\nTópico movido para "Em avaliação".',
group_id: 0,
type: "orange"
},
{
name: "Negada",
message: '[h4]Sugestão negada[/h4]\nPrezado(a),\nA sua dúvida foi marcada como Resolvida, contudo poderá repostar a mesma! Tópico movido para "Resolvidas".\nAtenciosamente.',
group_id: 1,
type: "red"
},
{
name: "Resolvido",
message: '[h4]Tópico resolvido[/h4]\nPrezado(a),\nA sua dúvida foi marcada como Resolvida, contudo poderá repostar a mesma!\nTópico movido para "Resolvidas".\nAtenciosamente.',
group_id: 1,
type: "green"
},
{
name: "Bloqueado",
message: '[h4]Tópico bloqueado[/h4]',
group_id: 1,
type: "orange"
},
{
name: "Apagado",
message: '[h4]Tópico Apagado[/h4]/nPrezado(a),\nO tópico foi abandonado e/ou está fora das regras.\nApagado e movido para a "Lixeira"',
group_id: 1,
type: "red"
},
];
if (typeof zModGroups === 'undefined') var zModGroups = [{
id: 0,
name: 'Administradores'
},
{
id: 1,
name: 'Moderadores'
},
{
id: 2,
name: 'Ajudantes'
}
];
$(function() {
$('<style type="text/css">.sceditor-button-staff div {background: url(' + zModConfig[0].icon + ') !important; }</style>').appendTo("head");
var list = "";
$(window).load(function() {
function zModGetTable(type, body) {
var str = "";
for (var y = 0; y < zModTabels.length; y++) str += (zModTabels[y].type === type) ? (body === "start") ? zModTabels[y].body_start : zModTabels[y].body_end : "";
return str;
}
function zModGetModMessageByGroupId(f, g) {
var str = "",
c = 0;
for (var z = 0; z < zModMessages.length; z++) {
if (zModMessages[z].group_id == f) {
str += "<li class='mod_editor_message group_" + zModMessages[z].group_id + "' id='group_" + z + "_" + zModMessages[z].group_id + "'><a style='cursor: pointer'>" + zModMessages[z].name + "</a></li>\n";
if (g === 0) zModInsertToSCEditor('#group_' + z + '_' + zModMessages[z].group_id + ' a', zModMessages[z].message, zModMessages[z].type);
c++;
}
}
if (g === 1) str = c;
return str;
}
function zModInsertToSCEditor(e, t, i) {
$(e).live("click", function(e) {
$("#text_editor_textarea").sceditor("instance").insertText(zModGetTable(i, "start") + t, zModGetTable(i, "end"));
});
}
function zModToggleSCEditor(o, i) {
$(o).live("click", function(o) {
$(i).toggle();
});
}
for (var x = 0; x < zModGroups.length; x++) {
if (zModGetModMessageByGroupId(zModGroups[x].id, 1) > 0) {
list += "<li class='mod_editor_section' id='list_" + zModGroups[x].id + "'><a style='cursor: pointer'>" + zModGroups[x].name + " (" + zModGetModMessageByGroupId(zModGroups[x].id, 1) + ")</a></li>" + zModGetModMessageByGroupId(zModGroups[x].id, 0);
zModToggleSCEditor("#list_" + zModGroups[x].id + " a", ".group_" + zModGroups[x].id + "");
}
}
zModToggleSCEditor('.sceditor-button.sceditor-button-staff', '.mod_box');
$("textarea, .sceditor-button").click(function() {
$(".mod_box").hide();
});
$(".sceditor-button-source").click(function() {
$(".sceditor-button-staff").removeClass("disabled");
});
if(_userdata.user_level === 1 | _userdata.user_level === 2 | _userdata.user_level === 3) $(".sceditor-group:last-child").before('<div class="sceditor-group"><a class="sceditor-button sceditor-button-staff" title="Mesaje de moderare"><div unselectable="on">Mesaje de moderare</div></a><div class="mod_box" style="display: none;"><ul class="mod_groups" id="mod_box_i">' + list + '<li class="copyright_e"> ️️️️ Created by Zeus - All right reserved</li></div></div></div>');
});
});
tikky- Admineiro
- Membro desde : 13/01/2017
Mensagens : 7962
Pontos : 9217
Re: Tabelas de Moderação
Tem como colocar mais no centro? http://prntscr.com/kae9gr
Convidado- Convidado
Re: Tabelas de Moderação
Mude para:
- Código:
/**
* Title : Forumotion tools for moderation
* Version : 1.0.2
* Author : Zeus
* Author URI : http://help.forumgratuit.ro
* License : GNU - General Public License v3.0
* Documentation : https://github.com/zeusmaximus/Moderation-tools-for-Forumotion/
*/
if (typeof zModConfig === 'undefined') var zModConfig = [{
icon: "https://i58.servimg.com/u/f58/11/80/17/98/chat-110.png"
}];
if (typeof zModTabels === 'undefined') var zModTabels = [{
type: "blue",
body_start: '[table style="background-color: #00B5D1;border: solid 2px #00B5D1;border-radius: 2px;margin: 1em 25px 1em 1em;min-width: 90%!important;"][tr style=][td class="fa fa-archive" style="font-size: 25px;margin-right: 15px;padding: 15px!important;color: white;display: table-cell;vertical-align: middle;"][/td][td style="width: 100%;color: white"]',
body_end: "[/td][/tr][/table]\n\n"
},
{
type: "red",
body_start: '[table style="background-color: #EF3333;border: solid 2px #EF3333;border-radius: 2px;margin: 1em 25px 1em 1em;min-width: 90%!important;"][tr style=][td class="fa fa-times" style="font-size: 25px;margin-right: 15px;padding: 15px!important;color: white;display: table-cell;vertical-align: middle;"][/td][td style="width: 100%;color: white"]',
body_end: "[/td][/tr][/table]\n\n"
},
{
type: "orange",
body_start: '[table style="background-color: #F5AE42;border: solid 2px #F5AE42;border-radius: 2px;margin: 1em 25px 1em 1em;min-width: 90%!important;"][tr style=][td class="fa fa-refresh" style="font-size: 25px;margin-right: 15px;padding: 15px!important;color: white;display: table-cell;vertical-align: middle;"][/td][td style="width: 100%;color: white"]',
body_end: "[/td][/tr][/table]\n\n"
},
{
type: "green",
body_start: '[table style="background-color: #68B800;border: solid 2px #68B800;border-radius: 2px;margin: 1em 25px 1em 1em;min-width: 90%!important;"][tr style=][td class="fa fa-check" style="font-size: 25px;margin-right: 15px;padding: 15px!important;color: white;display: table-cell;vertical-align: middle;"][/td][td style="width: 100%;color: white"]',
body_end: "[/td][/tr][/table]\n\n"
}
];
if (typeof zModMessages === 'undefined') var zModMessages = [{
name: "Aprovado",
message: '[h4]Sugestão aprovada[/h4]\nPrezado(a),\nA sua sugestão foi negada!\nTópico movido para"Negadas".\nAtenciosamente.',
group_id: 0,
type: "blue"
},
{
name: "Em Avaliação",
message: '[h4]Sugestão em avaliação[/h4]\nPrezado(a),\nA sua sugestão está em avaliação!\nTópico movido para "Em avaliação".',
group_id: 0,
type: "orange"
},
{
name: "Negada",
message: '[h4]Sugestão negada[/h4]\nPrezado(a),\nA sua dúvida foi marcada como Resolvida, contudo poderá repostar a mesma! Tópico movido para "Resolvidas".\nAtenciosamente.',
group_id: 1,
type: "red"
},
{
name: "Resolvido",
message: '[h4]Tópico resolvido[/h4]\nPrezado(a),\nA sua dúvida foi marcada como Resolvida, contudo poderá repostar a mesma!\nTópico movido para "Resolvidas".\nAtenciosamente.',
group_id: 1,
type: "green"
},
{
name: "Bloqueado",
message: '[h4]Tópico bloqueado[/h4]',
group_id: 1,
type: "orange"
},
{
name: "Apagado",
message: '[h4]Tópico Apagado[/h4]/nPrezado(a),\nO tópico foi abandonado e/ou está fora das regras.\nApagado e movido para a "Lixeira"',
group_id: 1,
type: "red"
},
];
if (typeof zModGroups === 'undefined') var zModGroups = [{
id: 0,
name: 'Administradores'
},
{
id: 1,
name: 'Moderadores'
},
{
id: 2,
name: 'Ajudantes'
}
];
$(function() {
$('<style type="text/css">.sceditor-button-staff div {background: url(' + zModConfig[0].icon + ') !important; }</style>').appendTo("head");
var list = "";
$(window).load(function() {
function zModGetTable(type, body) {
var str = "";
for (var y = 0; y < zModTabels.length; y++) str += (zModTabels[y].type === type) ? (body === "start") ? zModTabels[y].body_start : zModTabels[y].body_end : "";
return str;
}
function zModGetModMessageByGroupId(f, g) {
var str = "",
c = 0;
for (var z = 0; z < zModMessages.length; z++) {
if (zModMessages[z].group_id == f) {
str += "<li class='mod_editor_message group_" + zModMessages[z].group_id + "' id='group_" + z + "_" + zModMessages[z].group_id + "'><a style='cursor: pointer'>" + zModMessages[z].name + "</a></li>\n";
if (g === 0) zModInsertToSCEditor('#group_' + z + '_' + zModMessages[z].group_id + ' a', zModMessages[z].message, zModMessages[z].type);
c++;
}
}
if (g === 1) str = c;
return str;
}
function zModInsertToSCEditor(e, t, i) {
$(e).live("click", function(e) {
$("#text_editor_textarea").sceditor("instance").insertText(zModGetTable(i, "start") + t, zModGetTable(i, "end"));
});
}
function zModToggleSCEditor(o, i) {
$(o).live("click", function(o) {
$(i).toggle();
});
}
for (var x = 0; x < zModGroups.length; x++) {
if (zModGetModMessageByGroupId(zModGroups[x].id, 1) > 0) {
list += "<li class='mod_editor_section' id='list_" + zModGroups[x].id + "'><a style='cursor: pointer'>" + zModGroups[x].name + " (" + zModGetModMessageByGroupId(zModGroups[x].id, 1) + ")</a></li>" + zModGetModMessageByGroupId(zModGroups[x].id, 0);
zModToggleSCEditor("#list_" + zModGroups[x].id + " a", ".group_" + zModGroups[x].id + "");
}
}
zModToggleSCEditor('.sceditor-button.sceditor-button-staff', '.mod_box');
$("textarea, .sceditor-button").click(function() {
$(".mod_box").hide();
});
$(".sceditor-button-source").click(function() {
$(".sceditor-button-staff").removeClass("disabled");
});
if(_userdata.user_level === 1 | _userdata.user_level === 2 | _userdata.user_level === 3) $(".sceditor-group:last-child").before('<div class="sceditor-group"><a class="sceditor-button sceditor-button-staff" title="Mesaje de moderare"><div unselectable="on">Mesaje de moderare</div></a><div class="mod_box" style="display: none;"><ul class="mod_groups" id="mod_box_i">' + list + '<li class="copyright_e"> ️️️️ Created by Zeus - All right reserved</li></div></div></div>');
});
});
tikky- Admineiro
- Membro desde : 13/01/2017
Mensagens : 7962
Pontos : 9217
Re: Tabelas de Moderação
Pedxz escreveu:Mude para:
- Código:
/**
* Title : Forumotion tools for moderation
* Version : 1.0.2
* Author : Zeus
* Author URI : http://help.forumgratuit.ro
* License : GNU - General Public License v3.0
* Documentation : https://github.com/zeusmaximus/Moderation-tools-for-Forumotion/
*/
if (typeof zModConfig === 'undefined') var zModConfig = [{
icon: "https://i58.servimg.com/u/f58/11/80/17/98/chat-110.png"
}];
if (typeof zModTabels === 'undefined') var zModTabels = [{
type: "blue",
body_start: '[table style="background-color: #00B5D1;border: solid 2px #00B5D1;border-radius: 2px;margin: 1em 25px 1em 1em;min-width: 90%!important;"][tr style=][td class="fa fa-archive" style="font-size: 25px;margin-right: 15px;padding: 15px!important;color: white;display: table-cell;vertical-align: middle;"][/td][td style="width: 100%;color: white"]',
body_end: "[/td][/tr][/table]\n\n"
},
{
type: "red",
body_start: '[table style="background-color: #EF3333;border: solid 2px #EF3333;border-radius: 2px;margin: 1em 25px 1em 1em;min-width: 90%!important;"][tr style=][td class="fa fa-times" style="font-size: 25px;margin-right: 15px;padding: 15px!important;color: white;display: table-cell;vertical-align: middle;"][/td][td style="width: 100%;color: white"]',
body_end: "[/td][/tr][/table]\n\n"
},
{
type: "orange",
body_start: '[table style="background-color: #F5AE42;border: solid 2px #F5AE42;border-radius: 2px;margin: 1em 25px 1em 1em;min-width: 90%!important;"][tr style=][td class="fa fa-refresh" style="font-size: 25px;margin-right: 15px;padding: 15px!important;color: white;display: table-cell;vertical-align: middle;"][/td][td style="width: 100%;color: white"]',
body_end: "[/td][/tr][/table]\n\n"
},
{
type: "green",
body_start: '[table style="background-color: #68B800;border: solid 2px #68B800;border-radius: 2px;margin: 1em 25px 1em 1em;min-width: 90%!important;"][tr style=][td class="fa fa-check" style="font-size: 25px;margin-right: 15px;padding: 15px!important;color: white;display: table-cell;vertical-align: middle;"][/td][td style="width: 100%;color: white"]',
body_end: "[/td][/tr][/table]\n\n"
}
];
if (typeof zModMessages === 'undefined') var zModMessages = [{
name: "Aprovado",
message: '[h4]Sugestão aprovada[/h4]\nPrezado(a),\nA sua sugestão foi negada!\nTópico movido para"Negadas".\nAtenciosamente.',
group_id: 0,
type: "blue"
},
{
name: "Em Avaliação",
message: '[h4]Sugestão em avaliação[/h4]\nPrezado(a),\nA sua sugestão está em avaliação!\nTópico movido para "Em avaliação".',
group_id: 0,
type: "orange"
},
{
name: "Negada",
message: '[h4]Sugestão negada[/h4]\nPrezado(a),\nA sua dúvida foi marcada como Resolvida, contudo poderá repostar a mesma! Tópico movido para "Resolvidas".\nAtenciosamente.',
group_id: 1,
type: "red"
},
{
name: "Resolvido",
message: '[h4]Tópico resolvido[/h4]\nPrezado(a),\nA sua dúvida foi marcada como Resolvida, contudo poderá repostar a mesma!\nTópico movido para "Resolvidas".\nAtenciosamente.',
group_id: 1,
type: "green"
},
{
name: "Bloqueado",
message: '[h4]Tópico bloqueado[/h4]',
group_id: 1,
type: "orange"
},
{
name: "Apagado",
message: '[h4]Tópico Apagado[/h4]/nPrezado(a),\nO tópico foi abandonado e/ou está fora das regras.\nApagado e movido para a "Lixeira"',
group_id: 1,
type: "red"
},
];
if (typeof zModGroups === 'undefined') var zModGroups = [{
id: 0,
name: 'Administradores'
},
{
id: 1,
name: 'Moderadores'
},
{
id: 2,
name: 'Ajudantes'
}
];
$(function() {
$('<style type="text/css">.sceditor-button-staff div {background: url(' + zModConfig[0].icon + ') !important; }</style>').appendTo("head");
var list = "";
$(window).load(function() {
function zModGetTable(type, body) {
var str = "";
for (var y = 0; y < zModTabels.length; y++) str += (zModTabels[y].type === type) ? (body === "start") ? zModTabels[y].body_start : zModTabels[y].body_end : "";
return str;
}
function zModGetModMessageByGroupId(f, g) {
var str = "",
c = 0;
for (var z = 0; z < zModMessages.length; z++) {
if (zModMessages[z].group_id == f) {
str += "<li class='mod_editor_message group_" + zModMessages[z].group_id + "' id='group_" + z + "_" + zModMessages[z].group_id + "'><a style='cursor: pointer'>" + zModMessages[z].name + "</a></li>\n";
if (g === 0) zModInsertToSCEditor('#group_' + z + '_' + zModMessages[z].group_id + ' a', zModMessages[z].message, zModMessages[z].type);
c++;
}
}
if (g === 1) str = c;
return str;
}
function zModInsertToSCEditor(e, t, i) {
$(e).live("click", function(e) {
$("#text_editor_textarea").sceditor("instance").insertText(zModGetTable(i, "start") + t, zModGetTable(i, "end"));
});
}
function zModToggleSCEditor(o, i) {
$(o).live("click", function(o) {
$(i).toggle();
});
}
for (var x = 0; x < zModGroups.length; x++) {
if (zModGetModMessageByGroupId(zModGroups[x].id, 1) > 0) {
list += "<li class='mod_editor_section' id='list_" + zModGroups[x].id + "'><a style='cursor: pointer'>" + zModGroups[x].name + " (" + zModGetModMessageByGroupId(zModGroups[x].id, 1) + ")</a></li>" + zModGetModMessageByGroupId(zModGroups[x].id, 0);
zModToggleSCEditor("#list_" + zModGroups[x].id + " a", ".group_" + zModGroups[x].id + "");
}
}
zModToggleSCEditor('.sceditor-button.sceditor-button-staff', '.mod_box');
$("textarea, .sceditor-button").click(function() {
$(".mod_box").hide();
});
$(".sceditor-button-source").click(function() {
$(".sceditor-button-staff").removeClass("disabled");
});
if(_userdata.user_level === 1 | _userdata.user_level === 2 | _userdata.user_level === 3) $(".sceditor-group:last-child").before('<div class="sceditor-group"><a class="sceditor-button sceditor-button-staff" title="Mesaje de moderare"><div unselectable="on">Mesaje de moderare</div></a><div class="mod_box" style="display: none;"><ul class="mod_groups" id="mod_box_i">' + list + '<li class="copyright_e"> ️️️️ Created by Zeus - All right reserved</li></div></div></div>');
});
});
Obrigado Resolvido
Convidado- Convidado
tikky- Admineiro
- Membro desde : 13/01/2017
Mensagens : 7962
Pontos : 9217
Tópicos semelhantes
» Criar tabelas de moderação
» Personalizar tabelas
» Tabelas em BBCode
» Tabelas Personalizadas
» Altura das Tabelas
» Personalizar tabelas
» Tabelas em BBCode
» Tabelas Personalizadas
» Altura das Tabelas
Fórum dos Fóruns :: Ajuda e atendimento ao utilizador :: Questões sobre códigos :: Questões resolvidas sobre códigos Javascript e jQuery
Página 1 de 1
Permissões neste sub-fórum
Não podes responder a tópicos