mirror of https://github.com/itflow-org/itflow
52 lines
2.3 KiB
PHP
52 lines
2.3 KiB
PHP
<?php
|
|
require_once "includes/inc_all_user.php";
|
|
|
|
$row = mysqli_fetch_array(mysqli_query($mysqli, "SELECT user_config_calendar_first_day FROM user_settings WHERE user_id = $session_user_id"));
|
|
$user_config_calendar_first_day = intval($row['user_config_calendar_first_day']);
|
|
|
|
?>
|
|
|
|
<div class="card card-dark">
|
|
<div class="card-header">
|
|
<h3 class="card-title"><i class="fas fa-fw fa-globe mr-2"></i>Preferences</h3>
|
|
</div>
|
|
<div class="card-body">
|
|
|
|
<form action="post.php" method="post" enctype="multipart/form-data" autocomplete="off">
|
|
<input type="hidden" name="csrf_token" value="<?php echo $_SESSION['csrf_token'] ?>">
|
|
|
|
<div class="form-group">
|
|
<label>Calendar starts on<strong class="text-danger">*</strong></label>
|
|
<div class="input-group">
|
|
<div class="input-group-prepend">
|
|
<span class="input-group-text"><i class="fa fa-fw fa-calendar-day"></i></span>
|
|
</div>
|
|
<select class="form-control select2" name="calendar_first_day" required>
|
|
<option <?php if ($user_config_calendar_first_day == '0') { echo "selected"; } ?> value="0" >Sunday</option>
|
|
<option <?php if ($user_config_calendar_first_day == '1') { echo "selected"; } ?> value="1" >Monday</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
<?php if ($session_user_role > 1) { ?>
|
|
|
|
<div class="form-group">
|
|
<div class="form-check">
|
|
<input disabled="disabled" type="checkbox" class="form-check-input" name="extension" id="extension" value="Yes" <?php if (isset($_COOKIE['user_extension_key'])) {echo "checked";} ?>>
|
|
<label class="form-check-label" for="extension">Enable Browser Extention?</label>
|
|
<p class="small">Not currently in use / Note: You must log out and back in again for these changes take effect.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<?php } ?>
|
|
|
|
<button type="submit" name="edit_your_user_preferences" class="btn btn-primary"><i class="fas fa-check mr-2"></i>Save</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<?php
|
|
require_once "includes/footer.php";
|