Skip to content
Snippets Groups Projects
Commit 540d4b75 authored by Damien's avatar Damien
Browse files

FIX #3050 Changement du fonctionnement du bouton avec le 'sans fichier'

parent 8d5bc80e
No related branches found
No related tags found
No related merge requests found
......@@ -150,35 +150,39 @@ $_SESSION['with_file'] = false;
<?php
if (!empty($_SESSION['upfile']['local_path']) && empty($_SESSION['error'])) { ?>
<i class="fa fa-check-square fa-2x" title="<?php echo _DOWNLOADED_FILE; ?>"></i>
<input type="button" onclick="$$('#file')[0].click()" class="button" value="<?php echo _DOWNLOADED_FILE; ?>" style="width: 90%;margin: 0px;margin-top: -2px;font-size: 15px;text-align: center;">
<input type="button" id="fileButton" onclick="$$('#file')[0].click();" class="button"
value="<?php if($_REQUEST['with_file'] == 'true'){ echo _WITHOUT_FILE; } else {echo _DOWNLOADED_FILE;}?>"
style="width: 90%;margin: 0px;margin-top: -2px;font-size: 15px;text-align: center;">
<?php } else { ?>
<i class="fa fa-remove fa-2x" title="<?php echo _NO_FILE_SELECTED; ?>"></i>
<input type="button" onclick="$$('#file')[0].click()" class="button" value="<?php echo _CHOOSE_FILE; ?>" style="width: 90%;margin: 0px;margin-top: -2px;font-size: 15px;text-align: center;">
<input type="button" id="fileButton" onclick="$$('#file')[0].click()" class="button" value="<?php echo _CHOOSE_FILE; ?>" style="width: 90%;margin: 0px;margin-top: -2px;font-size: 15px;text-align: center;">
<?php } ?>
</label>
<?php
if($_REQUEST['with_file'] == 'true'){ ?>
<i class="fa fa-file-o fa-fw fa-2x" id="with_file_icon" onclick="$$('#with_file')[0].click();" title="<?php echo _WITHOUT_FILE; ?> (actif)" style="cursor:pointer;"></i>
<i class="fa fa-ban fa-2x" id="with_file_icon" onclick="$$('#with_file')[0].click();" title="<?php echo _WITHOUT_FILE; ?> (actif)" style="cursor:pointer;"></i>
<?php }else{ ?>
<i class="fa fa-ban fa-2x" id="with_file_icon" onclick="$$('#with_file2')[0].click();" title="<?php echo _WITHOUT_FILE; ?>" style="cursor:pointer;"></i>
<?php } ?>
<input type="file" name="file" id="file" onchange="$('with_file').value='false';this.form.method = 'post';this.form.submit();" value="<?php
if (isset($_SESSION['file_path'])) {
echo $_SESSION['file_path'];
} ?>" style="width:200px;margin-left:33px;display:none;" />
<input type="file" name="file" id="file" onchange="$('with_file').value='false';this.form.method = 'post';this.form.submit();"
value="<?php $_REQUEST['with_file'] = 'false';
if (isset($_SESSION['file_path'])) {
echo $_SESSION['file_path'];
} ?>"
style="width:200px;margin-left:33px;display:none;" />
</p>
<p style="display:none;">
<label for="with_file">
<?php echo _WITHOUT_FILE;?>
</label>
<div align="center" style="display:none;">
<?php echo _YES;?><input <?php
if ($_REQUEST['with_file'] == 'true') { echo 'checked="checked"';}
?> type="radio" name="with_file" id="with_file2" value="true" onclick="this.form.method = 'post';this.form.submit();" />
<?php echo _NO;?><input <?php
if ($_REQUEST['with_file'] == 'false' || $_REQUEST['with_file'] == '') { echo 'checked="checked"';}
?> type="radio" name="with_file" id="with_file" value="false" onclick="this.form.method = 'post';this.form.submit();" />
<?php echo _YES;?>
<input <?php if ($_REQUEST['with_file'] == 'true') { echo 'checked="checked"';} ?>
type="radio" name="with_file" id="with_file2" value="true" onclick="this.form.method = 'post';this.form.submit();" />
<?php echo _NO;?>
<input <?php if ($_REQUEST['with_file'] == 'false' || $_REQUEST['with_file'] == '') { echo 'checked="checked"';} ?>
type="radio" name="with_file" id="with_file" value="false" onclick="this.form.method = 'post';this.form.submit();" />
</div>
</p>
</form>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment