mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-14 15:13:29 +01:00
242 lines
9.4 KiB
PHP
242 lines
9.4 KiB
PHP
@extends('header')
|
|
|
|
@section('content')
|
|
@parent
|
|
@include('accounts.nav', ['selected' => ACCOUNT_USER_MANAGEMENT])
|
|
|
|
{!! Former::open($url)->autocomplete('off')->method($method)->addClass('warn-on-exit user-form')->rules(array(
|
|
'first_name' => 'required',
|
|
'last_name' => 'required',
|
|
'email' => 'required|email',
|
|
)); !!}
|
|
|
|
@if ($user)
|
|
{!! Former::populate($user) !!}
|
|
{{ Former::populateField('is_admin', intval($user->is_admin)) }}
|
|
@endif
|
|
|
|
<div style="display:none">
|
|
{!! Former::text('action') !!}
|
|
</div>
|
|
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title">{!! trans('texts.user_details') !!}</h3>
|
|
</div>
|
|
<div class="panel-body form-padding-right">
|
|
|
|
{!! Former::text('first_name') !!}
|
|
{!! Former::text('last_name') !!}
|
|
{!! Former::text('email') !!}
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title">{!! trans('texts.permissions') !!}</h3>
|
|
</div>
|
|
<div class="panel-body">
|
|
|
|
@if ( ! Utils::hasFeature(FEATURE_USER_PERMISSIONS))
|
|
<div class="alert alert-warning">{{ trans('texts.upgrade_for_permissions') }}</div>
|
|
<script type="text/javascript">
|
|
$(function() {
|
|
$('input[type=checkbox]').prop('disabled', true);
|
|
})
|
|
</script>
|
|
@endif
|
|
|
|
{!! Former::checkbox('is_admin')
|
|
->label(' ')
|
|
->value(1)
|
|
->text(trans('texts.administrator'))
|
|
->help(trans('texts.administrator_help')) !!}
|
|
|
|
<div class="panel-body">
|
|
<table class="table table-striped dataTable" >
|
|
<thead>
|
|
<th></th>
|
|
<th style="padding-bottom:0px">{!! Former::checkbox('create')
|
|
->text( trans('texts.create') )
|
|
->value('create_')
|
|
->label(' ')
|
|
->id('create_all') !!}</th>
|
|
<th style="padding-bottom:0px">{!! Former::checkbox('view')
|
|
->text( trans('texts.view') )
|
|
->value('view_')
|
|
->label(' ')
|
|
->id('view_all') !!}</th>
|
|
<th style="padding-bottom:0px">{!! Former::checkbox('edit')
|
|
->text( trans('texts.edit') )
|
|
->value('edit_')
|
|
->label(' ')
|
|
->id('edit_all') !!}</th>
|
|
</thead>
|
|
<tbody>
|
|
@foreach (json_decode(PERMISSION_ENTITIES,1) as $permissionEntity)
|
|
|
|
<?php
|
|
if($user)
|
|
$permissions = json_decode($user->permissions,1);
|
|
else
|
|
$permissions = [];
|
|
?>
|
|
|
|
<tr>
|
|
<td>{{ ucfirst($permissionEntity) }}</td>
|
|
<td>{!! Former::checkbox('permissions[create_' . $permissionEntity . ']')
|
|
->label(' ')
|
|
->value('create_' . $permissionEntity . '')
|
|
->id('create_' . $permissionEntity . '')
|
|
->check(is_array($permissions) && in_array('create_' . $permissionEntity, $permissions, FALSE) ? true : false) !!}</td>
|
|
<td>{!! Former::checkbox('permissions[view_' . $permissionEntity . ']')
|
|
->label(' ')
|
|
->value('view_' . $permissionEntity . '')
|
|
->id('view_' . $permissionEntity . '')
|
|
->check(is_array($permissions) && in_array('view_' . $permissionEntity, $permissions, FALSE) ? true : false) !!}</td>
|
|
<td>{!! Former::checkbox('permissions[edit_' . $permissionEntity . ']')
|
|
->label(' ')
|
|
->value('edit_' . $permissionEntity . '')
|
|
->id('edit_' . $permissionEntity . '')
|
|
->check(is_array($permissions) && in_array('edit_' . $permissionEntity, $permissions, FALSE) ? true : false) !!}</td>
|
|
</tr>
|
|
@endforeach
|
|
<tr><td><input type="checkbox" id="view_contact" value="view_contact" name="permissions[view_contact]" style="display:none">
|
|
<input type="checkbox" id="edit_contact" value="edit_contact" name="permissions[edit_contact]" style="display:none">
|
|
<input type="checkbox" id="create_contact" value="create_contact" name="permissions[create_contact]" style="display:none"></td></tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<center class="buttons">
|
|
{!! Button::normal(trans('texts.cancel'))->asLinkTo(URL::to('/settings/user_management'))->appendIcon(Icon::create('remove-circle'))->large() !!}
|
|
{!! ($user) ? Button::success(trans('texts.save'))->withAttributes(['onclick' => 'submitAction("save")'])->large()->appendIcon(Icon::create('floppy-disk')) : false !!}
|
|
{!! (! $user || ! $user->confirmed) ? Button::info(trans($user ? 'texts.resend_invite' : 'texts.send_invite'))->withAttributes(['onclick' => 'submitAction("email")'])->large()->appendIcon(Icon::create('send')) : false !!}
|
|
</center>
|
|
|
|
{!! Former::close() !!}
|
|
|
|
<script type="text/javascript">
|
|
|
|
function submitAction(value) {
|
|
$('#action').val(value);
|
|
$('.user-form').submit();
|
|
}
|
|
|
|
</script>
|
|
|
|
@stop
|
|
|
|
@section('onReady')
|
|
|
|
$('#first_name').focus();
|
|
|
|
/*
|
|
*
|
|
* Iterate over all permission checkboxes and ensure VIEW/EDIT
|
|
* combinations are enabled/disabled depending on VIEW state.
|
|
*
|
|
*/
|
|
|
|
$("input[type='checkbox'][id^='view_']").each(function() {
|
|
|
|
var entity = $(this).attr('id')
|
|
.replace('create_',"")
|
|
.replace('view_',"")
|
|
.replace('edit_',"")
|
|
.replace(']',"")
|
|
.replace('[',""); //get entity name
|
|
|
|
setCheckboxEditValue(entity);
|
|
setContactPermission();
|
|
|
|
});
|
|
|
|
|
|
/*
|
|
*
|
|
* Checks state of View/Edit checkbox, will enable/disable check/uncheck
|
|
* dependent on state of VIEW permission.
|
|
*
|
|
*/
|
|
|
|
$("input[type='checkbox'][id^='view_']").change(function(){
|
|
|
|
var entity = $(this).attr('id')
|
|
.replace('create_',"")
|
|
.replace('view_',"")
|
|
.replace('edit_',"")
|
|
.replace(']',"")
|
|
.replace('[',""); //get entity name
|
|
|
|
setCheckboxEditValue(entity);
|
|
setContactPermission();
|
|
|
|
});
|
|
|
|
$('#edit_client, #view_client, #create_client').change(function() {
|
|
switch($(this).val()) {
|
|
case 'create_client':
|
|
$('#create_contact').prop('disabled', false); //set state of edit checkbox
|
|
$('#create_contact').prop('checked', $('#create_client').is(':checked') );
|
|
break;
|
|
|
|
case 'view_client':
|
|
$('#view_contact').prop('disabled', false); //set state of edit checkbox
|
|
$('#view_contact').prop('checked', $('#view_client').is(':checked') );
|
|
break;
|
|
|
|
case 'edit_client':
|
|
$('#edit_contact').prop('disabled', false); //set state of edit checkbox
|
|
$('#edit_contact').prop('checked', $('#edit_client').is(':checked') );
|
|
break;
|
|
}
|
|
|
|
});
|
|
|
|
$('#create_all, #view_all, #edit_all').change(function(){
|
|
|
|
var checked = $(this).is(':checked');
|
|
var permission_type = $(this).val();
|
|
|
|
$("input[type='checkbox'][id^=" + permission_type + "]").each(function() {
|
|
|
|
var entity = $(this).attr('id')
|
|
.replace('create_',"")
|
|
.replace('view_',"")
|
|
.replace('edit_',"")
|
|
.replace(']',"")
|
|
.replace('[',""); //get entity name
|
|
|
|
$('#' + permission_type + entity).prop('checked', checked); //set state of edit checkbox
|
|
|
|
setCheckboxEditValue(entity);
|
|
setContactPermission();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
function setCheckboxEditValue(entity) {
|
|
|
|
if(!$('#view_' + entity).is(':checked')) {
|
|
$('#edit_' + entity).prop('checked', false); //remove checkbox value from edit dependant on View state.
|
|
}
|
|
|
|
$('#edit_' + entity).prop('disabled', !$('#view_' + entity).is(':checked')); //set state of edit checkbox
|
|
|
|
}
|
|
|
|
function setContactPermission() {
|
|
|
|
$('#view_contact').prop('checked', $('#view_client').is(':checked') );
|
|
$('#edit_contact').prop('checked', $('#edit_client').is(':checked') );
|
|
$('#create_contact').prop('checked', $('#create_client').is(':checked') );
|
|
|
|
}
|
|
@stop
|