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


PHP RelatedListViewSession::addRelatedModuleToSession方法代码示例

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


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

示例1: Button_Check

$smarty->assign("VALIDATION_DATA_FIELDDATATYPE", $data['datatype']);
$smarty->assign("VALIDATION_DATA_FIELDLABEL", $data['fieldlabel']);
$check_button = Button_Check($module);
$smarty->assign("CHECK", $check_button);
$smarty->assign("MODULE", $currentModule);
$smarty->assign("EDIT_PERMISSION", isPermitted($currentModule, 'EditView', $_REQUEST['record']));
$smarty->assign("TODO_PERMISSION", CheckFieldPermission('parent_id', 'Calendar'));
$smarty->assign("EVENT_PERMISSION", CheckFieldPermission('parent_id', 'Events'));
$smarty->assign("IS_REL_LIST", isPresentRelatedLists($currentModule));
$smarty->assign("USE_ASTERISK", get_use_asterisk($current_user->id));
if ($singlepane_view == 'true') {
    $related_array = getRelatedLists($currentModule, $focus);
    $smarty->assign("RELATEDLISTS", $related_array);
    require_once 'include/ListView/RelatedListViewSession.php';
    if (!empty($_REQUEST['selected_header']) && !empty($_REQUEST['selected_tab_id'])) {
        RelatedListViewSession::addRelatedModuleToSession(vtlib_purify($_REQUEST['selected_tab_id']), vtlib_purify($_REQUEST['selected_header']));
    }
    $open_related_modules = RelatedListViewSession::getRelatedModulesFromSession();
    $smarty->assign("SELECTEDHEADERS", $open_related_modules);
}
$smarty->assign("SinglePane_View", $singlepane_view);
if (PerformancePrefs::getBoolean('DETAILVIEW_RECORD_NAVIGATION', true) && isset($_SESSION[$currentModule . '_listquery'])) {
    $recordNavigationInfo = ListViewSession::getListViewNavigation($focus->id);
    VT_detailViewNavigation($smarty, $recordNavigationInfo, $focus->id);
}
// Record Change Notification
$focus->markAsViewed($current_user->id);
// END
include_once 'vtlib/Vtiger/Link.php';
$customlink_params = array('MODULE' => $currentModule, 'RECORD' => $focus->id, 'ACTION' => vtlib_purify($_REQUEST['action']));
$smarty->assign('CUSTOM_LINKS', Vtiger_Link::getAllByType(getTabid($currentModule), array('DETAILVIEWBASIC', 'DETAILVIEW', 'DETAILVIEWWIDGET'), $customlink_params));
开发者ID:sacredwebsite,项目名称:vtigercrm,代码行数:31,代码来源:DetailView.php

示例2: getRelatedLists

    if ($mod_seq_field != null) {
        $mod_seq_id = $focus->column_fields[$mod_seq_field['name']];
    } else {
        $mod_seq_id = $focus->id;
    }
    $smarty->assign('MOD_SEQ_ID', $mod_seq_id);
    // END
    $smarty->assign("ID", $focus->id);
    $smarty->assign("NAME", $focus->lastname . ' ' . $focus->firstname);
    $smarty->assign("EMAIL", $focus->column_fields['email']);
    $smarty->assign("SECONDARY_EMAIL", $focus->column_fields['secondaryemail']);
    $related_array = getRelatedLists($currentModule, $focus);
    $smarty->assign("RELATEDLISTS", $related_array);
    require_once 'include/ListView/RelatedListViewSession.php';
    if (!empty($_REQUEST['selected_header']) && !empty($_REQUEST['relation_id'])) {
        $relationId = vtlib_purify($_REQUEST['relation_id']);
        RelatedListViewSession::addRelatedModuleToSession($relationId, vtlib_purify($_REQUEST['selected_header']));
    }
    $open_related_modules = RelatedListViewSession::getRelatedModulesFromSession();
    $smarty->assign("SELECTEDHEADERS", $open_related_modules);
    $smarty->assign("SINGLE_MOD", $app_strings['Lead']);
    $smarty->assign("MODULE", $currentmodule);
    $smarty->assign("UPDATEINFO", updateInfo($focus->id));
    $smarty->assign("MOD", $mod_strings);
    $smarty->assign("APP", $app_strings);
    $smarty->assign("THEME", $theme);
    $smarty->assign("IMAGE_PATH", $image_path);
    $check_button = Button_Check($module);
    $smarty->assign("CHECK", $check_button);
    $smarty->display("RelatedLists.tpl");
}
开发者ID:sacredwebsite,项目名称:vtigercrm,代码行数:31,代码来源:CallRelatedList.php

示例3: foreach

                    foreach ($relatedListData['entries'] as $key => $val) {
                        if (in_array($key, $checkedRecordIdList)) {
                            $relatedListData["checked"][$key] = 'checked';
                        } else {
                            $relatedListData["checked"][$key] = '';
                        }
                    }
                }
                $smarty->assign("SELECTED_RECORD_LIST", $checkedRecordIdString);
            } else {
                $smarty->assign('RESET_COOKIE', $resetCookie);
            }
        }
        // END
        require_once 'include/ListView/RelatedListViewSession.php';
        RelatedListViewSession::addRelatedModuleToSession($relationId, $header);
        $smarty->assign("MOD", $mod_strings);
        $smarty->assign("APP", $app_strings);
        $smarty->assign("THEME", $theme);
        $smarty->assign("IMAGE_PATH", $image_path);
        $smarty->assign("ID", $recordid);
        $smarty->assign("MODULE", $currentModule);
        $smarty->assign("RELATED_MODULE", $relatedModule);
        $smarty->assign("HEADER", $header);
        $smarty->assign("RELATEDLISTDATA", $relatedListData);
        $smarty->display("RelatedListDataContents.tpl");
    }
} else {
    if ($ajaxaction == "DISABLEMODULE") {
        $relationId = vtlib_purify($_REQUEST['relation_id']);
        if (!empty($relationId) && (int) $relationId > 0) {
开发者ID:kduqi,项目名称:corebos,代码行数:31,代码来源:RelatedListViewContents.php


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