LLMS_Admin_Tool_Clear_Sessions
Source Source
File: includes/admin/tools/class-llms-admin-tool-clear-sessions.php
class LLMS_Admin_Tool_Clear_Sessions extends LLMS_Abstract_Admin_Tool { /** * Tool ID. * * @var string */ protected $id = 'clear-sessions'; /** * Retrieve a description of the tool * * This is displayed on the right side of the tool's list before the button. * * @since 4.0.0 * * @return string */ protected function get_description() { return __( 'LifterLMS user sessions store temporary data related to error messages and order information during payment processing. Stale sessions are automatically deleted. This tool can be used to delete all existing user sessions.', 'lifterlms' ); } /** * Retrieve the tool's label * * The label is the tool's title. It's displayed in the left column on the tool's list. * * @since 4.0.0 * * @return string */ protected function get_label() { return __( 'User Sessions', 'lifterlms' ); } /** * Retrieve the tool's button text * * @since 4.0.0 * * @return string */ protected function get_text() { return __( 'Clear All User Sessions', 'lifterlms' ); } /** * Process the tool. * * This method should do whatever the tool actually does. * * By the time this tool is called a nonce and the user's capabilities have already been checked. * * @since 4.0.0 * * @return mixed */ protected function handle() { do_action( 'llms_delete_expired_session_data', false ); return true; } }
Expand full source code Collapse full source code View on GitHub
Methods Methods
- get_description — Retrieve a description of the tool
- get_label — Retrieve the tool's label
- get_text — Retrieve the tool's button text
- handle — Process the tool.
Changelog Changelog
Version | Description |
---|---|
4.0.0 | Introduced. |