The Abstract_User class (classes/User.php) would be a good starting point.
Logging in loads the current user object in $gallery->user.
For albums (leading to photos), $albumDB links to the album database, and there are built in functions for getting a handle on the albums for a particular user. Gallery's API is, conceptually, rock solid... so make use of the great code that's already there.
Posts: 3474
The Abstract_User class (classes/User.php) would be a good starting point.
Logging in loads the current user object in $gallery->user.
For albums (leading to photos), $albumDB links to the album database, and there are built in functions for getting a handle on the albums for a particular user. Gallery's API is, conceptually, rock solid... so make use of the great code that's already there.
Posts: 172
Alright thanks