aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2021-03-19 11:45:40 +0100
committerMario <mario@mariovavti.com>2021-03-19 11:45:40 +0100
commit7375824ed416adf79f15f85f232db0cc32235f2c (patch)
treea5950f1a5be2bd0fb14bc2c0b02e353b188bcb62 /Zotlabs
parent06d47deef80d19230ee6c801c97c3e8913012671 (diff)
downloadvolse-hubzilla-7375824ed416adf79f15f85f232db0cc32235f2c.tar.gz
volse-hubzilla-7375824ed416adf79f15f85f232db0cc32235f2c.tar.bz2
volse-hubzilla-7375824ed416adf79f15f85f232db0cc32235f2c.zip
air: missing module
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Module/Regapr.php26
1 files changed, 26 insertions, 0 deletions
diff --git a/Zotlabs/Module/Regapr.php b/Zotlabs/Module/Regapr.php
new file mode 100644
index 000000000..9e6cb1de8
--- /dev/null
+++ b/Zotlabs/Module/Regapr.php
@@ -0,0 +1,26 @@
+<?php
+namespace Zotlabs\Module;
+
+use Zotlabs\Web\Controller;
+
+class Regapr extends Controller {
+
+ function get() {
+
+ $o = '';
+
+ $did2 = hex2bin(argv(1));
+
+ if(!$did2)
+ return $o;
+
+ $o .= 'Thank you for registering!' . PHP_EOL;
+ $o .= 'After your account has been approved by our administrator you will be able to login with your ID' . PHP_EOL;
+ $o .= $did2 . PHP_EOL;
+ $o .= 'and your provided password.';
+
+ return $o;
+
+ }
+
+}