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


PHP astercrm::updateField方法代码示例

本文整理汇总了PHP中astercrm::updateField方法的典型用法代码示例。如果您正苦于以下问题:PHP astercrm::updateField方法的具体用法?PHP astercrm::updateField怎么用?PHP astercrm::updateField使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在astercrm的用法示例。


在下文中一共展示了astercrm::updateField方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: updateBillingtime

function updateBillingtime($id, $billingtime)
{
    $objResponse = new xajaxResponse();
    global $locate;
    astercrm::updateField("accountgroup", "billingtime", $billingtime, $id);
    astercrm::updateField("accountgroup", "addtime", date("Y-m-d H:i:s"), $id);
    $objResponse->addScript("xajax_edit('" . $id . "')");
    return $objResponse;
}
开发者ID:ljhcj,项目名称:IRISCC,代码行数:9,代码来源:accountgroup.server.php

示例2: unlink

            $filename = 'callshoplogo_' . $_REQUEST['group_id'] . '.' . $file_ext;
            $filepath = $config['system']['upload_file_path'] . '/callshoplogo/';
            if (!is_dir($filepath)) {
                if (!mkdir($filepath)) {
                    echo "<script>alert('" . $locate->Translate("Logo upload faild please check your upload directory") . "');</script>";
                    exit;
                }
            }
            if (!move_uploaded_file($_FILES['callshopLogo']['tmp_name'], $filepath . $filename)) {
                echo "<script>alert('" . $locate->Translate("Logo upload faild1") . "');</script>";
            } else {
                echo "<script>alert('" . $locate->Translate("Logo upload success") . "');</script>";
                $group_row = astercrm::getRecord($_REQUEST['group_id'], 'accountgroup');
                if ($group_row['grouplogo'] != $filename) {
                    unlink($filepath . $group_row['grouplogo']);
                    astercrm::updateField('accountgroup', 'grouplogo', $filename, $_REQUEST['group_id'], 'id');
                }
                //echo "<script>window.parent.location.reload();</script>";
            }
        } else {
            echo "<script>alert('" . $locate->Translate("Logo file must be a image file") . "');</script>";
        }
    }
    exit;
}
//for import
if (isset($_POST['CHECK']) && trim($_POST['CHECK']) == '1') {
    $upload_msg = '';
    $is_vaild = 0;
    if ($_FILES['excel']['name'] != '') {
        //上传的文件
开发者ID:ljhcj,项目名称:IRISCC,代码行数:31,代码来源:upload.php

示例3: setSurveyEnable

 function setSurveyEnable($surveyid, $surveyenable = 1, $groupid = 0)
 {
     //$table,$field,$value,$id
     if ($surveyid == 0) {
         global $db;
         $sql = "UPDATE survey SET enable = 0 WHERE groupid = {$groupid}";
         $res = $db->query($sql);
     } else {
         $res = astercrm::updateField('survey', 'enable', $surveyenable, $surveyid);
     }
     return;
 }
开发者ID:ljhcj,项目名称:IRISCC,代码行数:12,代码来源:survey.grid.inc.php


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