dolibarr/htdocs/compta/paiement/index.php

38 lines
956 B
PHP
Raw Normal View History

<?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
* 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
require '../../main.inc.php';
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();
}
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();
print load_fiche_titre("Payments");
2009-03-02 20:07:12 +01:00
2018-08-08 12:29:36 +02:00
// End of page
llxFooter();
$db->close();