$cAlbum class
The cAlbum class allows access to an album from the ProofBuddy database.
ProofBuddy >= 1.0
Note that to access the currently loaded album you will use the variable $cAlbum as it is loaded at page load. If you need to access another album you will need to create a new variable.
Example
To load an album other than the album currently in use use the following code.
<?php
$album_id = 1; // The id of the album you would like to load
$x = new classAlbum($album_id);
?>
$album_id = 1; // The id of the album you would like to load
$x = new classAlbum($album_id);
?>




