Exemple #1
0
 string GetWorkProgramOfPracticeLinks()
 {
     return(FormatDocumentsLinkWithData(
                GetDocuments(EduProgramProfile.GetDocumentsOfType(SystemDocumentType.WorkProgramOfPractice)),
                string.Empty, "wpp", "itemprop=\"EduPr\""
                ));
 }
Exemple #2
0
 // TODO: Add more itemprops!
 string GetContingentLinks()
 {
     return(FormatDocumentsLinkWithData(
                GetDocuments(EduProgramProfile.GetDocumentsOfType(SystemDocumentType.Contingent)),
                string.Empty, "cnt", "itemscope=\"\" itemtype=\"http://obrnadzor.gov.ru/microformats/priem\""
                ));
 }
Exemple #3
0
 string GetEduMaterialLinks()
 {
     return(FormatDocumentsLinkWithData(
                GetDocuments(EduProgramProfile.GetDocumentsOfType(SystemDocumentType.EduMaterial)),
                string.Empty, "met", "itemprop=\"methodology\""
                ));
 }
Exemple #4
0
 string GetWorkProgramAnnotationLinks()
 {
     return(FormatDocumentsLinkWithData(
                GetDocuments(EduProgramProfile.GetDocumentsOfType(SystemDocumentType.WorkProgramAnnotation)),
                string.Empty, "wpa", "itemprop=\"education_annotation\""
                ));
 }
Exemple #5
0
 string GetEduScheduleLinks()
 {
     return(FormatDocumentsLinkWithData(
                GetDocuments(EduProgramProfile.GetDocumentsOfType(SystemDocumentType.EduSchedule)),
                string.Empty, "esh", "itemprop=\"education_shedule\""
                ));
 }
Exemple #6
0
 string GetEduPlanLinks()
 {
     return(FormatDocumentsLinkWithData(
                GetDocuments(EduProgramProfile.GetDocumentsOfType(SystemDocumentType.EduPlan)),
                string.Empty, "epl", "itemprop=\"education_plan\""
                ));
 }
Exemple #7
0
 string GetEduProgramLinks()
 {
     return(FormatDocumentsLinkWithData(
                GetDocuments(EduProgramProfile.GetDocumentsOfType(SystemDocumentType.EduProgram)),
                FormatHelper.FormatEduProgramProfileTitle(EduProgram.Title, ProfileCode, ProfileTitle),
                "oop", "itemprop=\"OOP_main\""
                ));
 }
Exemple #8
0
 string GetWorkProgramLinks()
 {
     return(FormatDocumentsLinkWithData(
                GetDocuments(EduProgramProfile.GetDocumentsOfType(SystemDocumentType.WorkProgram)),
                string.Empty,
                "wp",
                // TODO: This related to obsolete WorkProgramOfPractice document type
                IsAdopted ? "itemprop=\"adEduPr\"" : "itemprop=\"eduPr\""
                ));
 }
Exemple #9
0
 string GetEduProgramLinks()
 {
     return(Wrap(FormatDocumentsLinkWithData(
                     GetDocuments(EduProgramProfile.GetDocumentsOfType(SystemDocumentType.EduProgram)),
                     UniversityFormatHelper.FormatEduProgramProfileTitle(EduProgram.Title, ProfileCode, ProfileTitle)
                     .Append(IsAdopted ? Context.LocalizeString("IsAdopted.Text") : null, " - "),
                     "oop",
                     IsAdopted ? "itemprop=\"adOpMain\"" : "itemprop=\"opMain\""
                     ), "eduName"));
 }