2004-10-19 22:35:36 +02:00
|
|
|
<?php
|
2003-04-26 18:19:05 +02:00
|
|
|
/* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
2013-01-16 15:36:08 +01:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2003-04-26 18:19:05 +02:00
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2019-09-23 21:55:30 +02:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2003-04-26 18:19:05 +02:00
|
|
|
*
|
|
|
|
|
*/
|
2010-03-27 03:35:08 +01:00
|
|
|
|
2012-08-22 23:24:21 +02:00
|
|
|
require '../../main.inc.php';
|
2004-07-25 19:43:23 +02:00
|
|
|
|
2009-03-02 20:07:12 +01:00
|
|
|
// Security check
|
2021-02-23 21:09:01 +01:00
|
|
|
if (!$user->admin && $user->socid > 0) {
|
|
|
|
|
accessforbidden();
|
|
|
|
|
}
|
2004-07-25 19:43:23 +02:00
|
|
|
|
2003-04-26 18:19:05 +02:00
|
|
|
|
|
|
|
|
/*
|
2009-03-02 20:07:12 +01:00
|
|
|
* View
|
2003-04-26 18:19:05 +02:00
|
|
|
*/
|
|
|
|
|
|
2009-03-02 20:07:12 +01:00
|
|
|
llxHeader();
|
|
|
|
|
|
2015-09-24 18:33:48 +02:00
|
|
|
print load_fiche_titre("Payments");
|
2009-03-02 20:07:12 +01:00
|
|
|
|
2018-08-08 12:29:36 +02:00
|
|
|
// End of page
|
2011-08-27 16:24:16 +02:00
|
|
|
llxFooter();
|
2015-12-11 14:19:38 +01:00
|
|
|
$db->close();
|