- Posts: 25
- Thank you received: 7
Please Log in or Create an account to join the conversation.
<?php $name_visibility = $this->params->get('participant_name_visibility', ''); ?>
<?php $name_consent = $this->params->get('participant_name_consent', ''); ?>
<?php if (($this->params->get('participantList', 0) && ($name_visibility || $gravatar_checkbox != '0'))
|| $this->params->get('privacy_organiser', 0)
|| $gravatar_checkbox == '1'): ?>
<?php if (($this->params->get('participantList', 0) && ($name_visibility || $gravatar_checkbox != '0' || $name_consent != '0'))
|| $this->params->get('privacy_organiser', 0)
|| $gravatar_checkbox == '1'): ?>
Please Log in or Create an account to join the conversation.
Could you edit the file :
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
<?php if (($this->params->get('participantList', 0) && (($name_visibility && $name_consent != '0') || $gravatar_checkbox != '0'))
|| $this->params->get('privacy_organiser', 0)
|| $gravatar_checkbox == '1'): ?>
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
<?php if ($name_visibility && $name_consent != '0') : ?>
Please Log in or Create an account to join the conversation.
<?php // PRIVACY ?>
<?php $name_visibility = $this->params->get('participant_name_visibility', ''); ?>
<?php $name_consent = $this->params->get('participant_name_consent', ''); ?>
<?php $gravatar_consent = $this->params->get('participant_gravatar_consent', ''); ?>
<?php $gravatar_checkbox = ($this->params->get('participantDisplay') != '3' || $gravatar_consent == '1')
? $gravatar_consent: '0'; ?>
<?php if (($this->params->get('participantList', 0) && (($name_visibility && $name_consent != '0') || $gravatar_checkbox != '0'))
|| $this->params->get('privacy_organiser', 0)
|| $gravatar_checkbox == '1'): ?>
<legend><?php echo JText::_('COM_ICAGENDA_REGISTRATION_CONSENT_PERSONAL_DATA_LEGEND'); ?></legend>
<fieldset>
<?php // Privacy: Participant name ?>
<?php if ($name_visibility && $name_consent != '0') : ?>
<?php $name_consent = ($name_visibility == 1) ? '_public' : '_users'; ?>
<?php echo $this->form->renderField('consent_name' . $name_consent, 'consent'); ?>
<?php endif; ?>
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.