reinsert
This commit is contained in:
parent
2949dbe982
commit
13ecac28d0
29 changed files with 5181 additions and 0 deletions
126
livesupport/modules/alib/var/example/alibExCls.php
Normal file
126
livesupport/modules/alib/var/example/alibExCls.php
Normal file
|
@ -0,0 +1,126 @@
|
|||
<?php
|
||||
// $Id: alibExCls.php,v 1.1 2004/07/23 00:22:13 tomas Exp $
|
||||
require_once"alib_h.php";
|
||||
require_once"alibExTestAuth.php";
|
||||
|
||||
if(isset($_GET['id']) && is_numeric($_GET['id'])){ $id = $_GET['id']; $list=false; }
|
||||
else $list=true;
|
||||
|
||||
// prefill data structure for template
|
||||
if($list){
|
||||
$d = array(
|
||||
'cls' => $alib->getClasses(),
|
||||
'loggedAs' => $login,
|
||||
);
|
||||
}else{
|
||||
$d = array(
|
||||
'rows' => $alib->listClass($id),
|
||||
'id' => $id,
|
||||
'loggedAs' => $login,
|
||||
'cname' => $alib->getClassName($id),
|
||||
'cls' => $alib->getClasses(),
|
||||
'objs' => $alib->getSubTree(null, true)
|
||||
);
|
||||
}
|
||||
$d['msg'] = $_SESSION['alertMsg']; unset($_SESSION['alertMsg']);
|
||||
|
||||
require_once"alib_f.php";
|
||||
// template follows:
|
||||
?>
|
||||
<html><head>
|
||||
<title>Alib - class editor</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||
<link rel="stylesheet" type="text/css" href="default.css">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
#menu { float:right; margin-right:1em; border:1px solid black; background-color:#ddd; padding:2px 1ex; }
|
||||
#parent, #parent a { background-color:#888; font-weight:bold; color:white; }
|
||||
#tree { width:60%; }
|
||||
-->
|
||||
</style>
|
||||
</head><body>
|
||||
<div id="menu">
|
||||
Logged as: <span class="b"><?php echo$d['loggedAs']?></span><br>
|
||||
<a href="alibHttp.php?act=logout">logout</a><br>
|
||||
<a href="alibExTree.php">Tree editor</a><br>
|
||||
<?php if(!$list){?>
|
||||
<a href="alibExPerms.php?id=<?php echo$d['id']?>">Perm editor</a><br>
|
||||
<?php }?>
|
||||
<a href="alibExSubj.php">User/Group editor</a><br>
|
||||
</div>
|
||||
|
||||
<h1>Class editor</h1>
|
||||
|
||||
<?php if($list){?>
|
||||
<h3>All classes:</h3>
|
||||
<table id="tree" border="0" cellpadding="5">
|
||||
<?php if(is_array($d['cls'])&&count($d['cls'])>0) foreach($d['cls'] as $k=>$c) {?>
|
||||
<tr class="<?php echo(($o=1-$o) ? 'odd' : 'ev')?>">
|
||||
<td><?php echo$c['id']?></td>
|
||||
<td class="b"><a href="alibExCls.php?id=<?php echo$c['id']?>"><?php echo$c['cname']?></a></td>
|
||||
<?php # <td><?php echo$c['cond']? ></td>?>
|
||||
<td>
|
||||
<a class="lnkbutt" href="alibHttp.php?act=removeClass&id=<?php echo$c['id']?>">delete</a>
|
||||
<a class="lnkbutt" href="alibExPerms.php?id=<?php echo$c['id']?>&reid=<?php echo$d['id']?>">permissions</a>
|
||||
</td>
|
||||
</tr>
|
||||
<?php }else{?>
|
||||
<tr class="odd"><td colspan="3">none</td></tr>
|
||||
<?php }?>
|
||||
</table>
|
||||
|
||||
<form action="alibHttp.php" method="post">
|
||||
Add class with name
|
||||
<input type="text" name="name" value="" size="10">
|
||||
<input type="hidden" name="act" value="addClass">
|
||||
<input type="submit" value="Do it!">
|
||||
</form>
|
||||
|
||||
<?php }else{?>
|
||||
|
||||
<h2>Objects in class <?php echo$d['cname']?>:</h2>
|
||||
|
||||
<table id="tree" border="0" cellpadding="5">
|
||||
<tr id="parent">
|
||||
<td colspan="4">
|
||||
<a href="alibExCls.php">All classes</a>
|
||||
</td>
|
||||
</tr>
|
||||
<?php if(is_array($d['rows'])&&count($d['rows'])>0) foreach($d['rows'] as $k=>$row) {?>
|
||||
<tr class="<?php echo(($o=1-$o) ? 'odd' : 'ev')?>">
|
||||
<td><?php echo$row['id']?></td>
|
||||
<td class="b"><a href="alibExTree.php?id=<?php echo$row['id']?>"><?php echo$row['name']?></a></td>
|
||||
<td><?php echo$row['type']?></td>
|
||||
<td>
|
||||
<a class="lnkbutt" href="alibHttp.php?act=removeObjFromClass&oid=<?php echo$row['id']?>&id=<?php echo$d['id']?>">removeFromClass</a>
|
||||
<?php /*?> <a class="lnkbutt" href="alibExPerms.php?id=<?php echo$row['id']?>&reid=<?php echo$d['id']?>">permissions</a><?php */?>
|
||||
</td>
|
||||
</tr>
|
||||
<?php }else{?>
|
||||
<tr class="odd"><td colspan="4">none</td></tr>
|
||||
<?php }?>
|
||||
</table>
|
||||
|
||||
<form action="alibHttp.php" method="post">
|
||||
Add object
|
||||
<select name="oid">
|
||||
<?php if(is_array($d['objs'])) foreach($d['objs'] as $k=>$row) {?>
|
||||
<option value="<?php echo$row['id']?>"><?php echo str_repeat(' ', $row['level'])?><?php echo$row['name']?></option>
|
||||
<?php }?>
|
||||
</select>
|
||||
to class <?php echo$d['cname']?>
|
||||
<input type="hidden" name="act" value="addObj2Class">
|
||||
<input type="hidden" name="id" value="<?php echo$d['id']?>">
|
||||
<input type="submit" value="Do it!">
|
||||
</form>
|
||||
|
||||
<?php }?>
|
||||
|
||||
<?php if($d['msg']){?>
|
||||
<script type="text/javascript">
|
||||
<!--
|
||||
alert('<?php echo$d['msg']?>');
|
||||
-->
|
||||
</script>
|
||||
<?php }?>
|
||||
</body></html>
|
Loading…
Add table
Add a link
Reference in a new issue