10 lines
213 B
PHP
10 lines
213 B
PHP
<?php
|
|
/* For license terms, see /license.txt */
|
|
|
|
require_once 'card_game.php';
|
|
|
|
if (!api_is_platform_admin()) {
|
|
exit('You must have admin permissions to uninstall plugins');
|
|
}
|
|
CardGame::create()->uninstall();
|