예제 #1
0
$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));
예제 #2
0
    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");
}
예제 #3
0
                    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) {