summaryrefslogtreecommitdiffstats
path: root/pages/content/Logout.xml
blob: 5f2b95c17a2a659b4c06616e33c66b44686339bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="UTF-8" ?>
<page>
  <info>
    <name>Logout</name>
    <template>phpexec</template>
    <access>8:0</access>
    <type>c</type>
  </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>