summaryrefslogtreecommitdiff
path: root/vendor/aferrandini/phpqrcode/lib/PHPQRCode/Constants.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2017-10-25 16:22:10 -0700
committerFrederic Guillot <fred@kanboard.net>2017-10-25 16:22:10 -0700
commit9e2b2a32fd0e967ad3184e9a5d091a29953acb91 (patch)
tree00822e24aa1110c73ca455a8d096ef296c008cbc /vendor/aferrandini/phpqrcode/lib/PHPQRCode/Constants.php
parentc507c5416251c505cb3e088a03c6664bed73c812 (diff)
Include composer dependencies in repo
Diffstat (limited to 'vendor/aferrandini/phpqrcode/lib/PHPQRCode/Constants.php')
-rw-r--r--vendor/aferrandini/phpqrcode/lib/PHPQRCode/Constants.php58
1 files changed, 58 insertions, 0 deletions
diff --git a/vendor/aferrandini/phpqrcode/lib/PHPQRCode/Constants.php b/vendor/aferrandini/phpqrcode/lib/PHPQRCode/Constants.php
new file mode 100644
index 00000000..49fc6434
--- /dev/null
+++ b/vendor/aferrandini/phpqrcode/lib/PHPQRCode/Constants.php
@@ -0,0 +1,58 @@
+<?php
+/**
+ * Constants.php
+ *
+ * Created by arielferrandini
+ */
+
+namespace PHPQRCode;
+
+class Constants
+{
+ const QR_CACHEABLE = false;
+ const QR_CACHE_DIR = ''; //dirname(__FILE__) . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR;
+ const QR_LOG_DIR = '/tmp/qrcode_log/';
+
+ const QR_FIND_BEST_MASK = true;
+ const QR_FIND_FROM_RANDOM = false;
+ const QR_DEFAULT_MASK = 2;
+
+ const QR_PNG_MAXIMUM_SIZE = 1024;
+
+ // Encoding modes
+ const QR_MODE_NUL = -1;
+ const QR_MODE_NUM = 0;
+ const QR_MODE_AN = 1;
+ const QR_MODE_8 = 2;
+ const QR_MODE_KANJI = 3;
+ const QR_MODE_STRUCTURE = 4;
+
+ // Levels of error correction.
+ const QR_ECLEVEL_L = 0;
+ const QR_ECLEVEL_M = 1;
+ const QR_ECLEVEL_Q = 2;
+ const QR_ECLEVEL_H = 3;
+
+ // Supported output formats
+ const QR_FORMAT_TEXT = 0;
+ const QR_FORMAT_PNG = 1;
+
+ const QR_IMAGE = true;
+
+ const STRUCTURE_HEADER_BITS = 20;
+ const MAX_STRUCTURED_SYMBOLS = 16;
+
+ // Maks
+ const N1 = 3;
+ const N2 = 3;
+ const N3 = 40;
+ const N4 = 10;
+
+ const QRSPEC_VERSION_MAX = 40;
+ const QRSPEC_WIDTH_MAX = 177;
+
+ const QRCAP_WIDTH = 0;
+ const QRCAP_WORDS = 1;
+ const QRCAP_REMINDER = 2;
+ const QRCAP_EC = 3;
+}