mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-12-01 20:03:33 +00:00
show apikeys
This commit is contained in:
parent
2781cbd8de
commit
9278ff8b9a
|
|
@ -237,6 +237,15 @@ $(document).ready( function() {
|
||||||
$this->showUserForm($seluser);
|
$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) { /* {{{ */
|
function showUserForm($currUser) { /* {{{ */
|
||||||
$dms = $this->params['dms'];
|
$dms = $this->params['dms'];
|
||||||
$user = $this->params['user'];
|
$user = $this->params['user'];
|
||||||
|
|
@ -625,15 +634,20 @@ $(document).ready( function() {
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="span8">
|
<div class="span4">
|
||||||
<?php $this->contentContainerStart(); ?>
|
<?php $this->contentContainerStart(); ?>
|
||||||
<?php if($accessobject->check_view_access($this, array('action'=>'form'))) { ?>
|
<?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>
|
<div class="ajax" data-view="UsrMgr" data-action="form" <?php echo ($seluser ? "data-query=\"userid=".$seluser->getID()."\"" : "") ?>></div>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
</div>
|
</div>
|
||||||
<?php $this->contentContainerEnd(); ?>
|
<?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
|
<?php
|
||||||
$this->contentEnd();
|
$this->contentEnd();
|
||||||
$this->htmlEndPage();
|
$this->htmlEndPage();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user