32 lines
725 B
PHP
32 lines
725 B
PHP
<?php
|
|
/*=======================================================================
|
|
*
|
|
* call_script.php
|
|
*
|
|
* Autor: Marc Vollmann
|
|
*
|
|
=======================================================================*/
|
|
|
|
|
|
include_once ("../include/mcglobal.inc.php");
|
|
// include_once ("../include/auth.inc.php");
|
|
echo "";
|
|
|
|
$auth = trim($argv[1]);
|
|
$path = trim($argv[2]);
|
|
$script = trim($argv[3]);
|
|
$objId = trim($argv[4]);
|
|
$cascadingObjType = trim($argv[5]);
|
|
$specialPageTitle = trim($argv[6]);
|
|
|
|
|
|
if ($auth == "acapella7890" && $path != "" && $script != "" && $objId != "") :
|
|
|
|
$deactivateMenu = "1";
|
|
$hideButtons = "1";
|
|
|
|
include_once ("../admin/metafield_special.php");
|
|
endif;
|
|
|
|
|
|
?>
|