當前位置: 首頁>>代碼示例>>PHP>>正文


PHP CRMEntity::uploadAndSaveFile方法代碼示例

本文整理匯總了PHP中CRMEntity::uploadAndSaveFile方法的典型用法代碼示例。如果您正苦於以下問題:PHP CRMEntity::uploadAndSaveFile方法的具體用法?PHP CRMEntity::uploadAndSaveFile怎麽用?PHP CRMEntity::uploadAndSaveFile使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在CRMEntity的用法示例。


在下文中一共展示了CRMEntity::uploadAndSaveFile方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: insertIntoAttachment

function insertIntoAttachment($entity)
{
    global $adb, $current_user;
    $CRMEntity = new CRMEntity();
    // en el objeto $entity tenemos toda la información relacionada con el registro que se esta guardando.
    // Esta linea debe de colocarse siempre para registrar en el Vtiger que ha sido llamada la función
    $entity->focus->called = true;
    $module = $entity->getModuleName();
    /*  El id devuelto por $entity->getId() esta en el formato 1xNNNN en donde NNNN es el ID (en este caso 1x es para el modulo de SalesOrder)
     *  tomamos la parte que esta a al derecha de la "x" y ese es el correspondiente ID de pedido
     */
    list($mod, $id) = split("x", $entity->getId());
    foreach ($_FILES as $fileindex => $files) {
        //$old_attachmentid = $adb->query_result($adb->pquery("select vtiger_crmentity.crmid from vtiger_seattachmentsrel inner join vtiger_crmentity on vtiger_crmentity.crmid=vtiger_seattachmentsrel.attachmentsid where  vtiger_seattachmentsrel.crmid=?", array($id)),0,'crmid');
        if ($files['name'][0] != '') {
            $files['original_name'] = vtlib_purify($_REQUEST[$fileindex . '_hidden']);
            $file_saved = $CRMEntity->uploadAndSaveFile($id, $module, $files);
        }
    }
    return true;
}
開發者ID:jmangarret,項目名稱:vtigercrm,代碼行數:21,代碼來源:Attachment.php


注:本文中的CRMEntity::uploadAndSaveFile方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。