aboutsummaryrefslogtreecommitdiff
path: root/copylib
diff options
context:
space:
mode:
authorMarcello Stanisci <marcello.stanisci@inria.fr>2016-03-08 10:45:31 +0100
committerMarcello Stanisci <marcello.stanisci@inria.fr>2016-03-08 10:45:31 +0100
commitc9545b0619a514998ba56f5b2cd73a82d86102af (patch)
tree7150aeb7525764e2644c0ed7f20806c8c997a30a /copylib
parent3bbc4329e909c82fe838820c74044d8ecc0c81ee (diff)
updating licensing information
Diffstat (limited to 'copylib')
-rw-r--r--copylib/config.php15
-rw-r--r--copylib/merchants.php15
-rw-r--r--copylib/util.php15
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;