В Sharepoint вы можете запустить скрипт, когда пользователь выходит из системы

В SharePoint 2013

У меня есть сценарий, который показывает отказ от ответственности. Этот сценарий создает cookie, и я хотел удалить cookie или установить срок его действия при выходе пользователя из системы.

Это возможно?

<p align="center">DISCLAIMER GOES HERE</p>
<script type="text/javascript" language="javascript">
var agreement = GetCookie();

// checks for cookie and displays disclaimer alert if new user
if(agreement=="")
    {
    var decision = confirm("DISCLAIMER: GOES HERE \n\nClick Ok if you agree to the disclaimer or click Cancel to close this window. \n");
            if(decision == true)
                    {
                    // writes a cookie
                    var expiredays = 7;
                    var exdate=new Date()
                    exdate.setDate(exdate.getDate()+expiredays)
                    document.cookie="PartnerAgreement"+ "=" +escape("Agree To Disclaimer")+
                    ((expiredays==null) ? "" : "; expires="+exdate.toGMTString())
                    }
                    else
                    {
                    // redirect
                    window.location = "/_layouts/signout.aspx";

                    // or close the browser window
                    //window.opener='x';
                    //window.close();
                    }
    }

// gets the Cookie if it exists
function GetCookie()
    {
    if (document.cookie.length>0)
            {
            c_name = "PartnerAgreement";
            c_start=document.cookie.indexOf(c_name + "=")
            if (c_start!=-1)
                    {
                    c_start=c_start + c_name.length+1
                    c_end=document.cookie.indexOf(";",c_start)
                    if (c_end==-1) c_end=document.cookie.length
                    return agreement = unescape(document.cookie.substring(c_start,c_end))
                    }
            }
            return "";
    }

1 ответ

Решение

Вы, конечно, можете попробовать. При нажатии "Выйти" вы будете перенаправлены на страницу SignOut.aspx в C:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\TEMPLATE\LAYOUTS папка. Попробуйте добавить код в свой блок скрипта перед window.close() заявление. Не забудьте сделать iisreset после смены страницы aspx.

Другие вопросы по тегам