The necessary code is in cake/libs/session.php (this is the base class), and cake/libs/controller/components/session.php (this is the component interface, which is used in the controller).
The component basically provides a convenient wrapper to the base class, which is where you'd have to do most of the work if you wanted to use it outside the framework. In addition to the default PHP session storage (where session data also appears in $_SESSION), CakeSession also supports database and filesystem storage of session data. These two additional methods are dependent upon some external Cake libraries and path definitions in order to work, and these references are what will need to be copied or replaced with other defines, classes, and/or interfaces. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cake-php -~----------~----~----~----~------~----~------~--~---
