예제 #1
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");
}