Moved admin files to their own directory, trying to get a comprehensive structure in place

This commit is contained in:
2021-10-06 09:50:36 -06:00
parent 753aafe24d
commit bd6e3f2d60
7 changed files with 63 additions and 9 deletions

17
admin/class-install.php Normal file
View File

@ -0,0 +1,17 @@
<?php
namespace PluginNamespace;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
class Install {
private static $db_updates = array(
'1.1.0' => array(
'dh_update_110_options',
),
);
}