add action removeattrvalue()

This commit is contained in:
Uwe Steinmann 2018-02-22 19:11:57 +01:00
parent f392e35072
commit 81b9fb89e5

View File

@ -83,5 +83,12 @@ class SeedDMS_Controller_AttributeMgr extends SeedDMS_Controller_Common {
return true;
} /* }}} */
public function removeattrvalue() { /* {{{ */
$attrdef = $this->params['attrdef'];
$attrval = $this->params['attrval'];
//$attrdef->getObjects($attrval);
return $attrdef->removeValue($attrval);
} /* }}} */
}