🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-08-07 15:12:47 | PHP 8.2.32
📂
/ (Root)
/
home
/
eliteewa
/
public_html
/
wp-content
/
themes
/
blocksy
/
inc
/
classes
/
db-versioning
/
utils
📍 /home/eliteewa/public_html/wp-content/themes/blocksy/inc/classes/db-versioning/utils
🔄 Refresh
✏️
Editing: db-utils.php
Writable
<?php namespace Blocksy\Database; class Utils { static public function wp_get_table_names() { global $wpdb; $tables_sql = 'SHOW TABLES'; // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared -- Query is safe, see above. $tables = $wpdb->get_col($tables_sql, 0); return $tables; } static public function wp_get_relevant_table_names() { global $wpdb; return [ $wpdb->base_prefix . 'options', $wpdb->base_prefix . 'posts', $wpdb->base_prefix . 'postmeta', ]; } }
💾 Save Changes
❌ Cancel