re-add missing function

This commit is contained in:
MaxBuhe01 2024-11-21 00:00:07 +01:00 committed by AntonHeinze
parent 07224f9530
commit 3a34f0e5f5

View File

@ -49,4 +49,13 @@ class D3ManufacturerLongDesc extends D3ManufacturerLongDesc_parent
$longName = $this->_getFieldLongName(Constants::D3_OXMANUFACTURERS_LONGDESC_FIELDNAME); $longName = $this->_getFieldLongName(Constants::D3_OXMANUFACTURERS_LONGDESC_FIELDNAME);
return $this->$longName ?: oxNew(Field::class); return $this->$longName ?: oxNew(Field::class);
} }
/**
* @return string
*/
public function getD3LongDescTableColumnName(): string
{
return $this->getViewName(true).'__'.Constants::D3_OXMANUFACTURERS_LONGDESC_FIELDNAME;
}
} }