ngg_album_galleryobject
The NextGEN Gallery ngg album galleryobject hook.
Description
Parameters (1)
- 0. $gallery (unknown)
- The gallery.
Usage
- To run the hook, copy the example below.
- $gallery = apply_filters( 'ngg_album_galleryobject', $gallery );
- if ( !empty( $gallery ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the ngg_album_galleryobject callback
- function filter_ngg_album_galleryobject( $gallery ) {
- // make filter magic happen here...
- return $gallery;
- };
- // add the filter
- add_filter( 'ngg_album_galleryobject', 'filter_ngg_album_galleryobject', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'ngg_album_galleryobject', 'filter_ngg_album_galleryobject', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /products/photocrati_nextgen/modules/nextgen_basic_album/package.module.nextgen_basic_album.php
- $gallery = apply_filters('ngg_album_galleryobject', $gallery);