Newscoop\Entity\Comment\Preference\Publication::setCaptchaEnabled PHP Method

setCaptchaEnabled() public method

Set public moderated
public setCaptchaEnabled ( $p_captcha_enabled ) : Publication
return Publication
    public function setCaptchaEnabled($p_captcha_enabled)
    {
        $this->captcha_enabled = $p_captcha_enabled;
        // return this for chaining mechanism
        return $this;
    }

Usage Example

 public function setCaptchaEnabled($p_captcha_enabled)
 {
     $this->__load();
     return parent::setCaptchaEnabled($p_captcha_enabled);
 }