mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-11-30 11:23:33 +00:00
show apikeys
This commit is contained in:
parent
2781cbd8de
commit
9278ff8b9a
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user