This action runs right before images are added to a gallery.
add_action('maxgalleria_before_add_images_to_gallery', 'before_add_images_to_gallery', 10, 2); $gallery_id
The gallery ID.
$urls
The URLs of the images.
add_action('maxgalleria_before_add_images_to_gallery', 'before_add_images_to_gallery', 10, 2);
function before_add_images_to_gallery($gallery_id, $urls) {
}
Defined in maxgalleria-hooks.php.
Used in maxgalleria-image-gallery.php.