{
static $settings = array('name', 'broughtby', 'broughtbyurl',
'email', 'timezone', 'language');
- static $booleans = array('closed', 'inviteonly', 'private');
$values = array();
$this->unli();
$this->li();
- $this->out->checkbox('closed', _('Closed'),
- (bool) $this->value('closed'),
- _('Is registration on this site prohibited?'));
-
- $this->unli();
- $this->li();
-
- $this->out->checkbox('inviteonly', _('Invite-only'),
- (bool) $this->value('inviteonly'),
- _('Is registration on this site only open to invited users?'));
-
- $this->unli();
- $this->li();
-
$this->out->checkbox('private', _('Private'),
(bool) $this->value('private'),
_('Prohibit anonymous users (not logged in) from viewing site?'));