2015-08-23 22:38:18 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
|
|
function regmod_content(&$a) {
|
|
|
|
|
|
|
|
global $lang;
|
|
|
|
|
|
|
|
$_SESSION['return_url'] = $a->cmd;
|
|
|
|
|
|
|
|
if(! local_channel()) {
|
|
|
|
info( t('Please login.') . EOL);
|
|
|
|
$o .= '<br /><br />' . login(($a->config['system']['register_policy'] == REGISTER_CLOSED) ? 0 : 1);
|
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(! is_site_admin()) {
|
|
|
|
notice( t('Permission denied.') . EOL);
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
if(argc() != 3)
|
|
|
|
killme();
|
|
|
|
|
|
|
|
$cmd = argv(1);
|
|
|
|
$hash = argv(2);
|
|
|
|
|
|
|
|
if($cmd === 'deny') {
|
2016-02-28 12:11:12 +01:00
|
|
|
if (! account_deny($hash)) killme();
|
2015-08-23 22:38:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if($cmd === 'allow') {
|
2016-02-28 12:11:12 +01:00
|
|
|
if (! account_allow($hash)) killme();
|
2015-08-23 22:38:18 +02:00
|
|
|
}
|
|
|
|
}
|