mirror of
https://github.com/e107inc/e107.git
synced 2025-02-13 11:04:38 +01:00
16 lines
269 B
PHP
Executable File
16 lines
269 B
PHP
Executable File
<?php
|
|
// $Id: main.php,v 1.3 2008-11-25 17:38:56 mcfly_e107 Exp $
|
|
function url_pm_main($parms)
|
|
{
|
|
switch($parms['f'])
|
|
{
|
|
case 'box':
|
|
return e_PLUGIN_ABS."pm/pm.php?{$parms['box']}";
|
|
break;
|
|
|
|
case 'send':
|
|
return e_PLUGIN_ABS."pm/pm.php?send";
|
|
break;
|
|
}
|
|
}
|