class info at top

This commit is contained in:
Derek Ashauer 2025-02-19 10:06:30 -07:00
parent f9234dd48b
commit ed3a465619

View file

@ -1,4 +1,35 @@
<?php
/**
* Support Access Manager
*
* Creates temporary WordPress admin accounts with expiration and access limits.
*
* @package Support_Access_Manager
* @author Derek Ashauer
* @copyright Copyright (c) 2024, Derek Ashauer
* @license GPL-3.0+
* @link https://github.com/derekashauer/support-access-manager
* @version 1.0.0
*
* @wordpress-plugin
* Requires at least: 5.0
* Requires PHP: 7.2
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
if ( ! class_exists( 'Support_Access_Manager' ) ) {
class Support_Access_Manager {