18 lines
918 B
PHP
18 lines
918 B
PHP
<?php
|
|
$defflip = (!cfip()) ? exit(header('HTTP/1.1 401 Unauthorized')) : 1;
|
|
|
|
if ($user->isAuthenticated()) {
|
|
$iLimit = 30;
|
|
empty($_REQUEST['start']) ? $start = 0 : $start = $_REQUEST['start'];
|
|
$aTransactions = $transaction->getTransactions($start, @$_REQUEST['filter'], $iLimit, $_SESSION['USERDATA']['id']);
|
|
$aTransactionTypes = $transaction->getTypes();
|
|
if (!$aTransactions) $_SESSION['POPUP'][] = array('CONTENT' => 'Could not find any transaction', 'TYPE' => 'alert alert-danger');
|
|
|
|
$smarty->assign('LIMIT', $iLimit);
|
|
$smarty->assign('TRANSACTIONS', $aTransactions);
|
|
$smarty->assign('TRANSACTIONTYPES', $aTransactionTypes);
|
|
$smarty->assign('TXSTATUS', array('' => '', 'Confirmed' => 'Confirmed', 'Unconfirmed' => 'Unconfirmed', 'Orphan' => 'Orphan'));
|
|
$smarty->assign('DISABLE_TRANSACTIONSUMMARY', $setting->getValue('disable_transactionsummary'));
|
|
}
|
|
$smarty->assign('CONTENT', 'default.tpl');
|