show apikeys

This commit is contained in:
Uwe Steinmann 2020-06-16 08:28:26 +02:00
parent 2781cbd8de
commit 9278ff8b9a

View File

@ -237,6 +237,15 @@ $(document).ready( function() {
$this->showUserForm($seluser);
} /* }}} */
function apikeys() { /* {{{ */
$dms = $this->params['dms'];
$user = $this->params['user'];
$seluser = $this->params['seluser'];
?>
Hier die api keys
<?php
} /* }}} */
function showUserForm($currUser) { /* {{{ */
$dms = $this->params['dms'];
$user = $this->params['user'];
@ -625,15 +634,20 @@ $(document).ready( function() {
<?php } ?>
</div>
<div class="span8">
<div class="span4">
<?php $this->contentContainerStart(); ?>
<?php if($accessobject->check_view_access($this, array('action'=>'form'))) { ?>
<div class="ajax" data-view="UsrMgr" data-action="form" <?php echo ($seluser ? "data-query=\"userid=".$seluser->getID()."\"" : "") ?>></div>
<?php } ?>
</div>
<?php $this->contentContainerEnd(); ?>
</div>
<div class="span4">
<?php if($accessobject->check_view_access($this, array('action'=>'apikeys'))) { ?>
<div class="ajax" data-view="UsrMgr" data-action="apikeys" <?php echo ($seluser ? "data-query=\"userid=".$seluser->getID()."\"" : "") ?>></div>
<?php } ?>
</div>
</div>
<?php
$this->contentEnd();
$this->htmlEndPage();