summaryrefslogtreecommitdiffstats
path: root/pages/Logout.xml
blob: c706e2f7fb4b3d15bc130c3c48119da17eba1eb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8" ?>
<page>
  <info>
    <name>Logout</name>
    <template>phpexec</template>
    <access>8:0</access>
  </info>
  <data>
    <code>
      <![CDATA[
<?PHP
  Uses('user', 'links');
  
  $GLOBALS['user']->Logout();
  
  header('Location: ' . $GLOBALS['links']->GetNeonLink($GLOBALS['config']['home'], null, false));
  
  exit();
?>
      ]]>
    </code>
  </data>
</page>