aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Willingham <founder@kakste.com>2013-08-07 20:15:18 +0100
committerThomas Willingham <founder@kakste.com>2013-08-07 20:15:18 +0100
commit81a0683aaf6a0b816644a3a9a490c3f74b41109f (patch)
tree96d9a4ec0891c276cdb15a344d52dfcd4b504032
parent38d9cf4327fe108df3c269b187f5ef633c651a80 (diff)
downloadvolse-hubzilla-81a0683aaf6a0b816644a3a9a490c3f74b41109f.tar.gz
volse-hubzilla-81a0683aaf6a0b816644a3a9a490c3f74b41109f.tar.bz2
volse-hubzilla-81a0683aaf6a0b816644a3a9a490c3f74b41109f.zip
Add access policy to admin panel.
-rw-r--r--mod/admin.php10
-rwxr-xr-xview/tpl/admin_site.tpl1
2 files changed, 11 insertions, 0 deletions
diff --git a/mod/admin.php b/mod/admin.php
index f3e44afb8..7de133b38 100644
--- a/mod/admin.php
+++ b/mod/admin.php
@@ -217,6 +217,7 @@ function admin_page_site_post(&$a){
$register_policy = ((x($_POST,'register_policy')) ? intval(trim($_POST['register_policy'])) : 0);
+ $access_policy = ((x($_POST,'access_policy')) ? intval(trim($_POST['access_policy'])) : 0);
$abandon_days = ((x($_POST,'abandon_days')) ? intval(trim($_POST['abandon_days'])) : 0);
$register_text = ((x($_POST,'register_text')) ? notags(trim($_POST['register_text'])) : '');
@@ -307,6 +308,7 @@ function admin_page_site_post(&$a){
set_config('system','maximagesize', $maximagesize);
set_config('system','register_policy', $register_policy);
+ set_config('system','access_policy', $access_policy);
set_config('system','account_abandon_days', $abandon_days);
set_config('system','register_text', $register_text);
set_config('system','allowed_sites', $allowed_sites);
@@ -388,6 +390,13 @@ function admin_page_site(&$a) {
REGISTER_OPEN => t("Open")
);
+ /* Acess policy */
+ $access_choices = Array(
+ ACCESS_PRIVATE => t("Private"),
+ ACCESS_PAID => t("Paid Access"),
+ ACCESS_FREE => t("Free Access")
+ );
+
$ssl_choices = array(
SSL_POLICY_NONE => t("No SSL policy, links will track page SSL state"),
SSL_POLICY_FULL => t("Force all links to use SSL")
@@ -415,6 +424,7 @@ function admin_page_site(&$a) {
'$ssl_policy' => array('ssl_policy', t("SSL link policy"), (string) intval(get_config('system','ssl_policy')), t("Determines whether generated links should be forced to use SSL"), $ssl_choices),
'$maximagesize' => array('maximagesize', t("Maximum image size"), get_config('system','maximagesize'), t("Maximum size in bytes of uploaded images. Default is 0, which means no limits.")),
'$register_policy' => array('register_policy', t("Register policy"), get_config('system','register_policy'), "", $register_choices),
+ '$access_policy' => array('access_policy', t("Access policy"), get_config('system','access_policy'), "", $access_choices),
'$register_text' => array('register_text', t("Register text"), htmlentities(get_config('system','register_text'), ENT_QUOTES, 'UTF-8'), t("Will be displayed prominently on the registration page.")),
'$abandon_days' => array('abandon_days', t('Accounts abandoned after x days'), get_config('system','account_abandon_days'), t('Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit.')),
'$allowed_sites' => array('allowed_sites', t("Allowed friend domains"), get_config('system','allowed_sites'), t("Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains")),
diff --git a/view/tpl/admin_site.tpl b/view/tpl/admin_site.tpl
index 546175899..76dae6ea1 100755
--- a/view/tpl/admin_site.tpl
+++ b/view/tpl/admin_site.tpl
@@ -54,6 +54,7 @@
<h3>{{$registration}}</h3>
{{include file="field_input.tpl" field=$register_text}}
{{include file="field_select.tpl" field=$register_policy}}
+ {{include file="field_select.tpl" field=$access_policy}}
<div class="submit"><input type="submit" name="page_site" value="{{$submit}}" /></div>