2012-12-14 07:53:13 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Implementation of AttributeMgr view
|
|
|
|
*
|
|
|
|
* @category DMS
|
2013-02-14 11:10:53 +00:00
|
|
|
* @package SeedDMS
|
2012-12-14 07:53:13 +00:00
|
|
|
* @license GPL 2
|
|
|
|
* @version @version@
|
|
|
|
* @author Uwe Steinmann <uwe@steinmann.cx>
|
|
|
|
* @copyright Copyright (C) 2002-2005 Markus Westphal,
|
|
|
|
* 2006-2008 Malcolm Cowe, 2010 Matteo Lucarelli,
|
|
|
|
* 2010-2012 Uwe Steinmann
|
|
|
|
* @version Release: @package_version@
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Include parent class
|
|
|
|
*/
|
|
|
|
require_once("class.Bootstrap.php");
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class which outputs the html page for AttributeMgr view
|
|
|
|
*
|
|
|
|
* @category DMS
|
2013-02-14 11:10:53 +00:00
|
|
|
* @package SeedDMS
|
2012-12-14 07:53:13 +00:00
|
|
|
* @author Markus Westphal, Malcolm Cowe, Uwe Steinmann <uwe@steinmann.cx>
|
|
|
|
* @copyright Copyright (C) 2002-2005 Markus Westphal,
|
|
|
|
* 2006-2008 Malcolm Cowe, 2010 Matteo Lucarelli,
|
|
|
|
* 2010-2012 Uwe Steinmann
|
|
|
|
* @version Release: @package_version@
|
|
|
|
*/
|
2013-02-14 11:10:53 +00:00
|
|
|
class SeedDMS_View_AttributeMgr extends SeedDMS_Bootstrap_Style {
|
2012-12-14 07:53:13 +00:00
|
|
|
|
|
|
|
function show() { /* {{{ */
|
|
|
|
$dms = $this->params['dms'];
|
|
|
|
$user = $this->params['user'];
|
|
|
|
$attrdefs = $this->params['attrdefs'];
|
|
|
|
|
|
|
|
$this->htmlStartPage(getMLText("admin_tools"));
|
|
|
|
?>
|
|
|
|
|
|
|
|
<script language="JavaScript">
|
|
|
|
obj = -1;
|
|
|
|
function showAttributeDefinitions(selectObj) {
|
|
|
|
if (obj != -1)
|
|
|
|
obj.style.display = "none";
|
|
|
|
|
|
|
|
id = selectObj.options[selectObj.selectedIndex].value;
|
|
|
|
if (id == -1)
|
|
|
|
return;
|
|
|
|
|
|
|
|
obj = document.getElementById("attrdefs" + id);
|
|
|
|
obj.style.display = "";
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<?php
|
|
|
|
$this->globalNavigation();
|
|
|
|
$this->contentStart();
|
|
|
|
$this->pageNavigation(getMLText("admin_tools"), "admin_tools");
|
|
|
|
$this->contentHeading(getMLText("attrdef_management"));
|
|
|
|
?>
|
|
|
|
|
|
|
|
<div class="row-fluid">
|
|
|
|
<div class="span4">
|
|
|
|
<div class="well">
|
|
|
|
<?php echo getMLText("selection")?>:
|
2013-02-06 13:56:29 +00:00
|
|
|
<select onchange="showAttributeDefinitions(this)" id="selector" class="span9">
|
2012-12-14 07:53:13 +00:00
|
|
|
<option value="-1"><?php echo getMLText("choose_attrdef")?>
|
|
|
|
<option value="0"><?php echo getMLText("new_attrdef")?>
|
|
|
|
<?php
|
|
|
|
$selected=0;
|
|
|
|
$count=2;
|
|
|
|
if($attrdefs) {
|
|
|
|
foreach ($attrdefs as $attrdef) {
|
|
|
|
|
|
|
|
if (isset($_GET["attrdefid"]) && $attrdef->getID()==$_GET["attrdefid"]) $selected=$count;
|
|
|
|
switch($attrdef->getObjType()) {
|
2013-02-14 11:10:53 +00:00
|
|
|
case SeedDMS_Core_AttributeDefinition::objtype_all:
|
2012-12-14 07:53:13 +00:00
|
|
|
$ot = getMLText("all");
|
|
|
|
break;
|
2013-02-14 11:10:53 +00:00
|
|
|
case SeedDMS_Core_AttributeDefinition::objtype_folder:
|
2012-12-14 07:53:13 +00:00
|
|
|
$ot = getMLText("folder");
|
|
|
|
break;
|
2013-02-14 11:10:53 +00:00
|
|
|
case SeedDMS_Core_AttributeDefinition::objtype_document:
|
2012-12-14 07:53:13 +00:00
|
|
|
$ot = getMLText("document");
|
|
|
|
break;
|
2013-02-14 11:10:53 +00:00
|
|
|
case SeedDMS_Core_AttributeDefinition::objtype_documentcontent:
|
2012-12-14 07:53:13 +00:00
|
|
|
$ot = getMLText("version");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
print "<option value=\"".$attrdef->getID()."\">" . htmlspecialchars($attrdef->getName() ." (".$ot.")");
|
|
|
|
$count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="span8">
|
2013-05-29 18:06:08 +00:00
|
|
|
<div class="well" id="attrdefs0" style="display : none;">
|
2012-12-14 07:53:13 +00:00
|
|
|
<form action="../op/op.AttributeMgr.php" method="post">
|
|
|
|
<?php echo createHiddenFieldWithKey('addattrdef'); ?>
|
|
|
|
<input type="hidden" name="action" value="addattrdef">
|
|
|
|
<table class="table-condensed">
|
|
|
|
<tr>
|
|
|
|
<td><?php printMLText("attrdef_name");?>:</td><td><input type="text" name="name"></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2013-02-14 11:10:53 +00:00
|
|
|
<td><?php printMLText("attrdef_objtype");?>:</td><td><select name="objtype"><option value="<?php echo SeedDMS_Core_AttributeDefinition::objtype_all ?>">All</option><option value="<?php echo SeedDMS_Core_AttributeDefinition::objtype_folder ?>">Folder</option><option value="<?php echo SeedDMS_Core_AttributeDefinition::objtype_document ?>"><?php printMLText("document"); ?></option><option value="<?php echo SeedDMS_Core_AttributeDefinition::objtype_documentcontent ?>"><?php printMLText("version"); ?></option></select>
|
2012-12-14 07:53:13 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2013-02-14 11:10:53 +00:00
|
|
|
<td><?php printMLText("attrdef_type");?>:</td><td><select name="type"><option value="<?php echo SeedDMS_Core_AttributeDefinition::type_int ?>">Integer</option><option value="<?php echo SeedDMS_Core_AttributeDefinition::type_float ?>">Float</option><option value="<?php echo SeedDMS_Core_AttributeDefinition::type_string ?>">String</option><option value="<?php echo SeedDMS_Core_AttributeDefinition::type_boolean ?>">Boolean</option></select></td>
|
2012-12-14 07:53:13 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><?php printMLText("attrdef_multiple");?>:</td><td><input type="checkbox" value="1" name="multiple" /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><?php printMLText("attrdef_minvalues");?>:</td><td><input type="text" value="" name="minvalues" /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><?php printMLText("attrdef_maxvalues");?>:</td><td><input type="text" value="" name="maxvalues" /></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><?php printMLText("attrdef_valueset");?>:</td><td><input type="text" value="" name="valueset" /></td>
|
|
|
|
</tr>
|
2013-05-28 07:03:21 +00:00
|
|
|
<tr>
|
|
|
|
<td><?php printMLText("attrdef_regex");?>:</td><td><input type="text" value="" name="regex" /></td>
|
|
|
|
</tr>
|
2012-12-14 07:53:13 +00:00
|
|
|
<tr>
|
|
|
|
<td></td>
|
|
|
|
<td><input type="submit" class="btn" value="<?php printMLText("new_attrdef"); ?>"></td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</form>
|
2013-05-29 18:06:08 +00:00
|
|
|
</div>
|
2012-12-14 07:53:13 +00:00
|
|
|
|
|
|
|
<?php
|
|
|
|
|
|
|
|
if($attrdefs) {
|
|
|
|
foreach ($attrdefs as $attrdef) {
|
|
|
|
|
2013-05-29 18:06:08 +00:00
|
|
|
print "<div id=\"attrdefs".$attrdef->getID()."\" style=\"display : none;\">";
|
2014-02-21 20:26:56 +00:00
|
|
|
if($attrdef->isUsed())
|
|
|
|
echo '<div class="alert alert-warning">'.getMLText('attrdef_in_use').'</div>';
|
2012-12-14 07:53:13 +00:00
|
|
|
?>
|
2013-05-29 18:06:08 +00:00
|
|
|
<div class="well">
|
2012-12-14 07:53:13 +00:00
|
|
|
<?php
|
2014-02-21 20:26:56 +00:00
|
|
|
if($attrdef->isUsed()) {
|
2013-05-29 18:06:08 +00:00
|
|
|
$res = $attrdef->getStatistics(3);
|
|
|
|
if(isset($res['frequencies']) && $res['frequencies']) {
|
|
|
|
print "<table class=\"table-condensed\">";
|
|
|
|
print "<thead>\n<tr>\n";
|
2014-04-08 08:46:26 +00:00
|
|
|
print "<th>".getMLText("attribute_count")."</th>\n";
|
|
|
|
print "<th>".getMLText("attribute_value")."</th>\n";
|
2013-05-29 18:06:08 +00:00
|
|
|
print "</tr></thead>\n<tbody>\n";
|
|
|
|
foreach($res['frequencies'] as $entry) {
|
|
|
|
echo "<tr><td>".$entry['c']."</td><td>".$entry['value']."</td></tr>";
|
|
|
|
}
|
|
|
|
print "</tbody></table>";
|
|
|
|
}
|
|
|
|
if($res['docs']) {
|
|
|
|
print "<table class=\"table-condensed\">";
|
|
|
|
print "<thead>\n<tr>\n";
|
|
|
|
print "<th></th>\n";
|
|
|
|
print "<th>".getMLText("name")."</th>\n";
|
|
|
|
print "<th>".getMLText("owner")."</th>\n";
|
|
|
|
print "<th>".getMLText("status")."</th>\n";
|
2014-04-08 08:46:26 +00:00
|
|
|
print "<th>".getMLText("attribute_value")."</th>\n";
|
2013-05-29 18:06:08 +00:00
|
|
|
print "<th>".getMLText("actions")."</th>\n";
|
|
|
|
print "</tr></thead>\n<tbody>\n";
|
|
|
|
foreach($res['docs'] as $doc) {
|
|
|
|
$owner = $doc->getOwner();
|
|
|
|
$latest = $doc->getLatestContent();
|
|
|
|
$status = $latest->getStatus();
|
|
|
|
print "<tr>\n";
|
|
|
|
print "<td><i class=\"icon-file\"></i></td>";
|
|
|
|
print "<td><a href=\"../out/out.ViewDocument.php?documentid=".$doc->getID()."\">" . htmlspecialchars($doc->getName()) . "</a></td>\n";
|
|
|
|
print "<td>".htmlspecialchars($owner->getFullName())."</td>";
|
|
|
|
print "<td>".getOverallStatusText($status["status"])."</td>";
|
2014-02-20 20:05:22 +00:00
|
|
|
$value = $doc->getAttributeValue($attrdef);
|
|
|
|
if(is_array($value))
|
|
|
|
print "<td>".implode('; ', $value)."</td>";
|
|
|
|
else
|
|
|
|
print "<td>".$value."</td>";
|
2013-05-29 18:06:08 +00:00
|
|
|
print "<td>";
|
|
|
|
print "<a href='../out/out.EditDocument.php?documentid=".$doc->getID()."' class=\"btn btn-mini\"><i class=\"icon-edit\"></i> ".getMLText("edit")."</a>";
|
|
|
|
print "</td></tr>\n";
|
|
|
|
}
|
|
|
|
print "</tbody></table>";
|
|
|
|
}
|
|
|
|
|
|
|
|
if($res['folders']) {
|
|
|
|
print "<table class=\"table-condensed\">";
|
|
|
|
print "<thead><tr>\n";
|
|
|
|
print "<th></th>\n";
|
|
|
|
print "<th>".getMLText("name")."</th>\n";
|
|
|
|
print "<th>".getMLText("owner")."</th>\n";
|
2014-04-08 08:46:26 +00:00
|
|
|
print "<th>".getMLText("attribute_value")."</th>\n";
|
2013-05-29 18:06:08 +00:00
|
|
|
print "<th>".getMLText("actions")."</th>\n";
|
|
|
|
print "</tr></thead>\n<tbody>\n";
|
|
|
|
foreach($res['folders'] as $folder) {
|
|
|
|
$owner = $folder->getOwner();
|
|
|
|
print "<tr class=\"folder\">";
|
|
|
|
print "<td><i class=\"icon-folder-close-alt\"></i></td>";
|
|
|
|
print "<td><a href=\"../out/out.ViewFolder.php?folderid=".$folder->getID()."\">" . htmlspecialchars($folder->getName()) . "</a></td>\n";
|
|
|
|
print "<td>".htmlspecialchars($owner->getFullName())."</td>";
|
2014-02-20 20:05:22 +00:00
|
|
|
$value = $folder->getAttributeValue($attrdef);
|
|
|
|
if(is_array($value))
|
|
|
|
print "<td>".implode('; ', $value)."</td>";
|
|
|
|
else
|
|
|
|
print "<td>".$value."</td>";
|
2013-05-29 18:06:08 +00:00
|
|
|
print "<td>";
|
|
|
|
print "<a href='../out/out.EditFolder.php?folderid=".$folder->getID()."' class=\"btn btn-mini\"><i class=\"icon-edit\"></i> ".getMLText("edit")."</a>";
|
|
|
|
print "</td></tr>";
|
|
|
|
}
|
|
|
|
print "</tbody></table>";
|
|
|
|
}
|
|
|
|
|
|
|
|
if($res['contents']) {
|
|
|
|
print "<table class=\"table-condensed\">";
|
|
|
|
print "<thead>\n<tr>\n";
|
|
|
|
print "<th></th>\n";
|
|
|
|
print "<th>".getMLText("name")."</th>\n";
|
|
|
|
print "<th>".getMLText("owner")."</th>\n";
|
|
|
|
print "<th>".getMLText("mimetype")."</th>\n";
|
|
|
|
print "<th>".getMLText("version")."</th>\n";
|
2014-04-08 08:46:26 +00:00
|
|
|
print "<th>".getMLText("attribute_value")."</th>\n";
|
2013-05-29 18:06:08 +00:00
|
|
|
print "<th>".getMLText("actions")."</th>\n";
|
|
|
|
print "</tr></thead>\n<tbody>\n";
|
|
|
|
foreach($res['contents'] as $content) {
|
|
|
|
$doc = $content->getDocument();
|
|
|
|
$owner = $doc->getOwner();
|
|
|
|
print "<tr>\n";
|
|
|
|
print "<td><i class=\"icon-file\"></i></td>";
|
|
|
|
print "<td><a href=\"../out/out.ViewDocument.php?documentid=".$doc->getID()."\">" . htmlspecialchars($doc->getName()) . "</a></td>\n";
|
|
|
|
print "<td>".htmlspecialchars($owner->getFullName())."</td>";
|
|
|
|
print "<td>".$content->getMimeType()."</td>";
|
|
|
|
print "<td>".$content->getVersion()."</td>";
|
2014-02-20 20:05:22 +00:00
|
|
|
$value = $content->getAttributeValue($attrdef);
|
|
|
|
if(is_array($value))
|
|
|
|
print "<td>".implode('; ', $value)."</td>";
|
|
|
|
else
|
|
|
|
print "<td>".$value."</td>";
|
2013-05-29 18:06:08 +00:00
|
|
|
print "<td>";
|
|
|
|
print "<a href='../out/out.EditDocument.php?documentid=".$doc->getID()."' class=\"btn btn-mini\"><i class=\"icon-edit\"></i> ".getMLText("edit")."</a>";
|
|
|
|
print "</td></tr>\n";
|
|
|
|
}
|
|
|
|
print "</tbody></table>";
|
|
|
|
}
|
2014-02-21 20:26:56 +00:00
|
|
|
} else {
|
|
|
|
?>
|
|
|
|
<form style="display: inline-block;" method="post" action="../op/op.AttributeMgr.php" >
|
|
|
|
<?php echo createHiddenFieldWithKey('removeattrdef'); ?>
|
|
|
|
<input type="hidden" name="attrdefid" value="<?php echo $attrdef->getID()?>">
|
|
|
|
<input type="hidden" name="action" value="removeattrdef">
|
|
|
|
<button type="submit" class="btn"><i class="icon-remove"></i> <?php echo getMLText("rm_attrdef")?></button>
|
|
|
|
</form>
|
|
|
|
<?php
|
2013-01-24 09:14:05 +00:00
|
|
|
}
|
2012-12-14 07:53:13 +00:00
|
|
|
?>
|
2013-05-29 18:06:08 +00:00
|
|
|
</div>
|
|
|
|
<div class="well">
|
|
|
|
<table class="table-condensed">
|
2012-12-14 07:53:13 +00:00
|
|
|
<form action="../op/op.AttributeMgr.php" method="post">
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<?php echo createHiddenFieldWithKey('editattrdef'); ?>
|
|
|
|
<input type="Hidden" name="action" value="editattrdef">
|
|
|
|
<input type="Hidden" name="attrdefid" value="<?php echo $attrdef->getID()?>" />
|
|
|
|
<?php printMLText("attrdef_name");?>:
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<input type="text" name="name" value="<?php echo htmlspecialchars($attrdef->getName()) ?>">
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<?php printMLText("attrdef_type");?>:
|
|
|
|
</td>
|
|
|
|
<td>
|
2013-02-14 11:10:53 +00:00
|
|
|
<select name="type"><option value="<?php echo SeedDMS_Core_AttributeDefinition::type_int ?>" <?php if($attrdef->getType() == SeedDMS_Core_AttributeDefinition::type_int) echo "selected"; ?>>Integer</option><option value="<?php echo SeedDMS_Core_AttributeDefinition::type_float ?>" <?php if($attrdef->getType() == SeedDMS_Core_AttributeDefinition::type_float) echo "selected"; ?>>Float</option><option value="<?php echo SeedDMS_Core_AttributeDefinition::type_string ?>" <?php if($attrdef->getType() == SeedDMS_Core_AttributeDefinition::type_string) echo "selected"; ?>>String</option><option value="<?php echo SeedDMS_Core_AttributeDefinition::type_boolean ?>" <?php if($attrdef->getType() == SeedDMS_Core_AttributeDefinition::type_boolean) echo "selected"; ?>>Boolean</option></select>
|
2012-12-14 07:53:13 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<?php printMLText("attrdef_objtype");?>:
|
|
|
|
</td>
|
|
|
|
<td>
|
2013-02-14 11:10:53 +00:00
|
|
|
<select name="objtype"><option value="<?php echo SeedDMS_Core_AttributeDefinition::objtype_all ?>">All</option><option value="<?php echo SeedDMS_Core_AttributeDefinition::objtype_folder ?>" <?php if($attrdef->getObjType() == SeedDMS_Core_AttributeDefinition::objtype_folder) echo "selected"; ?>>Folder</option><option value="<?php echo SeedDMS_Core_AttributeDefinition::objtype_document ?>" <?php if($attrdef->getObjType() == SeedDMS_Core_AttributeDefinition::objtype_document) echo "selected"; ?>>Document</option><option value="<?php echo SeedDMS_Core_AttributeDefinition::objtype_documentcontent ?>" <?php if($attrdef->getObjType() == SeedDMS_Core_AttributeDefinition::objtype_documentcontent) echo "selected"; ?>>Document content</option></select>
|
2012-12-14 07:53:13 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<?php printMLText("attrdef_multiple");?>:
|
|
|
|
</td>
|
|
|
|
<td>
|
2013-01-24 09:14:05 +00:00
|
|
|
<input type="checkbox" value="1" name="multiple" <?php echo $attrdef->getMultipleValues() ? "checked" : "" ?>/>
|
2012-12-14 07:53:13 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<?php printMLText("attrdef_minvalues");?>:
|
|
|
|
</td>
|
|
|
|
<td>
|
2013-01-24 09:14:05 +00:00
|
|
|
<input type="text" value="<?php echo $attrdef->getMinValues() ?>" name="minvalues" />
|
2012-12-14 07:53:13 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<?php printMLText("attrdef_maxvalues");?>:
|
|
|
|
</td>
|
|
|
|
<td>
|
2013-01-24 09:14:05 +00:00
|
|
|
<input type="text" value="<?php echo $attrdef->getMaxValues() ?>" name="maxvalues" />
|
2012-12-14 07:53:13 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<?php printMLText("attrdef_valueset");?>:
|
|
|
|
</td>
|
|
|
|
<td>
|
2013-01-24 09:14:05 +00:00
|
|
|
<input type="text" value="<?php echo $attrdef->getValueSet() ?>" name="valueset" />
|
2012-12-14 07:53:13 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
2013-05-28 07:03:21 +00:00
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<?php printMLText("attrdef_regex");?>:
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<input type="text" value="<?php echo $attrdef->getRegex() ?>" name="regex" />
|
|
|
|
</td>
|
|
|
|
</tr>
|
2012-12-14 07:53:13 +00:00
|
|
|
<tr>
|
|
|
|
<td></td>
|
|
|
|
<td>
|
2013-04-19 13:22:25 +00:00
|
|
|
<button type="submit" class="btn"><i class="icon-save"></i> <?php printMLText("save");?></button>
|
2012-12-14 07:53:13 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
</table>
|
2013-05-29 18:06:08 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2012-12-14 07:53:13 +00:00
|
|
|
<?php
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script language="JavaScript">
|
|
|
|
|
|
|
|
sel = document.getElementById("selector");
|
|
|
|
sel.selectedIndex=<?php print $selected ?>;
|
|
|
|
showAttributeDefinitions(sel);
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
$this->htmlEndPage();
|
|
|
|
|
|
|
|
} /* }}} */
|
|
|
|
}
|
|
|
|
?>
|