set_contact_information_setup(); $this->set_completed_timestamp(); } ); } /** * Mark the contact information as setup. * * @since 1.4.0 */ protected function set_contact_information_setup() { $this->options->update( OptionsInterface::CONTACT_INFO_SETUP, true ); } /** * Set the timestamp when setup was completed. */ protected function set_completed_timestamp() { $this->options->update( self::OPTION, time() ); } }