mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-03-12 00:45:34 +00:00
- attributes can edited
This commit is contained in:
parent
88eceaba85
commit
c550831705
|
@ -95,6 +95,19 @@ if ($parent && $parent->getAccessMode($user) > M_READ) {
|
|||
print "</td></tr>\n";
|
||||
}
|
||||
?>
|
||||
<?php
|
||||
$attrdefs = $dms->getAllAttributeDefinitions(array(LetoDMS_Core_AttributeDefinition::objtype_folder, LetoDMS_Core_AttributeDefinition::objtype_all));
|
||||
if($attrdefs) {
|
||||
foreach($attrdefs as $attrdef) {
|
||||
?>
|
||||
<tr>
|
||||
<td><?php echo htmlspecialchars($attrdef->getName()); ?></td>
|
||||
<td><?php UI::printAttributeEditField($attrdef, $folder->getAttributeValue($attrdef)) ?></td>
|
||||
</tr>
|
||||
<?php
|
||||
}
|
||||
}
|
||||
?>
|
||||
<tr>
|
||||
<td colspan="2"><input type="Submit" value="<?php printMLText("save"); ?>"></td>
|
||||
</tr>
|
||||
|
|
Loading…
Reference in New Issue
Block a user