remake to switch betwen enable and disable buton and second button is remove, remova now not work
This commit is contained in:
@@ -1,9 +1,10 @@
|
||||
<?php
|
||||
if (!empty ($_POST)){
|
||||
if (
|
||||
isset($_POST['name']) &&
|
||||
$_POST['name'] != ''
|
||||
){
|
||||
isset ($_POST['name']) &&
|
||||
$_POST['name'] != '' &&
|
||||
!isset ($_POST['remove'])
|
||||
) {
|
||||
if ($_POST['status'] == "true") {
|
||||
if (file_exists ($_SERVER['DOCUMENT_ROOT'] . BASEDIR . 'app/plugins/!' . $_POST['name'] . ".php")) {
|
||||
rename($_SERVER['DOCUMENT_ROOT'] . BASEDIR . 'app/plugins/!' . $_POST['name'] . ".php", $_SERVER['DOCUMENT_ROOT'] . BASEDIR . 'app/plugins/' . $_POST['name'] . ".php");
|
||||
@@ -16,4 +17,12 @@ if (!empty ($_POST)){
|
||||
header('Location: ./plugins');
|
||||
die();
|
||||
}
|
||||
|
||||
if (
|
||||
isset ($_POST['name']) &&
|
||||
$_POST['name'] != '' &&
|
||||
isset ($_POST['remove'])
|
||||
) {
|
||||
//
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user