diff options
author | Mario <mario@mariovavti.com> | 2021-03-19 11:45:40 +0100 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-03-19 11:45:40 +0100 |
commit | 7375824ed416adf79f15f85f232db0cc32235f2c (patch) | |
tree | a5950f1a5be2bd0fb14bc2c0b02e353b188bcb62 /Zotlabs/Module | |
parent | 06d47deef80d19230ee6c801c97c3e8913012671 (diff) | |
download | volse-hubzilla-7375824ed416adf79f15f85f232db0cc32235f2c.tar.gz volse-hubzilla-7375824ed416adf79f15f85f232db0cc32235f2c.tar.bz2 volse-hubzilla-7375824ed416adf79f15f85f232db0cc32235f2c.zip |
air: missing module
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r-- | Zotlabs/Module/Regapr.php | 26 |
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; + + } + +} |