<?php
require_once('core/connect.php');
require_once('core/CoreClass.php');
require_once('BLL/IsinBLL.php');
require_once('BLL/CurrencyBLL.php');
require_once('BLL/CustodianBLL.php');
require_once('BLL/Custody_ACBLL.php');
require_once('BLL/CurrencyBLL.php');
require_once('BLL/Transfer_BLL.php');
require_once('BLL/UserBLL.php');

$objCurrency=new CurrencyClass($db);
$arrCurrency=$objCurrency->GetCurrencyUsingArray();

$objISIN=new IsinClass($db);
$arrISIN=$objISIN->GetIsinUsingArray();
$objUser=new UserClass($db);

?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de-ch" lang="de-ch">
<head>
    <title>Vurman - Spectrum Funds</title>
    <meta name="keywords" content="Fund Services, Fund Settlement, Hedge Funds, Offshore Funds, Subscription, Redemption">
    <meta name="JOB_DESCRIPTION" content="Fund Services, Fund Settlement, Hedge Funds, Offshore Funds, Subscription, Redemption">
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <link rel="Stylesheet" href="css/styles.css" />
    <link rel="stylesheet" href="css/redmond/jquery-ui-1.7.2.custom.css" />
	<script src="js/jquery-1.3.2.min.js" type="text/javascript"></script>
    <script src="js/common.js" type="text/javascript"></script>
	<script type="text/javascript" src="js/jquery-ui-1.7.2.custom.min.js"></script>
示例#2
0
		$objAccount->amount=$_POST['search_amount'];
	}
	
	if(isset($_POST['search_currency']) && $_POST['search_currency']>0){
		$objAccount->id_currency=$_POST['search_currency'];
	}
	
	if(isset($_POST['search_user']) && $_POST['search_user']>0){
		$objAccount->id_client=$_POST['search_user'];
	}
	
}

echo $objAccount->GetAccountUsingJSON();

$objCurrency=new CurrencyClass($db);
echo $objCurrency->GetCurrencyJSON();

$objUser=new UserClass($db);
echo $objUser->GetUserUsingJSON();

?>
<script type="text/javascript">


function initPagination() {
	// count entries inside the hidden content
	var num_entries = JSONAccount.length;
	// Create content inside pagination element
	$("#Searchuser").pagination(num_entries, {
		callback: pageselectCallback,
示例#3
0
require_once('BLL/IsinBLL.php');
require_once('BLL/CurrencyBLL.php');
require_once('BLL/FundBLL.php');
require_once('BLL/Fund_DatabaseBLL.php');
require_once('BLL/FundAuditorBLL.php');
require_once('BLL/FundAdvisorBLL.php');
require_once('BLL/InvestmentDetailsBLL.php');
require_once('BLL/SubscriptionFeeBLL.php');
require_once('BLL/TransferAgentBLL.php');
require_once('BLL/CustodianBLL.php');
require_once('BLL/RedemptionDetailsBLL.php');
require_once('BLL/RedemptionFeesBLL.php');

$objFund=new FundClass($db);
$objISIN=new IsinClass($db);
$objCurrency=new CurrencyClass($db);
$objFundAdvisor=new FundAdvisorClass($db);
$objFundAuditorClass=new FundAuditorClass($db);
$arrayFundAuditorClass=$objFundAuditorClass->GetFundAuditorUsingArray();
$arrayFundAdvisor=$objFundAdvisor->GetFundAdvisorUsingArray();
$arrayCurrency=$objCurrency->GetCurrencyUsingArray();
$arrayTransferAgent1=new TransferAgentClass($db);
$arrayTransferAgent=$arrayTransferAgent1->GetTransferAgentUsingArray();
$objCustodian=new CustodianClass($db);
$arrayCustodian=$objCustodian->GetCustodianUsingArray();
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de-ch" lang="de-ch">
  <head>
   <title>Vurman - Spectrum Funds</title>
    <meta name="keywords" content="Fund Services, Fund Settlement, Hedge Funds, Offshore Funds, Subscription, Redemption">
 public function testEuro()
 {
     $cc = new CurrencyClass();
     $this->assertEquals($cc->formatWithCurrency('€', 1), '1€');
 }