getData('controlledVocabId'); } /** * Set the ID of the controlled vocab. * * @param int $controlledVocabId */ public function setControlledVocabId($controlledVocabId) { $this->setData('controlledVocabId', $controlledVocabId); } /** * Get sequence number. * * @return float */ public function getSequence() { return $this->getData('sequence'); } /** * Set sequence number. * * @param float $sequence */ public function setSequence($sequence) { $this->setData('sequence', $sequence); } /** * Get the localized name. * * @return string */ public function getLocalizedName() { return $this->getLocalizedData('name'); } /** * Get the name of the controlled vocabulary entry. * * @param string $locale * * @return string */ public function getName($locale) { return $this->getData('name', $locale); } /** * Set the name of the controlled vocabulary entry. * * @param string $name * @param string $locale */ public function setName($name, $locale) { $this->setData('name', $name, $locale); } } if (!PKP_STRICT_MODE) { class_alias('\PKP\controlledVocab\ControlledVocabEntry', '\ControlledVocabEntry'); }