Simple Session Support
Provides support for the PHP session allowing data to be retained from one request to another.
The facts
- Rating
- 5★ from 13
- Active installs
- 200+
- Price
- Free
- Last updated
- 14 Dec 2013
- Added
- Feb 2012
- Requires WP
- 3.0
- Tested up to
- WP 3.7.41
- Downloads
- 10,331
Our analysis
AI-assistedSimple Session Support is a WordPress plugin that adds PHP session support, allowing data to be passed between requests. It provides functions for developers to set and get session values, making it useful for managing user data across different pages. The plugin is suitable for developers looking to implement session handling in their WordPress projects.
The plugin includes functions such as simpleSessionSet() for setting session values and simpleSessionGet() for retrieving them. The session starts during the init action and is cleared during login and logout actions. It is designed to be simple and well-documented, serving as a basic framework for custom development.
Best for: Developers looking to implement session handling in their WordPress applications.
What it does well
- ✓Adds PHP session support to WordPress
- ✓Functions to set and get session values
- ✓Well-documented and simple code
- ✓Useful for developers creating custom plugins or themes
Where it falls short
- •Limited to basic session management features
- •Last updated in December 2013, may not be compatible with newer WordPress versions
Verdict
Simple Session Support provides essential session management functions for developers, but its age and limited features may restrict its use in more complex applications.
From the developer
Peter Wooster's own description of Simple Session Support, lightly tidied.
This plugin adds PHP session support. Data can be passed from one request to the next.
Functions are provided to get and set items in the PHP session.
Features for Developers
- You can save data from one HTTP request to another.
- the simpleSessionSet($key, $value) function sets a session value
- the simpleSessionGet($key, $default) function gets a session value with a default value if the key is not found
- the session is started in the init action and destroyed in the login and logout actions
Additional Features
There are no additional features supported by Simple Session Suppoprt. The code is simple, small and well documented,
so you can use it as a starting point for your own plugins or themes.