You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
788 lines
86 KiB
788 lines
86 KiB
<div class="sub">
|
|
<div id="inline-btn">
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col-xs-12 col-sm-12 col-md-12">
|
|
<div id="user_roles_list">
|
|
<div class="">
|
|
<table id="user_role_list" class="table-responsive table table-striped table-bordered dt-responsive nowrap" cellspacing="0" width="100%">
|
|
<thead>
|
|
<tr>
|
|
<th>#</th>
|
|
<th class=""><?=$this->lang->line("user_role")?></th>
|
|
<th class="">Action</th>
|
|
<th class="none">Privileges</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody></tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<th>#</th>
|
|
<th><?=$this->lang->line("user_role")?></th>
|
|
<th>Action</th>
|
|
<th>Privileges</th>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Modals -->
|
|
|
|
<!-- Modal for Add User Role -->
|
|
<div id="userRoleModal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="userRoleModalLabel">
|
|
<div class="modal-dialog modal-lg">
|
|
<!-- Modal content-->
|
|
<form role="form" data-toggle="validator" novalidate="novalidate" id="userRoleForm">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="modal">×</button>
|
|
<h4 class="modal-title" id="userRoleModalTitle"><?=$this->lang->line("new_role")?></h4>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div class="form-group">
|
|
<label for="role" class="control-label"><?=$this->lang->line("user_role")?></label>
|
|
<input type="text" class="form-control" id="role" name="role" placeholder="Role" data-error="Please fill out this field." required>
|
|
<div class="help-block with-errors"></div>
|
|
</div>
|
|
|
|
<table class="table-responsive table table-striped table-bordered dt-responsive nowrap" cellspacing="0" width="100%">
|
|
<thead>
|
|
<tr>
|
|
<td>Section</td>
|
|
<td>Sub-section</td>
|
|
<td>Privileges</td>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<!-- Générale =================================================== -->
|
|
<tr style="display: none;">
|
|
<td>Générale</td>
|
|
<td></td>
|
|
<td>
|
|
<!-- Login to backoffice -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input checked type="checkbox" name="<?=PAGE_CODE['misc']?>" id="<?=PAGE_CODE['misc'].PRIVS[PAGE_CODE['misc']]['login_to_bo']?>" value="<?=PRIVS[PAGE_CODE['misc']]['login_to_bo']?>" class="priv-with-dependency">
|
|
<?=PRIV_DESC[PAGE_CODE['misc'].PRIVS[PAGE_CODE['misc']]['login_to_bo']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Ability to upload -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input checked type="checkbox" name="<?=PAGE_CODE['misc']?>" id="<?=PAGE_CODE['misc'].PRIVS[PAGE_CODE['misc']]['upload']?>" value="<?=PRIVS[PAGE_CODE['misc']]['upload']?>" class="priv-with-depend priv-with-depend-dependency" data-depend-id="<?=PAGE_CODE['misc'].PRIVS[PAGE_CODE['misc']]['login_to_bo']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['misc'].PRIVS[PAGE_CODE['misc']]['upload']]?>
|
|
</label>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<!-- Tableau de bord & Statistiques =================================================== -->
|
|
<tr>
|
|
<td>Tableau de bord & Statistiques</td>
|
|
<td></td>
|
|
<td>
|
|
<!-- Tableau de bord page access -->
|
|
<input type="hidden" name="<?=PAGE_CODE['dashboard']?>" value="<?=PRIVS[PAGE_CODE['dashboard']]['view']?>">
|
|
<!-- <div class="checkbox disabled">
|
|
<label>
|
|
<input type="checkbox" checked readonly name="<?=PAGE_CODE['dashboard']?>" id="<?=PAGE_CODE['dashboard'].PRIVS[PAGE_CODE['dashboard']]['view']?>" value="<?=PRIVS[PAGE_CODE['dashboard']]['view']?>" class="priv-with-depend priv-with-dependency" data-depend-id="<?=PAGE_CODE['misc'].PRIVS[PAGE_CODE['misc']]['login_to_bo']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['dashboard'].PRIVS[PAGE_CODE['dashboard']]['view']]?>
|
|
</label>
|
|
</div> -->
|
|
<!-- Statistiques page access -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['statistics']?>" id="<?=PAGE_CODE['statistics'].PRIVS[PAGE_CODE['statistics']]['view']?>" value="<?=PRIVS[PAGE_CODE['statistics']]['view']?>" class="priv-with-depend priv-with-depend-dependency" data-depend-id="<?=PAGE_CODE['misc'].PRIVS[PAGE_CODE['misc']]['login_to_bo']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['statistics'].PRIVS[PAGE_CODE['statistics']]['view']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Export statistics -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['statistics']?>" id="<?=PAGE_CODE['statistics'].PRIVS[PAGE_CODE['statistics']]['export']?>" value="<?=PRIVS[PAGE_CODE['statistics']]['export']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['statistics'].PRIVS[PAGE_CODE['statistics']]['view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['statistics'].PRIVS[PAGE_CODE['statistics']]['export']]?>
|
|
</label>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<!-- Gestion des ateliers =================================================== -->
|
|
<tr>
|
|
<td rowspan="2">Gestion des ateliers</td>
|
|
<td>Events</td>
|
|
<td>
|
|
<!-- Page access -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['events']?>" id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['view']?>" value="<?=PRIVS[PAGE_CODE['events']]['view']?>" class="priv-with-depend priv-with-depend-dependency" data-depend-id="<?=PAGE_CODE['misc'].PRIVS[PAGE_CODE['misc']]['login_to_bo']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['view']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Add event -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['events']?>" id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['add']?>" value="<?=PRIVS[PAGE_CODE['events']]['add']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['add']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Edit event -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['events']?>" id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['edit']?>" value="<?=PRIVS[PAGE_CODE['events']]['edit']?>" class="priv-with-depend priv-with-depend-dependency" data-depend-id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['edit']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Delete event -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['events']?>" id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['delete']?>" value="<?=PRIVS[PAGE_CODE['events']]['delete']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['edit']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['delete']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Preview event -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['events']?>" id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['preview_event']?>" value="<?=PRIVS[PAGE_CODE['events']]['preview_event']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['preview_event']]?>
|
|
</label>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<!-- Events Schedules =================================================== -->
|
|
<tr>
|
|
<td>Events Schedules</td>
|
|
<td>
|
|
<!-- Multiple change event status -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['events']?>" id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['global_change_stat']?>" value="<?=PRIVS[PAGE_CODE['events']]['global_change_stat']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['global_change_stat']]?>
|
|
</label>
|
|
</div>
|
|
|
|
<!-- Add schedule -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['events']?>" id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_add']?>" value="<?=PRIVS[PAGE_CODE['events']]['sched_add']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_add']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Edit schedule -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['events']?>" id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_edit']?>" value="<?=PRIVS[PAGE_CODE['events']]['sched_edit']?>" class="priv-with-depend priv-with-depend-dependency" data-depend-id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_edit']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Delete schedule -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['events']?>" id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_delete']?>" value="<?=PRIVS[PAGE_CODE['events']]['sched_delete']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_edit']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_delete']]?>
|
|
</label>
|
|
</div>
|
|
<!-- =================================================== -->
|
|
<hr>
|
|
<!-- Export subscriber list -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['events']?>" id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_export_subs_list_btn']?>" value="<?=PRIVS[PAGE_CODE['events']]['sched_export_subs_list_btn']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_export_subs_list_btn']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Noshow page button -->
|
|
<!-- <div class="checkbox" style="display: none;">
|
|
<label>
|
|
<input type="checkbox" checked name="<?=PAGE_CODE['events']?>" id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_view_noshow_btn']?>" value="<?=PRIVS[PAGE_CODE['events']]['sched_view_noshow_btn']?>" class="priv-with-depend priv-with-depend-dependency" data-depend-id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_view_noshow_btn']]?>
|
|
</label>
|
|
</div> -->
|
|
<!-- Resend email button -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['events']?>" id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_resend_email_btn']?>" value="<?=PRIVS[PAGE_CODE['events']]['sched_resend_email_btn']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_resend_email_btn']]?>
|
|
</label>
|
|
</div>
|
|
<!-- =================================================== -->
|
|
<hr>
|
|
<!-- Email template button -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['events']?>" id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_email_template_btn']?>" value="<?=PRIVS[PAGE_CODE['events']]['sched_email_template_btn']?>" class="priv-with-depend priv-with-depend-dependency" data-depend-id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_email_template_btn']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Edit specific email template -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['events']?>" id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_email_template_edit']?>" value="<?=PRIVS[PAGE_CODE['events']]['sched_email_template_edit']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_email_template_btn']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_email_template_edit']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Reset specific email template -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['events']?>" id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_email_template_reset']?>" value="<?=PRIVS[PAGE_CODE['events']]['sched_email_template_reset']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_email_template_btn']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_email_template_reset']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Resend specific email template -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['events']?>" id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_email_template_resend']?>" value="<?=PRIVS[PAGE_CODE['events']]['sched_email_template_resend']?>" class="priv-with-depend priv-with-depend-dependency" data-depend-id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_email_template_btn']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_email_template_resend']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Remove specific email template -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['events']?>" id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_email_template_remove']?>" value="<?=PRIVS[PAGE_CODE['events']]['sched_email_template_remove']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_email_template_edit']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_email_template_remove']]?>
|
|
</label>
|
|
</div>
|
|
<!-- =================================================== -->
|
|
<hr>
|
|
<!-- Reminder email button -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['events']?>" id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_email_reminder_btn']?>" value="<?=PRIVS[PAGE_CODE['events']]['sched_email_reminder_btn']?>" class="priv-with-depend priv-with-depend-dependency" data-depend-id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_email_reminder_btn']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Create email reminder -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['events']?>" id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_email_reminder_create']?>" value="<?=PRIVS[PAGE_CODE['events']]['sched_email_reminder_create']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_email_reminder_btn']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_email_reminder_create']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Edit email reminder -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['events']?>" id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_email_reminder_edit']?>" value="<?=PRIVS[PAGE_CODE['events']]['sched_email_reminder_edit']?>" class="priv-with-depend priv-with-depend-dependency" data-depend-id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_email_reminder_btn']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_email_reminder_edit']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Delete email reminder -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['events']?>" id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_email_reminder_delete']?>" value="<?=PRIVS[PAGE_CODE['events']]['sched_email_reminder_delete']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_email_reminder_edit']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_email_reminder_delete']]?>
|
|
</label>
|
|
</div>
|
|
<!-- =================================================== -->
|
|
<hr>
|
|
<!-- Toggle event schedule moderation button -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['events']?>" id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_moderation_btn']?>" value="<?=PRIVS[PAGE_CODE['events']]['sched_moderation_btn']?>" class="priv-with-depend priv-with-depend-dependency" data-depend-id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_moderation_btn']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Toggle flexible moderation button -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['events']?>" id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_moderation_flex']?>" value="<?=PRIVS[PAGE_CODE['events']]['sched_moderation_flex']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_moderation_btn']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_moderation_flex']]?>
|
|
</label>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<!-- Noshow =================================================== -->
|
|
<tr>
|
|
<td>Noshow</td>
|
|
<td></td>
|
|
<td>
|
|
<!-- Access noshow page -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['noshow']?>" id="<?=PAGE_CODE['noshow'].PRIVS[PAGE_CODE['noshow']]['view']?>" value="<?=PRIVS[PAGE_CODE['noshow']]['view']?>" class="priv-with-depend priv-with-depend-dependency" data-depend-id="<?=PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_view_noshow_btn']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['events'].PRIVS[PAGE_CODE['events']]['sched_view_noshow_btn']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Toggle noshow button -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['noshow']?>" id="<?=PAGE_CODE['noshow'].PRIVS[PAGE_CODE['noshow']]['toggle']?>" value="<?=PRIVS[PAGE_CODE['noshow']]['toggle']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['noshow'].PRIVS[PAGE_CODE['noshow']]['view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['noshow'].PRIVS[PAGE_CODE['noshow']]['toggle']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Modify attendance -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['noshow']?>" id="<?=PAGE_CODE['noshow'].PRIVS[PAGE_CODE['noshow']]['mod_attendance']?>" value="<?=PRIVS[PAGE_CODE['noshow']]['mod_attendance']?>" class="priv-with-depend priv-with-depend-dependency" data-depend-id="<?=PAGE_CODE['noshow'].PRIVS[PAGE_CODE['noshow']]['view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['noshow'].PRIVS[PAGE_CODE['noshow']]['mod_attendance']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Add walk in -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['noshow']?>" id="<?=PAGE_CODE['noshow'].PRIVS[PAGE_CODE['noshow']]['add_walk_in']?>" value="<?=PRIVS[PAGE_CODE['noshow']]['add_walk_in']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['noshow'].PRIVS[PAGE_CODE['noshow']]['mod_attendance']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['noshow'].PRIVS[PAGE_CODE['noshow']]['add_walk_in']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Export noshow -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['noshow']?>" id="<?=PAGE_CODE['noshow'].PRIVS[PAGE_CODE['noshow']]['export']?>" value="<?=PRIVS[PAGE_CODE['noshow']]['export']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['noshow'].PRIVS[PAGE_CODE['noshow']]['view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['noshow'].PRIVS[PAGE_CODE['noshow']]['export']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Import noshow -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['noshow']?>" id="<?=PAGE_CODE['noshow'].PRIVS[PAGE_CODE['noshow']]['import']?>" value="<?=PRIVS[PAGE_CODE['noshow']]['import']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['noshow'].PRIVS[PAGE_CODE['noshow']]['mod_attendance']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['noshow'].PRIVS[PAGE_CODE['noshow']]['import']]?>
|
|
</label>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<!-- Gestion des emails =================================================== -->
|
|
<tr>
|
|
<td rowspan="3">Gestion des emails</td>
|
|
<td style="display: none;">Générale</td>
|
|
<td style="display: none;">
|
|
<!-- Gestion des emails page access -->
|
|
</td>
|
|
</tr>
|
|
<!-- Edition d’emails =================================================== -->
|
|
<tr>
|
|
<td>Edition d’emails</td>
|
|
<td>
|
|
<!-- Edition d’emails page access -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['email']?>" id="<?=PAGE_CODE['email'].PRIVS[PAGE_CODE['email']]['template_view']?>" value="<?=PRIVS[PAGE_CODE['email']]['template_view']?>" class="priv-with-depend priv-with-depend-dependency">
|
|
<?=PRIV_DESC[PAGE_CODE['email'].PRIVS[PAGE_CODE['email']]['template_view']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Add email template -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['email']?>" id="<?=PAGE_CODE['email'].PRIVS[PAGE_CODE['email']]['template_add']?>" value="<?=PRIVS[PAGE_CODE['email']]['template_add']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['email'].PRIVS[PAGE_CODE['email']]['template_view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['email'].PRIVS[PAGE_CODE['email']]['template_add']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Edit email template -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['email']?>" id="<?=PAGE_CODE['email'].PRIVS[PAGE_CODE['email']]['template_edit']?>" value="<?=PRIVS[PAGE_CODE['email']]['template_edit']?>" class="priv-with-depend priv-with-depend-dependency" data-depend-id="<?=PAGE_CODE['email'].PRIVS[PAGE_CODE['email']]['template_view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['email'].PRIVS[PAGE_CODE['email']]['template_edit']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Delete email template -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['email']?>" id="<?=PAGE_CODE['email'].PRIVS[PAGE_CODE['email']]['template_delete']?>" value="<?=PRIVS[PAGE_CODE['email']]['template_delete']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['email'].PRIVS[PAGE_CODE['email']]['template_edit']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['email'].PRIVS[PAGE_CODE['email']]['template_delete']]?>
|
|
</label>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<!-- Paramètres par défaut =================================================== -->
|
|
<tr>
|
|
<td>Paramètres par défaut</td>
|
|
<td>
|
|
<!-- Paramètres par défaut page access -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['email']?>" id="<?=PAGE_CODE['email'].PRIVS[PAGE_CODE['email']]['settings_view']?>" value="<?=PRIVS[PAGE_CODE['email']]['settings_view']?>" class="priv-with-depend priv-with-depend-dependency">
|
|
<?=PRIV_DESC[PAGE_CODE['email'].PRIVS[PAGE_CODE['email']]['settings_view']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Add email reminder -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['email']?>" id="<?=PAGE_CODE['email'].PRIVS[PAGE_CODE['email']]['settings_add']?>" value="<?=PRIVS[PAGE_CODE['email']]['settings_add']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['email'].PRIVS[PAGE_CODE['email']]['settings_view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['email'].PRIVS[PAGE_CODE['email']]['settings_add']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Edit email reminder -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['email']?>" id="<?=PAGE_CODE['email'].PRIVS[PAGE_CODE['email']]['settings_edit']?>" value="<?=PRIVS[PAGE_CODE['email']]['settings_edit']?>" class="priv-with-depend priv-with-depend-dependency" data-depend-id="<?=PAGE_CODE['email'].PRIVS[PAGE_CODE['email']]['settings_view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['email'].PRIVS[PAGE_CODE['email']]['settings_edit']]?>
|
|
</label>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<!-- Moderation =================================================== -->
|
|
<!-- <tr>
|
|
<td>Moderation</td>
|
|
<td></td>
|
|
<td>
|
|
Access moderation page
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['moderation']?>" id="<?=PAGE_CODE['moderation'].PRIVS[PAGE_CODE['moderation']]['view']?>" value="<?=PRIVS[PAGE_CODE['moderation']]['view']?>" class="priv-with-depend priv-with-depend-dependency" data-depend-id="<?=PAGE_CODE['misc'].PRIVS[PAGE_CODE['misc']]['login_to_bo']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['moderation'].PRIVS[PAGE_CODE['moderation']]['view']]?>
|
|
</label>
|
|
</div>
|
|
Turn moderation on off
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['moderation']?>" id="<?=PAGE_CODE['moderation'].PRIVS[PAGE_CODE['moderation']]['on_off_toggle']?>" value="<?=PRIVS[PAGE_CODE['moderation']]['on_off_toggle']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['moderation'].PRIVS[PAGE_CODE['moderation']]['view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['moderation'].PRIVS[PAGE_CODE['moderation']]['on_off_toggle']]?>
|
|
</label>
|
|
</div>
|
|
Noshow per subscriber
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['moderation']?>" id="<?=PAGE_CODE['moderation'].PRIVS[PAGE_CODE['moderation']]['nshow_per_subscriber_toggle']?>" value="<?=PRIVS[PAGE_CODE['moderation']]['nshow_per_subscriber_toggle']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['moderation'].PRIVS[PAGE_CODE['moderation']]['view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['moderation'].PRIVS[PAGE_CODE['moderation']]['nshow_per_subscriber_toggle']]?>
|
|
</label>
|
|
</div>
|
|
Reservations per subscriber
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['moderation']?>" id="<?=PAGE_CODE['moderation'].PRIVS[PAGE_CODE['moderation']]['res_per_subscriber_toggle']?>" value="<?=PRIVS[PAGE_CODE['moderation']]['res_per_subscriber_toggle']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['moderation'].PRIVS[PAGE_CODE['moderation']]['view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['moderation'].PRIVS[PAGE_CODE['moderation']]['res_per_subscriber_toggle']]?>
|
|
</label>
|
|
</div>
|
|
Event category
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['moderation']?>" id="<?=PAGE_CODE['moderation'].PRIVS[PAGE_CODE['moderation']]['event_category_toggle']?>" value="<?=PRIVS[PAGE_CODE['moderation']]['event_category_toggle']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['moderation'].PRIVS[PAGE_CODE['moderation']]['view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['moderation'].PRIVS[PAGE_CODE['moderation']]['event_category_toggle']]?>
|
|
</label>
|
|
</div>
|
|
Event location
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['moderation']?>" id="<?=PAGE_CODE['moderation'].PRIVS[PAGE_CODE['moderation']]['event_location_toggle']?>" value="<?=PRIVS[PAGE_CODE['moderation']]['event_location_toggle']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['moderation'].PRIVS[PAGE_CODE['moderation']]['view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['moderation'].PRIVS[PAGE_CODE['moderation']]['event_location_toggle']]?>
|
|
</label>
|
|
</div>
|
|
Event month
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['moderation']?>" id="<?=PAGE_CODE['moderation'].PRIVS[PAGE_CODE['moderation']]['event_month_toggle']?>" value="<?=PRIVS[PAGE_CODE['moderation']]['event_month_toggle']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['moderation'].PRIVS[PAGE_CODE['moderation']]['view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['moderation'].PRIVS[PAGE_CODE['moderation']]['event_month_toggle']]?>
|
|
</label>
|
|
</div>
|
|
Flexible moderation
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['moderation']?>" id="<?=PAGE_CODE['moderation'].PRIVS[PAGE_CODE['moderation']]['flex_mod_toggle']?>" value="<?=PRIVS[PAGE_CODE['moderation']]['flex_mod_toggle']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['moderation'].PRIVS[PAGE_CODE['moderation']]['view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['moderation'].PRIVS[PAGE_CODE['moderation']]['flex_mod_toggle']]?>
|
|
</label>
|
|
</div>
|
|
</td>
|
|
</tr> -->
|
|
<!-- Les abonnes =================================================== -->
|
|
<tr>
|
|
<td>Les abonnes</td>
|
|
<td></td>
|
|
<td>
|
|
<!-- Les abonnes page access -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['subscribers']?>" id="<?=PAGE_CODE['subscribers'].PRIVS[PAGE_CODE['subscribers']]['view']?>" value="<?=PRIVS[PAGE_CODE['subscribers']]['view']?>" class="priv-with-depend priv-with-depend-dependency" data-depend-id="<?=PAGE_CODE['misc'].PRIVS[PAGE_CODE['misc']]['login_to_bo']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['subscribers'].PRIVS[PAGE_CODE['subscribers']]['view']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Export subscribers -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['subscribers']?>" id="<?=PAGE_CODE['subscribers'].PRIVS[PAGE_CODE['subscribers']]['export']?>" value="<?=PRIVS[PAGE_CODE['subscribers']]['export']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['subscribers'].PRIVS[PAGE_CODE['subscribers']]['view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['subscribers'].PRIVS[PAGE_CODE['subscribers']]['export']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Edit subscribers -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['subscribers']?>" id="<?=PAGE_CODE['subscribers'].PRIVS[PAGE_CODE['subscribers']]['edit']?>" value="<?=PRIVS[PAGE_CODE['subscribers']]['edit']?>" class="priv-with-depend priv-with-depend-dependency" data-depend-id="<?=PAGE_CODE['subscribers'].PRIVS[PAGE_CODE['subscribers']]['view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['subscribers'].PRIVS[PAGE_CODE['subscribers']]['edit']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Delete subscriber -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['subscribers']?>" id="<?=PAGE_CODE['subscribers'].PRIVS[PAGE_CODE['subscribers']]['delete']?>" value="<?=PRIVS[PAGE_CODE['subscribers']]['delete']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['subscribers'].PRIVS[PAGE_CODE['subscribers']]['edit']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['subscribers'].PRIVS[PAGE_CODE['subscribers']]['delete']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Login as subscriber -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['subscribers']?>" id="<?=PAGE_CODE['subscribers'].PRIVS[PAGE_CODE['subscribers']]['login_as']?>" value="<?=PRIVS[PAGE_CODE['subscribers']]['login_as']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['subscribers'].PRIVS[PAGE_CODE['subscribers']]['edit']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['subscribers'].PRIVS[PAGE_CODE['subscribers']]['login_as']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Toggle moderation setting -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['subscribers']?>" id="<?=PAGE_CODE['subscribers'].PRIVS[PAGE_CODE['subscribers']]['mod_toggle']?>" value="<?=PRIVS[PAGE_CODE['subscribers']]['mod_toggle']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['subscribers'].PRIVS[PAGE_CODE['subscribers']]['edit']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['subscribers'].PRIVS[PAGE_CODE['subscribers']]['mod_toggle']]?>
|
|
</label>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<!-- Configuration du système =================================================== -->
|
|
<tr>
|
|
<td rowspan="6">Configuration du système</td>
|
|
<td style="display: none;"></td>
|
|
<td style="display: none;">
|
|
<!-- Access configuration du système page -->
|
|
</td>
|
|
</tr>
|
|
<!-- Compte utilisateur =================================================== -->
|
|
<tr>
|
|
<td>Compte utilisateur</td>
|
|
<td>
|
|
<!-- Compte utilisateur page access -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['sys_settings']?>" id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['user_mgt_view']?>" value="<?=PRIVS[PAGE_CODE['sys_settings']]['user_mgt_view']?>" class="priv-with-depend priv-with-depend-dependency" data-depend-id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['page']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['user_mgt_view']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Add users -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['sys_settings']?>" id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['user_mgt_add']?>" value="<?=PRIVS[PAGE_CODE['sys_settings']]['user_mgt_add']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['user_mgt_view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['user_mgt_add']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Edit users -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['sys_settings']?>" id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['user_mgt_edit']?>" value="<?=PRIVS[PAGE_CODE['sys_settings']]['user_mgt_edit']?>" class="priv-with-depend priv-with-depend-dependency" data-depend-id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['user_mgt_view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['user_mgt_edit']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Delete users -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['sys_settings']?>" id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['user_mgt_delete']?>" value="<?=PRIVS[PAGE_CODE['sys_settings']]['user_mgt_delete']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['user_mgt_edit']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['user_mgt_delete']]?>
|
|
</label>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<!-- User role management =================================================== -->
|
|
<tr>
|
|
<td>User role management</td>
|
|
<td>
|
|
<!-- User role page access -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['sys_settings']?>" id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['user_role_view']?>" value="<?=PRIVS[PAGE_CODE['sys_settings']]['user_role_view']?>" class="priv-with-depend priv-with-depend-dependency" data-depend-id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['page']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['user_role_view']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Add user roles -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['sys_settings']?>" id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['user_role_add']?>" value="<?=PRIVS[PAGE_CODE['sys_settings']]['user_role_add']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['user_role_view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['user_role_add']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Edit user roles -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['sys_settings']?>" id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['user_role_edit']?>" value="<?=PRIVS[PAGE_CODE['sys_settings']]['user_role_edit']?>" class="priv-with-depend priv-with-depend-dependency" data-depend-id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['user_role_view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['user_role_edit']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Delete user roles -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['sys_settings']?>" id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['user_role_delete']?>" value="<?=PRIVS[PAGE_CODE['sys_settings']]['user_role_delete']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['user_role_edit']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['user_role_delete']]?>
|
|
</label>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<!-- Ville de rattachementt =================================================== -->
|
|
<tr>
|
|
<td>Ville de rattachement</td>
|
|
<td>
|
|
<!-- Ville de rattachement page access -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['sys_settings']?>" id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['city_mgt_view']?>" value="<?=PRIVS[PAGE_CODE['sys_settings']]['city_mgt_view']?>" class="priv-with-depend priv-with-depend-dependency" data-depend-id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['page']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['city_mgt_view']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Add city -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['sys_settings']?>" id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['city_mgt_add']?>" value="<?=PRIVS[PAGE_CODE['sys_settings']]['city_mgt_add']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['city_mgt_view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['city_mgt_add']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Edit city -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['sys_settings']?>" id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['city_mgt_edit']?>" value="<?=PRIVS[PAGE_CODE['sys_settings']]['city_mgt_edit']?>" class="priv-with-depend priv-with-depend-dependency" data-depend-id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['city_mgt_view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['city_mgt_edit']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Delete city -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['sys_settings']?>" id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['city_mgt_delete']?>" value="<?=PRIVS[PAGE_CODE['sys_settings']]['city_mgt_delete']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['city_mgt_edit']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['city_mgt_delete']]?>
|
|
</label>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<!-- Type d'ateliers =================================================== -->
|
|
<tr>
|
|
<td>Type d'ateliers</td>
|
|
<td>
|
|
<!-- Type d'ateliers page access -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['sys_settings']?>" id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['evtype_mgt_view']?>" value="<?=PRIVS[PAGE_CODE['sys_settings']]['evtype_mgt_view']?>" class="priv-with-depend priv-with-depend-dependency" data-depend-id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['page']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['evtype_mgt_view']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Add event type -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['sys_settings']?>" id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['evtype_mgt_add']?>" value="<?=PRIVS[PAGE_CODE['sys_settings']]['evtype_mgt_add']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['evtype_mgt_view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['evtype_mgt_add']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Edit event type -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['sys_settings']?>" id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['evtype_mgt_edit']?>" value="<?=PRIVS[PAGE_CODE['sys_settings']]['evtype_mgt_edit']?>" class="priv-with-depend priv-with-depend-dependency" data-depend-id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['evtype_mgt_view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['evtype_mgt_edit']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Delete event type -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['sys_settings']?>" id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['evtype_mgt_delete']?>" value="<?=PRIVS[PAGE_CODE['sys_settings']]['evtype_mgt_delete']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['evtype_mgt_edit']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['evtype_mgt_delete']]?>
|
|
</label>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<!-- Formulaire de contact =================================================== -->
|
|
<tr>
|
|
<td>Formulaire de contact</td>
|
|
<td>
|
|
<!-- Formulaire de contact page access -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['sys_settings']?>" id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['contact_form_view']?>" value="<?=PRIVS[PAGE_CODE['sys_settings']]['contact_form_view']?>" class="priv-with-depend priv-with-depend-dependency" data-depend-id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['page']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['contact_form_view']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Modify contact email -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['sys_settings']?>" id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['contact_mod_email']?>" value="<?=PRIVS[PAGE_CODE['sys_settings']]['contact_mod_email']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['contact_form_view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['contact_mod_email']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Add contact nature -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['sys_settings']?>" id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['contact_nature_add']?>" value="<?=PRIVS[PAGE_CODE['sys_settings']]['contact_nature_add']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['contact_form_view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['contact_nature_add']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Edit contact nature -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['sys_settings']?>" id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['contact_nature_edit']?>" value="<?=PRIVS[PAGE_CODE['sys_settings']]['contact_nature_edit']?>" class="priv-with-depend priv-with-depend-dependency" data-depend-id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['contact_form_view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['contact_nature_edit']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Delete contact nature -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['sys_settings']?>" id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['contact_nature_delete']?>" value="<?=PRIVS[PAGE_CODE['sys_settings']]['contact_nature_delete']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['contact_nature_edit']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['sys_settings'].PRIVS[PAGE_CODE['sys_settings']]['contact_nature_delete']]?>
|
|
</label>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<!-- Personalisation =================================================== -->
|
|
<tr>
|
|
<td>Personalisation</td>
|
|
<td></td>
|
|
<td>
|
|
<!-- Change banner -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['personalization']?>" id="<?=PAGE_CODE['personalization'].PRIVS[PAGE_CODE['personalization']]['change_banner']?>" value="<?=PRIVS[PAGE_CODE['personalization']]['change_banner']?>" class="priv-with-depend">
|
|
<?=PRIV_DESC[PAGE_CODE['personalization'].PRIVS[PAGE_CODE['personalization']]['change_banner']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Change legal notice -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['personalization']?>" id="<?=PAGE_CODE['personalization'].PRIVS[PAGE_CODE['personalization']]['change_legal_notice']?>" value="<?=PRIVS[PAGE_CODE['personalization']]['change_legal_notice']?>" class="priv-with-depend">
|
|
<?=PRIV_DESC[PAGE_CODE['personalization'].PRIVS[PAGE_CODE['personalization']]['change_legal_notice']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Change registration form -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['personalization']?>" id="<?=PAGE_CODE['personalization'].PRIVS[PAGE_CODE['personalization']]['change_registration_form']?>" value="<?=PRIVS[PAGE_CODE['personalization']]['change_registration_form']?>" class="priv-with-depend">
|
|
<?=PRIV_DESC[PAGE_CODE['personalization'].PRIVS[PAGE_CODE['personalization']]['change_registration_form']]?>
|
|
</label>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<!-- FAQ =================================================== -->
|
|
<tr>
|
|
<td>FAQ</td>
|
|
<td></td>
|
|
<td>
|
|
<!-- FAQ page access -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['faq']?>" id="<?=PAGE_CODE['faq'].PRIVS[PAGE_CODE['faq']]['view']?>" value="<?=PRIVS[PAGE_CODE['faq']]['view']?>" class="priv-with-depend priv-with-depend-dependency" data-depend-id="<?=PAGE_CODE['misc'].PRIVS[PAGE_CODE['misc']]['login_to_bo']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['faq'].PRIVS[PAGE_CODE['faq']]['view']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Add FAQ -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['faq']?>" id="<?=PAGE_CODE['faq'].PRIVS[PAGE_CODE['faq']]['add']?>" value="<?=PRIVS[PAGE_CODE['faq']]['add']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['faq'].PRIVS[PAGE_CODE['faq']]['view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['faq'].PRIVS[PAGE_CODE['faq']]['add']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Edit FAQ -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['faq']?>" id="<?=PAGE_CODE['faq'].PRIVS[PAGE_CODE['faq']]['edit']?>" value="<?=PRIVS[PAGE_CODE['faq']]['edit']?>" class="priv-with-depend priv-with-depend-dependency" data-depend-id="<?=PAGE_CODE['faq'].PRIVS[PAGE_CODE['faq']]['view']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['faq'].PRIVS[PAGE_CODE['faq']]['edit']]?>
|
|
</label>
|
|
</div>
|
|
<!-- Delete FAQ -->
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" name="<?=PAGE_CODE['faq']?>" id="<?=PAGE_CODE['faq'].PRIVS[PAGE_CODE['faq']]['delete']?>" value="<?=PRIVS[PAGE_CODE['faq']]['delete']?>" class="priv-with-depend" data-depend-id="<?=PAGE_CODE['faq'].PRIVS[PAGE_CODE['faq']]['edit']?>">
|
|
<?=PRIV_DESC[PAGE_CODE['faq'].PRIVS[PAGE_CODE['faq']]['delete']]?>
|
|
</label>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<!-- =================================================== -->
|
|
</tbody>
|
|
</table>
|
|
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-default close-button" data-dismiss="modal"><?=$this->lang->line('js')["btn"]["_close"]?></button>
|
|
<button type="button" class="btn btn-primary" id="save-user-role">Sauvegarder</button>
|
|
<!-- <button type="button" class="btn btn-primary" style="display:none;" id="updateUserAccountBtn" onclick="users_account._validate('edit');"><?=$this->lang->line('btn')["save_changes"]?></button> -->
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|