]> git.wh0rd.org - tt-rss.git/blame - lib/phpqrcode/qrlib.php
support disabling of e-mail digests entirely
[tt-rss.git] / lib / phpqrcode / qrlib.php
CommitLineData
fb70f26e
AD
1<?php\r
2/*\r
3 * PHP QR Code encoder\r
4 *\r
5 * Root library file, prepares environment and includes dependencies\r
6 *\r
7 * Based on libqrencode C library distributed under LGPL 2.1\r
8 * Copyright (C) 2006, 2007, 2008, 2009 Kentaro Fukuchi <fukuchi@megaui.net>\r
9 *\r
10 * PHP QR Code is distributed under LGPL 3\r
11 * Copyright (C) 2010 Dominik Dzienia <deltalab at poczta dot fm>\r
12 *\r
13 * This library is free software; you can redistribute it and/or\r
14 * modify it under the terms of the GNU Lesser General Public\r
15 * License as published by the Free Software Foundation; either\r
16 * version 3 of the License, or any later version.\r
17 *\r
18 * This library is distributed in the hope that it will be useful,\r
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\r
21 * Lesser General Public License for more details.\r
22 *\r
23 * You should have received a copy of the GNU Lesser General Public\r
24 * License along with this library; if not, write to the Free Software\r
25 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA\r
26 */\r
27 \r
28 $QR_BASEDIR = dirname(__FILE__).DIRECTORY_SEPARATOR;\r
29 \r
30 // Required libs\r
31 \r
32 include $QR_BASEDIR."qrconst.php";\r
33 include $QR_BASEDIR."qrconfig.php";\r
34 include $QR_BASEDIR."qrtools.php";\r
35 include $QR_BASEDIR."qrspec.php";\r
36 include $QR_BASEDIR."qrimage.php";\r
37 include $QR_BASEDIR."qrinput.php";\r
38 include $QR_BASEDIR."qrbitstream.php";\r
39 include $QR_BASEDIR."qrsplit.php";\r
40 include $QR_BASEDIR."qrrscode.php";\r
41 include $QR_BASEDIR."qrmask.php";\r
42 include $QR_BASEDIR."qrencode.php";\r
43\r