. * */ OCP\JSON::checkLoggedIn(); OCP\JSON::checkAppEnabled('storage_charts'); $l = new OC_L10N('storage_charts'); // Update and save the new configuration if(is_numeric($_POST['s']) && in_array($_POST['k'], Array('hu_size','hu_size_hus'))){ OC_DLStCharts::setUConfValue($_POST['k'], $_POST['s']); if(strcmp($_POST['k'],'hu_size') == 0){ OCP\JSON::encodedPrint(Array('r' => OC_DLStChartsLoader::loadChart('clines_usse', $l))); }else{ OCP\JSON::encodedPrint(Array('r' => OC_DLStChartsLoader::loadChart('chisto_us', $l))); } }