''.translate("SETTINGS_SAVED").'',
'icon' => 'floppy-o',
'type' => 'success',
'length' => '5000',
'layout' => $notifyExplode[0],
'effect' => $notifyExplode[1],
);
} else {
$msg = array(
'html' => ''.translate("SETTINGS__NOT_SAVED").'',
'icon' => 'floppy-o',
'type' => 'failed',
'length' => '5000',
'layout' => $notifyExplode[0],
'effect' => $notifyExplode[1],
);
}
echo json_encode($msg);
break;
case 'editCSS':
write_ini_file($_POST["css-show"], "custom.css");
echo '';
break;
default:
debug_out('Unsupported Action!',1);
}
break;
case 'PUT':
debug_out('Unsupported Action!',1);
break;
case 'DELETE':
debug_out('Unsupported Action!',1);
break;
default:
debug_out('Unknown Request Type!',1);
}