1. Import
This commit is contained in:
38
html/tools/test_dashboard.php
Normal file
38
html/tools/test_dashboard.php
Normal file
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
/*=======================================================================
|
||||
*
|
||||
* test_dashboard.php
|
||||
*
|
||||
* Autor: Marc Vollmann
|
||||
*
|
||||
=======================================================================*/
|
||||
|
||||
include_once ("../include/mcglobal.inc.php");
|
||||
include_once ("../include/auth.inc.php");
|
||||
include_once ("../include/getDashboardData.php");
|
||||
|
||||
|
||||
// Execution-Time for script
|
||||
// set_time_limit(0);
|
||||
|
||||
error_reporting(-1);
|
||||
ini_set('display_errors', true);
|
||||
|
||||
|
||||
// getDashData($type, $tag, $id);
|
||||
|
||||
$objType = "cr";
|
||||
$objId = "2036";
|
||||
$out = "";
|
||||
|
||||
$out .= getDashData($objType, "company", $objId);
|
||||
// $out .= getDashData($objType, "address", $objId);
|
||||
// $out .= getDashData($objType, "phoneFax", $objId);
|
||||
// $out .= getDashData($objType, "id", $objId);
|
||||
// $out .= getDashData($objType, "user_since", $objId);
|
||||
// $out .= getDashData($objType, "last_order", $objId);
|
||||
// $out .= getDashData($objType, "sector", $objId);
|
||||
// $out .= getDashData($objType, "yearly_sales_sum", $objId);
|
||||
|
||||
echo $out;
|
||||
?>
|
||||
Reference in New Issue
Block a user