OnVideoCreate

Revision as of 17:12, 18 January 2013 by Sinisakrisan (Talk | contribs)

Description

This event trigger when new video created at Jomsocial.

Params

  • Video - consist of video object
CTableVideo Object
(
    [id] => 1
    [title] => Video Title
    [creator] => 45
)


Example

function onVideoCreate($videoObj) 
{
        $videoTitle = $videoObj->title;
        .
        .
        .
}