key = $key; $this->label = $label; $this->value = $value; $this->urlParams = $urlParams; $this->icon = $icon; $this->order = $order; } /** * @return string */ public function getKey() { return $this->key; } /** * @return string */ public function getLabel() { return $this->label; } /** * @return mixed */ public function getValue() { return $this->value; } /** * @return array|null */ public function getUrlParams() { return $this->urlParams; } /** * @return string */ public function getIcon() { return $this->icon; } /** * @return int */ public function getOrder() { return $this->order; } }