XOOPS 2.5.6  Final
 All Classes Namespaces Files Functions Variables Pages
core.php
Go to the documentation of this file.
1 <?php
20 defined('XOOPS_ROOT_PATH') or die('Restricted access');
21 
30 {
31 
32  function eventCorePmliteStart($args)
33  {
34  header("location: ./modules/pm/pmlite.php" . (empty($_SERVER['QUERY_STRING']) ? "" : "?" . $_SERVER['QUERY_STRING']));
35  exit();
36  }
37 
38  function eventCoreReadpmsgStart($args)
39  {
40  header("location: ./modules/pm/readpmsg.php" . (empty($_SERVER['QUERY_STRING']) ? "" : "?" . $_SERVER['QUERY_STRING']));
41  exit();
42  }
43 
44  function eventCoreViewpmsgStart($args)
45  {
46  header("location: ./modules/pm/viewpmsg.php" . (empty($_SERVER['QUERY_STRING']) ? "" : "?" . $_SERVER['QUERY_STRING']));
47  exit();
48  }
49 
50  function eventCoreClassSmartyXoops_pluginsXoinboxcount($args)
51  {
52  $args[0] =& xoops_getModuleHandler('message', 'pm');
53  }
54 
55 }
56 ?>