| Server IP : 54.36.91.62 / Your IP : 216.73.217.112 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/amisdesseniors-fr/vesoul/modules/mod_acym/tmpl/ |
Upload File : |
<?php
// Prepare list display
use AcyMailing\Helpers\CaptchaHelper;
$listsContent = '';
if (!empty($visibleLists)) {
$listsContent .= '<table class="acym_lists">';
foreach ($visibleLists as $myListId) {
$check = '';
if (in_array($myListId, $checkedLists)) {
$check = 'checked="checked"';
}
$listsContent .= '
<tr>
<td>
<input type="checkbox" class="acym_checkbox" name="subscription[]" id="acylist_'.$myListId.'_'.$formName.'" '.$check.' value="'.$myListId.'"/>
<label for="acylist_'.$myListId.'_'.$formName.'">'.(!empty($allLists[$myListId]->display_name) ? $allLists[$myListId]->display_name
: $allLists[$myListId]->name).'</label>
</td>
</tr>';
}
$listsContent .= '</table>';
}
if ($listPosition == 'before') echo $listsContent;
?>
<table class="acym_form">
<tr>
<?php
foreach ($fields as $field) {
$field->option = !empty($field->option) ? json_decode($field->option) : new stdClass();
$fieldDB = empty($field->option->fieldDB) ? '' : json_decode($field->option->fieldDB);
$field->value = empty($field->value) ? '' : json_decode($field->value);
$valuesArray = [];
if (!empty($field->value)) {
foreach ($field->value as $value) {
$valueTmp = new stdClass();
$valueTmp->text = $value->title;
$valueTmp->value = $value->value;
if ($value->disabled == 'y') $valueTmp->disable = true;
$valuesArray[$value->value] = $valueTmp;
}
}
if (!empty($fieldDB) && !empty($fieldDB->value)) {
$fromDB = $fieldClass->getValueFromDB($fieldDB);
foreach ($fromDB as $value) {
$valuesArray[$value->value] = $value->title;
}
}
echo '<td class="onefield acyfield_'.$field->id.' acyfield_'.$field->type.'">';
echo $fieldClass->displayField($field, $field->default_value, $valuesArray, $displayOutside, true, $identifiedUser);
echo '</td>';
if (!$displayInline) echo '</tr><tr>';
if ($field->id == 2 && $config->get('email_confirmation')) {
echo $fieldClass->setEmailConfirmationField($displayOutside, $field, 'td', $displayInline);
}
}
if ($listPosition != 'before') {
echo '<td>'.$listsContent.'</td>';
if (!$displayInline) echo '</tr><tr>';
}
if (empty($identifiedUser->id) && $config->get('captcha', 'none') !== 'none' && acym_level(ACYM_ESSENTIAL)) {
echo '<td class="captchakeymodule" '.($displayOutside && !$displayInline ? 'colspan="2"' : '').'>';
$captcha = new CaptchaHelper();
echo $captcha->display($formName, $params->get('includejs') === 'module');
echo '</td>';
if (!$displayInline) echo '</tr><tr>';
}
if (!empty($termslink)) {
echo '<td class="acyterms" '.($displayOutside && !$displayInline ? 'colspan="2"' : '').'>';
echo '<input id="mailingdata_terms_'.$formName.'" class="checkbox" type="checkbox" name="terms" title="'.acym_translation('ACYM_TERMS_CONDITIONS').'"/> '.$termslink;
echo '</td>';
if (!$displayInline) echo '</tr><tr>';
}
?>
<td <?php if ($displayOutside && !$displayInline) echo 'colspan="2"'; ?> class="acysubbuttons">
<noscript>
<?php echo acym_translation('ACYM_NO_JAVASCRIPT'); ?>
</noscript>
<button type="submit"
class="btn btn-primary button subbutton"
onclick="try{ return submitAcymForm('subscribe','<?php echo $formName; ?>', 'acymSubmitSubForm'); }catch(err){alert('The form could not be submitted '+err);return false;}">
<?php echo acym_escape(acym_translation($subscribeText)); ?>
</button>
<?php if ($unsubButton === '2' || ($unsubButton === '1' && !empty($countUnsub))) { ?>
<button type="submit"
class="btn button unsubbutton"
onclick="try{ return submitAcymForm('unsubscribe','<?php echo $formName; ?>', 'acymSubmitSubForm'); }catch(err){alert('The form could not be submitted '+err);return false;}">
<?php echo acym_escape(acym_translation($unsubscribeText)); ?>
</button>
<?php } ?>
</td>
</tr>
</table>