LLMS_User_Certificate::is_sharing_enabled()

Is sharing enabled


Return Return

(bool)


Top ↑

Source Source

File: includes/models/model.llms.user.certificate.php

703
704
705
706
707
708
709
710
711
712
713
714
715
public function is_sharing_enabled() {
 
    /**
     * Filter whether or not sharing is enabled for a certificate.
     *
     * @since 4.5.0
     *
     * @param boolean               $enabled     Whether or not sharing is enabled.
     * @param LLMS_User_Certificate $certificate Certificate class instance.
     */
    return apply_filters( 'llms_certificate_is_sharing_enabled', llms_parse_bool( $this->get( 'allow_sharing' ) ), $this );
 
}


Top ↑

Changelog Changelog

Changelog
Version Description
4.5.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.