當前位置: 首頁>>代碼示例>>Python>>正文


Python CertificateGenerationCourseSetting.set_self_generatation_enabled_for_course方法代碼示例

本文整理匯總了Python中certificates.models.CertificateGenerationCourseSetting.set_self_generatation_enabled_for_course方法的典型用法代碼示例。如果您正苦於以下問題:Python CertificateGenerationCourseSetting.set_self_generatation_enabled_for_course方法的具體用法?Python CertificateGenerationCourseSetting.set_self_generatation_enabled_for_course怎麽用?Python CertificateGenerationCourseSetting.set_self_generatation_enabled_for_course使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在certificates.models.CertificateGenerationCourseSetting的用法示例。


在下文中一共展示了CertificateGenerationCourseSetting.set_self_generatation_enabled_for_course方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: set_cert_generation_enabled

# 需要導入模塊: from certificates.models import CertificateGenerationCourseSetting [as 別名]
# 或者: from certificates.models.CertificateGenerationCourseSetting import set_self_generatation_enabled_for_course [as 別名]
def set_cert_generation_enabled(course_key, is_enabled):
    """Enable or disable self-generated certificates 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.

    The second flag should be enabled *only* when someone has successfully
    generated example certificates for the course.  This helps avoid
    configuration errors (for example, not having a template configured
    for the course installed on the workers).  The UI for the instructor
    dashboard enforces this constraint.

    Arguments:
        course_key (CourseKey): The course identifier.

    Keyword Arguments:
        is_enabled (boolean): If provided, enable/disable self-generated
            certificates for this course.

    """
    CertificateGenerationCourseSetting.set_self_generatation_enabled_for_course(course_key, is_enabled)
    cert_event_type = 'enabled' if is_enabled else 'disabled'
    event_name = '.'.join(['edx', 'certificate', 'generation', cert_event_type])
    tracker.emit(event_name, {
        'course_id': unicode(course_key),
    })
    if is_enabled:
        log.info(u"Enabled self-generated certificates for course '%s'.", unicode(course_key))
    else:
        log.info(u"Disabled self-generated certificates for course '%s'.", unicode(course_key))
開發者ID:dehamzah,項目名稱:edx-platform,代碼行數:35,代碼來源:api.py

示例2: toggle_self_generated_certs

# 需要導入模塊: from certificates.models import CertificateGenerationCourseSetting [as 別名]
# 或者: from certificates.models.CertificateGenerationCourseSetting import set_self_generatation_enabled_for_course [as 別名]
def toggle_self_generated_certs(course_key, course_self_paced):
    """
    Enable or disable self-generated certificates for a course according to pacing.
    """
    CertificateGenerationCourseSetting.set_self_generatation_enabled_for_course(course_key, course_self_paced)
開發者ID:Lektorium-LLC,項目名稱:edx-platform,代碼行數:7,代碼來源:handlers.py


注:本文中的certificates.models.CertificateGenerationCourseSetting.set_self_generatation_enabled_for_course方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。