How to add extra class to the particular comment?

Hi,
Someone knows how to add my style class to a particular comment from the plugin ?

Like on the screen:

Invoking an event?
DiscussionController_BeforeComment... ?

Thanks

Tagged:

Best Answer

  • R_JR_J Admin
    Answer ✓
    public function discussionController_beforeCommentDisplay_handler($sender, $args) {
        if ($args['Comment'] whatever) {
            $args['CssClass'] .= ' MyExtraClass';
            // Could also be:
            // &$args['CssClass'] .= ' MyExtraClass';
            // Never sure about that...
    

Answers

  • R_JR_J Admin
    Answer ✓
    public function discussionController_beforeCommentDisplay_handler($sender, $args) {
        if ($args['Comment'] whatever) {
            $args['CssClass'] .= ' MyExtraClass';
            // Could also be:
            // &$args['CssClass'] .= ' MyExtraClass';
            // Never sure about that...
    
  • It worked, thanks

Sign In or Register to comment.