key = $key; $this->label = $label; $this->description = $description; $this->category = $category; $this->disable_callback = $disable_callback; } /** * @return string */ public function get_option_key() { return sprintf( 'gravitysmtp_email_stopper_' . $this->key ); } /** * @return string */ public function key() { return $this->key; } /** * @return string */ public function label() { return $this->label; } /** * @return string */ public function category() { return $this->category; } /** * @return string */ public function description() { return $this->description; } /** * @return callable */ public function trigger_disable_callback() { return call_user_func( $this->disable_callback ); } }