当前位置: 首页>>代码示例>>Python>>正文


Python CertificateGenerationCourseSetting.is_enabled_for_course方法代码示例

本文整理汇总了Python中certificates.models.CertificateGenerationCourseSetting.is_enabled_for_course方法的典型用法代码示例。如果您正苦于以下问题:Python CertificateGenerationCourseSetting.is_enabled_for_course方法的具体用法?Python CertificateGenerationCourseSetting.is_enabled_for_course怎么用?Python CertificateGenerationCourseSetting.is_enabled_for_course使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在certificates.models.CertificateGenerationCourseSetting的用法示例。


在下文中一共展示了CertificateGenerationCourseSetting.is_enabled_for_course方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: enable_self_generated_certs

# 需要导入模块: from certificates.models import CertificateGenerationCourseSetting [as 别名]
# 或者: from certificates.models.CertificateGenerationCourseSetting import is_enabled_for_course [as 别名]
def enable_self_generated_certs(course_key):
    """Enable the self-generated certificates by default for self-paced courses."""
    course_key = CourseKey.from_string(course_key)
    course = modulestore().get_course(course_key)
    is_enabled_for_course = CertificateGenerationCourseSetting.is_enabled_for_course(course_key)
    if course.self_paced and not is_enabled_for_course:
        CertificateGenerationCourseSetting.set_enabled_for_course(course_key, True)
开发者ID:10clouds,项目名称:edx-platform,代码行数:9,代码来源:signals.py

示例2: cert_generation_enabled

# 需要导入模块: from certificates.models import CertificateGenerationCourseSetting [as 别名]
# 或者: from certificates.models.CertificateGenerationCourseSetting import is_enabled_for_course [as 别名]
def cert_generation_enabled(course_key):
    """Check whether certificate generation is enabled for a course.

    There are two "switches" that control whether self-generated certificates
    are enabled for a course:

    1) Whether the self-generated certificates feature is enabled.
    2) Whether self-generated certificates have been enabled for this particular course.

    Certificates are enabled for a course only when both switches
    are set to True.

    Arguments:
        course_key (CourseKey): The course identifier.

    Returns:
        boolean: Whether self-generated certificates are enabled
            for the course.

    """
    return CertificateGenerationConfiguration.current().enabled and CertificateGenerationCourseSetting.is_enabled_for_course(
        course_key
    )
开发者ID:fjardon,项目名称:edx-platform,代码行数:25,代码来源:api.py


注:本文中的certificates.models.CertificateGenerationCourseSetting.is_enabled_for_course方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。