Government Pavilion, C/ Padre Herrera s/n
Post Office Box 456
38200, San Cristobal de La Laguna
Santa Cruz de Tenerife - Spain
Switchboard Tel.: (+34) 922 31 90 00
Hours: Mon, 8:00 a.m. to 9:00 p.m.
This microcredential enables the design and application of therapeutic exercise programs in breast cancer patients, based on an understanding of their fundamentals, benefits, and risks.
The program addresses the creation of personalized interventions, the management of aftereffects such as fatigue or motor deficits, and the promotion of patient autonomy through active recovery programs.
General Objective
To train physiotherapists in the design and application of advanced therapeutic exercise programs, based
based on the best scientific evidence, to comprehensively address the after-effects of breast cancer treatment
and significantly improve the quality of life of surviving patients.
Specific Objectives
To access this microcredential, you must meet the following requirements:
The training activities to be carried out during the delivery of the micro-credential will be:
Regarding the way to organize the teaching to achieve the objectives set out in the micro-credential, the organizational modality summarized below will be followed:
The microcredential will have an evaluation system (ES) based on the following assessment tests:
Credits: 3 ECTS
Duration: 07/05/2026 – 16/05/2026
Teaching modality: In person
Location: Faculty of Health Sciences (Physiotherapy Section)
The cost of tuition for this Microcredential will be subsidized by the 'Plan for the development of university microcredentials', investment 6 of component 21 of the Addendum to the 'Recovery, Transformation and Resilience Plan', financed by the European Union – Next Generation EU, year 2025.
Short courses available in various formats (in-person, online, or hybrid). Ideal for learning without interrupting your professional life.
Content created and delivered by professionals and experts in the field, designed for immediate application.
Endorsed by the University of La Laguna. You will receive an official ECTS certificate, valid in the European Higher Education Area.

Contracted Professor with a PhD, affiliated with the Canary Islands Health Service – University Hospital Ntra. Sra. de Candelaria. Researcher in the MOVE&HEALTH LAB group at the ULL and the eMOTION LAB at the IISC.

Associate Professor at the University of La Laguna (ULL) and physiotherapist at the Canary Islands Health Service - Primary Care Management of Tenerife. Researcher in the MOVE&HEALTH LAB group at ULL and the eMOTION LAB group at the IISC.

Associate Professor at the University of La Laguna (ULL) and Physiotherapist in private practice. Researcher in the MOVE&HEALTH LAB group at ULL and the eMOTION LAB group at the IISC.

Researcher in the MOVE&HEALTH LAB groups of the ULL and eMOTION LAB of the IISC.

// Variables comunes (mejoramos el encoding para email) const pageUrl = window.location.href; const pageTitle = document.title;
// Funciones de compartir (las de redes con window.open siguen iguales, pero agregamos return false para evitar salto de página) function shareFacebook() { window.open(`https://www.facebook.com/sharer/sharer.php?u=${encodeURIComponent(pageUrl)}`, '_blank', 'width=600,height=400'); } function shareLinkedIn() { window.open(`https://www.linkedin.com/sharing/share-offsite/?url=${encodeURIComponent(pageUrl)}`, '_blank', 'width=600,height=500'); } function shareTelegram() { window.open(`https://t.me/share/url?url=${encodeURIComponent(pageUrl)}&text=${encodeURIComponent(pageTitle)}`, '_blank', 'width=600,height=400'); } function shareWhatsApp() { window.open(`https://api.whatsapp.com/send?text=${encodeURIComponent(pageTitle + ' ' + pageUrl)}`, '_blank'); }
// Función para compartir por email (copia al portapapeles + fallback Gmail) function shareByEmail() { const pageUrl = window.location.href; const pageTitle = document.title.trim();
// Texto listo para pegar en email (con salto de línea) const emailText = `${pageTitle}\n${pageUrl}\n\nTe comparto este artículo interesante.`;
// Intentamos copiar al portapapeles if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(emailText).then(() => { // Mensaje de éxito (puedes usar alert, toast o un div temporal) alert('¡Enlace copiado al portapapeles!\nPégalo en tu email (Ctrl+V).'); }).catch(err => { console.error('Error al copiar:', err); fallbackToGmail(); }); } else { // Si no soporta clipboard (navegadores muy viejos) fallbackToGmail(); } }
function fallbackToGmail() { const pageUrl = encodeURIComponent(window.location.href); const pageTitle = encodeURIComponent(document.title); const body = encodeURIComponent(document.title + '\n' + window.location.href + '\n\nTe comparto esto:');
// Abre compose de Gmail window.open(`https://mail.google.com/mail/?view=cm&fs=1&su=${pageTitle}&body=${body}`, '_blank', 'width=800,height=600'); }