getOption('operatedByName'); return (empty($name) ? '' : $name); } /** * Set Organization Name * * Set the name of the organization operating the TAO Platform. * * @param string $name */ public function setName($name) { $this->setOption('operatedByName', $name); } /** * Get Organization Email * * Get the email address of the organization operating the TAO * Platform. * * @return string */ public function getEmail() { $email = $this->getOption('operatedByEmail'); return (empty($email) ? '' : $email); } /** * Set the Organization Email * * Set the email address of the organization operating the TAO * Platform. * * @param string $email */ public function setEmail($email) { $this->setOption('operatedByEmail', $email); } }