profiles and info

josephp

Joined: 2002-10-03
Posts: 172
Posted: Thu, 2002-10-24 05:44

I am wondering

Does gallery have a feature that allows to view a user info like thier name, email, all thier photos they have and stuff like that?

I would need that feature so bad!

 
beckett
beckett's picture

Joined: 2002-08-16
Posts: 3474
Posted: Fri, 2002-10-25 07:14

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.

 
josephp

Joined: 2002-10-03
Posts: 172
Posted: Fri, 2002-10-25 07:35

Alright thanks