3.5.2.4. Cookies

File: classes/Cookies.php
The Cookie class is used to manage cookies for EWE.

3.5.2.4.1. Add

Format: result = Add(site,uid)
Example: $result = $cookies->Add($site,$uid);

This method adds a new cookie for the current accessor, for the specified site and user ID.

3.5.2.4.2. Check

Format: result = Check(site,uid)
Example: $result = $cookies->Check($site,$uid);

Check for an expired session, and regenerate it if necessary.

3.5.2.4.3. Delete

Format: result = Delete(site)
Example: $result = $cookies->Delete($site);

Delete the current cookie for the given site.

3.5.2.4.4. Has_Cookie

Format: result = Has_Cookie(site,uid)
Example: $result = $cookies->Has_Cookie($site,$uid);

Returns TRUE if the cookie for the given site and user ID exists. This indicates that the site/user is logged in.

3.5.2.4.5. Login_Via_Cookie

Format: result = Login_Via_Cookie(site=0)
Example: $result = $cookies->Login_Via_Cookie($site);

Logs the user in if a cookie exists for the given site.