well, I've accomplished this by altering inline.php a great deal.. including using the advice I found on the "
Accessing Galleries" module tutorial. Which brings me to my next question. I'm using the following code to display the thumbs of all the galleries:
$top = rsgGalleryManager::get( 0 );
foreach( $top->kids() as $kid ){
echo <<<EOD
<br />
{$kid->get('name')}
<a xhref='{$kid->url}'>
{$kid->thumbHTML}
</a>
EOD;
}
I want to alter the html outputted by "thumbHTML".. specifically, I want to add an "id" and "title" field so I can turn those thumbs into javascript rollovers. Is there a way to alter thumbHTML? or can someone point me to documentation on the various elements that contains so I can use them? (ie $kid->url)
The note at the bottom of that tutorial says,
Please see the API Documentation on class rsgGallery for more information. Note that rsgGallery is not considered stable yet and might change in future versions.
..but I didn't find an entry for rsgGallery in the API Documentation.