当前位置: 首页>>代码示例>>PHP>>正文


PHP Configurations::getDateFormats方法代码示例

本文整理汇总了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;
开发者ID:ralpheav,项目名称:processmaker,代码行数:31,代码来源:environmentSettingsAjax.php


注:本文中的Configurations::getDateFormats方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。