getId(); } /** * Set the ID of the announcement type. * @param $typeId int */ function setTypeId($typeId) { if (Config::getVar('debug', 'deprecation_warnings')) trigger_error('Deprecated function.'); return $this->setId($typeId); } /** * Get assoc ID for this annoucement. * @return int */ function getAssocId() { return $this->getData('assocId'); } /** * Set assoc ID for this annoucement. * @param $assocId int */ function setAssocId($assocId) { return $this->setData('assocId', $assocId); } /** * Get assoc type for this annoucement. * @return int */ function getAssocType() { return $this->getData('assocType'); } /** * Set assoc Type for this annoucement. * @param $assocType int */ function setAssocType($assocType) { return $this->setData('assocType', $assocType); } /** * Get the type of the announcement type. * @return string */ function getLocalizedTypeName() { return $this->getLocalizedData('name'); } function getAnnouncementTypeName() { if (Config::getVar('debug', 'deprecation_warnings')) trigger_error('Deprecated function.'); return $this->getLocalizedTypeName(); } /** * Get the type of the announcement type. * @param $locale string * @return string */ function getName($locale) { return $this->getData('name', $locale); } /** * Set the type of the announcement type. * @param $name string * @param $locale string */ function setName($name, $locale) { return $this->setData('name', $name, $locale); } } ?>