Proyectos de Subversion Moodle

Rev

Rev 985 | Rev 987 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 985 Rev 986
Línea 486... Línea 486...
486
 
486
 
487
    // Output table.
487
    // Output table.
488
    echo html_writer::table($table);
488
    echo html_writer::table($table);
Línea -... Línea 489...
-
 
489
}
-
 
490
 
-
 
491
// Supplementary feature: All meetings link.
-
 
492
// Only show if the admin did not disable this feature completely.
-
 
493
if ($config->showallmeetings != ZOOM_ALLMEETINGS_DISABLE) {
-
 
494
    $urlall = new moodle_url('/mod/zoom/index.php', ['id' => $course->id]);
-
 
495
    $linkall = html_writer::link($urlall, $strall);
-
 
496
    echo $OUTPUT->box_start('generalbox mt-4 pt-4 border-top text-center');
-
 
497
    echo $linkall;
-
 
498
    echo $OUTPUT->box_end();
489
}
499
}
Línea 490... Línea 500...
490
 
500
 
Línea 491... Línea 501...
491
$description;
501
$description = 'Prueba de render';
Línea 509... Línea 519...
509
        $modcontent = $module->get_formatted_content();
519
        $modcontent = $module->get_formatted_content();
510
        $description = $modcontent;
520
        $description = $modcontent;
511
    }
521
    }
512
}
522
}
Línea 513... Línea -...
513
 
-
 
514
 
-
 
515
 
-
 
516
// Supplementary feature: All meetings link.
-
 
517
// Only show if the admin did not disable this feature completely.
-
 
518
if ($config->showallmeetings != ZOOM_ALLMEETINGS_DISABLE) {
-
 
519
    $urlall = new moodle_url('/mod/zoom/index.php', ['id' => $course->id]);
-
 
520
    $linkall = html_writer::link($urlall, $strall);
-
 
521
    echo $OUTPUT->box_start('generalbox mt-4 pt-4 border-top text-center');
-
 
522
    echo $linkall;
523
 
523
    echo $description;
-
 
524
    echo $OUTPUT->box_end();
-
 
Línea 525... Línea 524...
525
}
524
echo $description;
526
 
525