diff options
Diffstat (limited to 'copylib')
-rw-r--r-- | copylib/config.php | 15 | ||||
-rw-r--r-- | copylib/merchants.php | 15 | ||||
-rw-r--r-- | copylib/util.php | 15 |
3 files changed, 45 insertions, 0 deletions
diff --git a/copylib/config.php b/copylib/config.php index c6029c0c..7a83587c 100644 --- a/copylib/config.php +++ b/copylib/config.php @@ -1,4 +1,19 @@ <?php +/* + This file is part of GNU TALER. + Copyright (C) 2014, 2015 INRIA + + TALER is free software; you can redistribute it and/or modify it under the + terms of the GNU Lesser General Public License as published by the Free Software + Foundation; either version 2.1, or (at your option) any later version. + + TALER 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + TALER; see the file COPYING. If not, If not, see <http://www.gnu.org/licenses/> +*/ $REFUND_DELTA = 'P3M'; // set to false when done with local tests diff --git a/copylib/merchants.php b/copylib/merchants.php index 4f3c229a..a0951f42 100644 --- a/copylib/merchants.php +++ b/copylib/merchants.php @@ -1,4 +1,19 @@ <?php +/* + This file is part of GNU TALER. + Copyright (C) 2014, 2015 INRIA + + TALER is free software; you can redistribute it and/or modify it under the + terms of the GNU Lesser General Public License as published by the Free Software + Foundation; either version 2.1, or (at your option) any later version. + + TALER 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + TALER; see the file COPYING. If not, If not, see <http://www.gnu.org/licenses/> +*/ /** * Return a contract proposition to forward to the backend diff --git a/copylib/util.php b/copylib/util.php index 3a01f7db..83caa2c5 100644 --- a/copylib/util.php +++ b/copylib/util.php @@ -1,4 +1,19 @@ <?php +/* + This file is part of GNU TALER. + Copyright (C) 2014, 2015 INRIA + + TALER is free software; you can redistribute it and/or modify it under the + terms of the GNU Lesser General Public License as published by the Free Software + Foundation; either version 2.1, or (at your option) any later version. + + TALER 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 Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License along with + TALER; see the file COPYING. If not, If not, see <http://www.gnu.org/licenses/> +*/ function get(&$var, $default=null) { return isset($var) ? $var : $default; |