1
0
mirror of https://github.com/e107inc/e107.git synced 2025-02-15 12:05:23 +01:00

16 lines
269 B
PHP
Raw Normal View History

2008-11-25 16:26:03 +00:00
<?php
2008-11-25 17:38:56 +00:00
// $Id: main.php,v 1.3 2008-11-25 17:38:56 mcfly_e107 Exp $
2008-11-25 16:26:03 +00:00
function url_pm_main($parms)
{
2008-11-25 17:38:56 +00:00
switch($parms['f'])
2008-11-25 16:26:03 +00:00
{
2008-11-25 17:38:56 +00:00
case 'box':
return e_PLUGIN_ABS."pm/pm.php?{$parms['box']}";
break;
2008-11-25 16:26:03 +00:00
2008-11-25 17:38:56 +00:00
case 'send':
return e_PLUGIN_ABS."pm/pm.php?send";
break;
2008-11-25 16:26:03 +00:00
}
}