Description

Allow plugin to add any HTML code into any module position.

@since 2.0

Params

  • null

Returns

  • Array of modules
    $module = array (
                                  0 => array(position => content),
                                  1 => array(position => content) 
                              
                               )

Examples

{code}

function onModuleRender(&$rows) 
{
/*
Loop module with any html code here.
*/

}

{/code}

Description

This event trigger when the group bulletin entry is being display.

Allow to format the content in the rows.

Params

  • Bulletin - object, consist of group bulletin object

Examples

{code}

function onBulletinDisplay(&$rows) 
{

   $row->message= filter_content($row->message);

}

{/code}

Description

This event trigger when the inbox message is being display.

Allow to format the content in the rows.


Params

  • Message - object, consist of message object

Examples

{code}

function onWallDisplay(&$rows) 
{
   
$row->body= filter_content($row->body);
}

{/code}

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

Examples

{code}

function onDiscussionDisplay(&$rows) 
{

   $row->message= filter_content($row->message);

}

{/code}

Description

This event trigger when the wall is being display.

Allow to format the comment in the rows.

Params

  • Wall entry - consist of comment object

Examples

{code}

function onWallDisplay(&$rows) 
{

   $row->comment = filter_content($row->comment);

}

{/code}

Join 180,000 websites creating Amazing communities

JomSocial is the most complete, easy-to-use addon that turns Joomla CMS into a
full -fledged, social networking site

TRY NOW BUY NOW