/home/techb158/exp.abdallabala.com/application/controllers
Edit: /home/techb158/exp.abdallabala.com/application/controllers/ajax.expense-calendar.php (1031B)
where_gte('date', $fdate);
$d->where_lte('date', $tdate);
$d->where('type', 'Expense');
$d->where('status', 'Uncleared');
$x = $d->find_many();
foreach ($x as $xs) {
$date = $xs['date'];
$id = $xs['id'];
$description =
$xs['description'] .
' [Amount: ' .
$config['currency_code'] .
' ' .
number_format(
$xs['amount'],
2,
$config['dec_point'],
$config['thousands_sep']
) .
']';
$url = U . 'repeating/view/' . $xs['id'];
$out[] = [
'id' => $id,
'title' => $description,
'url' => $url,
'class' => 'event-important',
'start' => strtotime($date) . '000',
];
}
echo json_encode(['success' => 1, 'result' => $out]);
exit();