The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

How can I add Admin/Mod color button on sceditor?

2 posters

Go down

Solved How can I add Admin/Mod color button on sceditor?

Post by Van-Helsing November 2nd 2015, 23:40

Hello,
How can I add Admin/Mod color button on sceditor?
Van-Helsing
Van-Helsing
Hyperactive

Male Posts : 2431
Reputation : 116
Language : English, Greek

http://itexperts.forumgreek.com/

Back to top Go down

Solved Re: How can I add Admin/Mod color button on sceditor?

Post by Ange Tuteur November 3rd 2015, 01:27

Hi @Black-Shadow,

Go to Administration Panel > Modules > JavaScript codes management > New script

Title : SCEditor Mod color
Placement : In all the pages
Code:
$(function() {
  if (!$.sceditor || !_userdata.user_level) return;
 
  var mods = {
    'u1' : '#FF6600',
    'u2' : '#FF0000',
    'u3' : '#FFFF00',
    'u4' : '#00FF00'
  },
  c = '#000000', i, u = 'u' + _userdata.user_id;
 
  for (i in mods) {
    if (i == u) {
      c = mods[i];
      break;
    }
  }
 
  $.sceditor.command.set('modcolor', {
    exec : function() { this.insert('[color=' + c + '][b]','[/b][/color]') },
    txtExec : function() { this.insert('[color=' + c + '][b]','[/b][/color]') },
    tooltip : 'Insert mod color'
  });
 
  toolbar += '|modcolor';
});

At the top you'll see a "mods" object with id:color pairs. To the right of the colon is the ID of the member, and to the left is their color. Edit these so that they correspond to the user's ID and their color of choice. Wink

As for the image of the button, add the following CSS to your stylesheet.
Display > Colors > CSS
Code:
.sceditor-button-modcolor div {
  background-image:url(http://i56.servimg.com/u/f56/18/45/41/65/mcolo10.png) !important;
}
Ange Tuteur
Ange Tuteur
Forumaster

Male Posts : 13246
Reputation : 3000
Language : English & 日本語
Location : Pennsylvania

https://fmdesign.forumotion.com

Back to top Go down

Solved Re: How can I add Admin/Mod color button on sceditor?

Post by Van-Helsing November 3rd 2015, 02:06

Thank you very much @Ange Tuteur it is working amazing.
~1~
Its Solved.
Van-Helsing
Van-Helsing
Hyperactive

Male Posts : 2431
Reputation : 116
Language : English, Greek

http://itexperts.forumgreek.com/

Back to top Go down

Solved Re: How can I add Admin/Mod color button on sceditor?

Post by Ange Tuteur November 3rd 2015, 02:06

You're welcome ^^

Topic archived

Have a good day. Smile
Ange Tuteur
Ange Tuteur
Forumaster

Male Posts : 13246
Reputation : 3000
Language : English & 日本語
Location : Pennsylvania

https://fmdesign.forumotion.com

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum