id; } /** * Set variable * * @param string $value * @return SettingsOptions */ public function set_variable($value) { $this->variable = $value; return $this; } /** * Get variable * * @return string */ public function get_variable() { return $this->variable; } /** * Set value * * @param string $value * @return SettingsOptions */ public function set_value($value) { $this->value = $value; return $this; } /** * Get value * * @return string */ public function get_value() { return $this->value; } /** * Set display_text * * @param string $value * @return SettingsOptions */ public function set_display_text($value) { $this->display_text = $value; return $this; } /** * Get display_text * * @return string */ public function get_display_text() { return $this->display_text; } }