Difference between revisions of "OnDiscussionDisplay"

(Description)
(Description)
 
Line 1: Line 1:
 
===Description===
 
===Description===
This event is triggered when the discussion entry is being display. Allow to format the content in the rows.
+
This event is triggered when the discussion entry is being displayed. Allow to format the content in the rows.
  
 
===Params===
 
===Params===

Latest revision as of 07:13, 9 March 2013

Description

This event is triggered when the discussion entry is being displayed. Allow to format the content in the rows.

Params

  • Discussion - object, consist of discussion object

Example

function onDiscussionDisplay(&$rows) 
{
   $row->message= filter_content($row->message);
}