Udemy: OpenShift for the Absolute Beginners - Hands-on
Get started with OpenShift quickly with lectures, demos, quizzes and hands-on coding exercises right in your browser. In this course, you will learn:
Deploy an Openshift Cluster
Setup integration between Openshift and SCM
Deploy Multiservices applications on Openshift
Deploy application on Openshift Cluster
Create custom templates and catalog items in Openshift
Apply for this course
window.hideEnrolWarning = window.hideEnrolWarning || function() {
mdlUtils.hideAll("div.continuebutton");
mdlUtils.hideById("notice");
};
window.enhanceEhrButtons = window.enhanceEhrButtons || function(root = document) {
document.querySelectorAll('.coursebox, .course-info-container').forEach(container => {
const link = container.querySelector('a[href*="course/view.php?id="]');
if (!link) return;
//get de id van de cursus
const match = link.href.match(/id=(\d+)/);
if (!match) return;
const courseId = match[1];
const btn = container.querySelector('.ehr-btn');
if (!btn) return;
// voorkom dubbel uitvoeren
if (btn.dataset.enhanced) return;
btn.dataset.enhanced = "true";
let ehrid = btn.dataset.ehrid;
// ✅ als FilterCodes werkte → gewoon gebruiken
if (ehrid && ehrid.trim() !== '' && !ehrid.includes('{')) {
btn.href = btn.dataset.base + ehrid;
return;
}
// ❌ fallback: reconstructie (optioneel)
btn.href = "https://eacademy.smals.be/course/enrol.php?id=" + courseId;
});
}
mdlUtils.runWhenReady(hideEnrolWarning);
mdlUtils.runWhenReady(enhanceEhrButtons);
mdlUtils.observeDom(enhanceEhrButtons);