Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
c3f82d992b | |||
8d4dccd9e9 | |||
ccff36361f | |||
b7ca768cc6 |
@ -379,7 +379,7 @@ class HomeController extends Controller
|
|||||||
if ($key['dn']) {
|
if ($key['dn']) {
|
||||||
$o = config('server')->fetch($key['dn']);
|
$o = config('server')->fetch($key['dn']);
|
||||||
|
|
||||||
foreach (collect(old())->except(['key','dn','step','_token','userpassword_hash']) as $attr => $value)
|
foreach (collect(old())->except(['key','dn','step','_token','userpassword_hash','rdn','rdn_value']) as $attr => $value)
|
||||||
$o->{$attr} = $value;
|
$o->{$attr} = $value;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -393,7 +393,7 @@ class HomeController extends Controller
|
|||||||
->with('o',$o)
|
->with('o',$o)
|
||||||
->with('page_actions',collect([
|
->with('page_actions',collect([
|
||||||
'copy'=>FALSE,
|
'copy'=>FALSE,
|
||||||
'create'=>FALSE,
|
'create'=>TRUE,
|
||||||
'delete'=>TRUE,
|
'delete'=>TRUE,
|
||||||
'edit'=>TRUE,
|
'edit'=>TRUE,
|
||||||
'export'=>TRUE,
|
'export'=>TRUE,
|
||||||
|
@ -1 +1 @@
|
|||||||
v2.1.0-rel
|
v2.1.2-dev
|
||||||
|
@ -10,6 +10,8 @@
|
|||||||
@endsection
|
@endsection
|
||||||
|
|
||||||
@section('main-content')
|
@section('main-content')
|
||||||
|
<x-error/>
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="offset-1 col-10">
|
<div class="offset-1 col-10">
|
||||||
<div class="main-card mb-3 card">
|
<div class="main-card mb-3 card">
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<ul class="nav">
|
<ul class="nav">
|
||||||
@if(isset($page_actions) && $page_actions->get('create'))
|
@if(isset($page_actions) && $page_actions->get('create'))
|
||||||
<li>
|
<li>
|
||||||
<button class="btn btn-outline-dark p-1 m-1" id="entry-copy-move" data-bs-toggle="tooltip" data-bs-placement="bottom" title="@lang('New Child')" disabled><i class="fas fa-fw fa-diagram-project fs-5"></i></button>
|
<button class="btn btn-outline-dark p-1 m-1" id="entry-create" data-bs-toggle="tooltip" data-bs-placement="bottom" title="@lang('Create Child Entry')"><i class="fas fa-fw fa-diagram-project fs-5"></i></button>
|
||||||
</li>
|
</li>
|
||||||
@endif
|
@endif
|
||||||
@if(isset($page_actions) && $page_actions->get('export'))
|
@if(isset($page_actions) && $page_actions->get('export'))
|
||||||
@ -210,6 +210,11 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
|
$('button[id=entry-create]').on('click',function(item) {
|
||||||
|
location.replace('/#{{ Crypt::encryptString(sprintf('*%s|%s','create',$dn)) }}');
|
||||||
|
location.reload();
|
||||||
|
});
|
||||||
|
|
||||||
$('button[id=entry-edit]').on('click',function(item) {
|
$('button[id=entry-edit]').on('click',function(item) {
|
||||||
item.preventDefault();
|
item.preventDefault();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user