I have a User class that handles all user data with database-to-session persistence. So say, if the user changes something in their profile, it's done through this class, which updates session data as well. Now of course I could just create an instance of the object on every page, but for the sake of principle I'd like to keep a one user-object, one session relationship.
It's really just about me being pedantic and petty, I know, but it would still be neat to implement...
Any ideas?