OnBeforePhotoDelete

Description

This event is triggered before the photo is deleted.

@since 1.6

Params

  • Photo - array, consist of photo object
CTablePhoto Object
(
    [id] => 13
    [albumid] => 5
    [name] => 
    [caption] => cwindow_type
    [permissions] => 0
    [created] => 2009-10-20 04:52:14
    [thumbnail] => images/photos/63/5/thumb_ff5e436b8148d10a7750abab.jpg
    [image] => images/photos/63/5/ff5e436b8148d10a7750abab.jpg
    [creator] => 63
    [published] => 1
    [original] => images/originalphotos/63/5/ff5e436b8148d10a7750abab.jpg
)


Example

function onBeforePhotoDelete($photos) 
{
        $photoObj     = $photos[0];
        $photoCaption = $photoObj->caption;
        .
        .
        .
}