Difference between revisions of "OnDiscussionDisplay"

(Created page with "===Description=== This event trigger when the discussion entry is being display. Allow to format the content in the rows. ===Params=== *'''Discussion''' - object, consist of ...")
(No difference)

Revision as of 15:00, 18 January 2013

Description

This event trigger when the discussion entry is being display. 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);
}