本文整理汇总了PHP中Configurations::getDateFormats方法的典型用法代码示例。如果您正苦于以下问题:PHP Configurations::getDateFormats方法的具体用法?PHP Configurations::getDateFormats怎么用?PHP Configurations::getDateFormats使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Configurations
的用法示例。
在下文中一共展示了Configurations::getDateFormats方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: isset
*
*/
G::LoadClass("configuration");
$request = isset($_POST["request"]) ? $_POST["request"] : (isset($_GET["request"]) ? $_GET["request"] : null);
$result = new stdclass();
switch ($request) {
case "getUserMaskList":
$result->rows = Configurations::getUserNameFormats();
print G::json_encode($result);
break;
case "getDateFormats":
$result->rows = Configurations::getDateFormats();
print G::json_encode($result);
break;
case "getCasesListDateFormat":
$result->rows = Configurations::getDateFormats();
print G::json_encode($result);
break;
case "getCasesListRowNumber":
for ($i = 10; $i <= 50; $i += 5) {
$formats[] = array("id" => "{$i}", "name" => "{$i}");
}
$result->rows = $formats;
print G::json_encode($result);
break;
case "save":
$conf = new Configurations();
$conf->aConfig = array("format" => $_POST["userFormat"], "dateFormat" => $_POST["dateFormat"], "startCaseHideProcessInf" => isset($_POST["hideProcessInf"]) ? true : false, "casesListDateFormat" => $_POST["casesListDateFormat"], "casesListRowNumber" => intval($_POST["casesListRowNumber"]), "casesListRefreshTime" => intval($_POST["txtCasesRefreshTime"]));
$conf->saveConfig("ENVIRONMENT_SETTINGS", "");
$response = new stdclass();
$response->success = true;