HEX
Server: LiteSpeed
System: Linux s787.bom1.mysecurecloudhost.com 4.18.0-477.13.1.lve.el8.x86_64 #1 SMP Thu Jun 1 16:40:47 EDT 2023 x86_64
User: mobilech (5348)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //proc/thread-self/cwd/wp-content/plugins/tutor/GDPR/DB/LegalConsents.php
<?php
/**
 * GDPR legal consents table.
 *
 * @package Tutor\GDPR\DB
 * @author Themeum <support@themeum.com>
 * @link https://themeum.com
 * @since 4.0.0
 */

namespace Tutor\GDPR\DB;

defined( 'ABSPATH' ) || exit;

/**
 * Legal consents table class.
 */
class LegalConsents extends DB {

	/**
	 * Get table name.
	 *
	 * @since 4.0.0
	 *
	 * @return string
	 */
	public static function get_table_name() {
		global $wpdb;
		return $wpdb->prefix . 'tutor_legal_consents';
	}

	/**
	 * Get create table schema.
	 *
	 * @since 4.0.0
	 *
	 * @return string
	 */
	public static function get_schema() {
		global $wpdb;

		$table_name      = static::get_table_name();
		$charset_collate = $wpdb->get_charset_collate();

		return "CREATE TABLE {$table_name} (
			id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY,
			consent_title VARCHAR(255) NOT NULL,
			display_on TEXT NOT NULL, -- comma separate value for multiple scopes
			consent_message TEXT NOT NULL,
			consent_map JSON, -- JSON map [terms_conditions => 1]
			version VARCHAR(20) NOT NULL,
			consent_method VARCHAR(255) NOT NULL,
			is_active TINYINT(1) DEFAULT 1,
			settings JSON,
			created_at_gmt DATETIME NOT NULL,
			updated_at_gmt DATETIME,
			INDEX (consent_title),
			INDEX (is_active)
		) {$charset_collate};";
	}
}