| Server IP : 39.106.62.82 / Your IP : 216.73.217.128 Web Server : nginx/1.14.1 System : Linux iz2ze1m0zmp2dk5c3j5ap5z 3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /webdata/gohomesh.com/wp-content/plugins/wp-mail-smtp/src/Admin/DebugEvents/ |
Upload File : |
<?php
namespace WPMailSMTP\Admin\DebugEvents;
use WPMailSMTP\MigrationAbstract;
/**
* Debug Events Migration Class
*
* @since 3.0.0
*/
class Migration extends MigrationAbstract {
/**
* Version of the debug events database table.
*
* @since 3.0.0
*/
const DB_VERSION = 1;
/**
* Option key where we save the current debug events DB version.
*
* @since 3.0.0
*/
const OPTION_NAME = 'wp_mail_smtp_debug_events_db_version';
/**
* Option key where we save any errors while creating the debug events DB table.
*
* @since 3.0.0
*/
const ERROR_OPTION_NAME = 'wp_mail_smtp_debug_events_db_error';
/**
* Create the debug events DB table structure.
*
* @since 3.0.0
*/
protected function migrate_to_1() {
global $wpdb;
$table = DebugEvents::get_table_name();
$charset_collate = $wpdb->get_charset_collate();
$sql = "CREATE TABLE IF NOT EXISTS `$table` (
`id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
`content` TEXT DEFAULT NULL,
`initiator` TEXT DEFAULT NULL,
`event_type` TINYINT UNSIGNED NOT NULL DEFAULT '0',
`created_at` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (id)
)
ENGINE='InnoDB'
{$charset_collate};";
$result = $wpdb->query( $sql ); // phpcs:ignore WordPress.DB.DirectDatabaseQuery.NoCaching, WordPress.DB.PreparedSQL.NotPrepared
if ( ! empty( $wpdb->last_error ) ) {
update_option( self::ERROR_OPTION_NAME, $wpdb->last_error, false );
}
// Save the current version to DB.
if ( $result !== false ) {
$this->update_db_ver( 1 );
}
}
}