uninstall 233 B

1234567891011121314
  1. <?php
  2. require_once(dirname(__FILE__).'/Dashboard.class.php');
  3. require_once(dirname(__FILE__).'/Widget.class.php');
  4. $table = new Widget();
  5. $table->drop();
  6. $table = new Dashboard();
  7. $table->drop();
  8. Section::remove('dashboard');
  9. ?>