return false;
}
+ // getPredefinedExpenses - obtains predefined expenses for team.
+ static function getPredefinedExpenses($team_id) {
+ $mdb2 = getConnection();
+
+ $result = array();
+ $sql = "select id, name, cost from tt_predefined_expenses where team_id = $team_id";
+ $res = $mdb2->query($sql);
+ $result = array();
+ if (!is_a($res, 'PEAR_Error')) {
+ while ($val = $res->fetchRow()) {
+ $result[] = $val;
+ }
+ return $result;
+ }
+ return false;
+ }
+
// getNotifications - obtains notification descriptions for team.
static function getNotifications($team_id) {
$mdb2 = getConnection();
return false;
}
- // getNotifications - obtains monthly quotas for team.
+ // getMonthlyQuotas - obtains monthly quotas for team.
static function getMonthlyQuotas($team_id) {
$mdb2 = getConnection();
<br>
<table cellspacing="0" cellpadding="4" width="100%" border="0">
<tr>
- <td align="center"> Anuko Time Tracker 1.9.37.3573 | Copyright © <a href="https://www.anuko.com/lp/tt_3.htm" target="_blank">Anuko</a> |
+ <td align="center"> Anuko Time Tracker 1.9.37.3574 | Copyright © <a href="https://www.anuko.com/lp/tt_3.htm" target="_blank">Anuko</a> |
<a href="https://www.anuko.com/lp/tt_4.htm" target="_blank">{$i18n.footer.credits}</a> |
<a href="https://www.anuko.com/lp/tt_5.htm" target="_blank">{$i18n.footer.license}</a> |
<a href="https://www.anuko.com/lp/tt_7.htm" target="_blank">{$i18n.footer.improve}</a>