Línea 1259... |
Línea 1259... |
1259 |
public function view_page(workshop $workshop, workshop_user_plan $userplan, string $currentphasetitle,
|
1259 |
public function view_page(workshop $workshop, workshop_user_plan $userplan, string $currentphasetitle,
|
1260 |
int $page, string $sortby, string $sorthow): string {
|
1260 |
int $page, string $sortby, string $sorthow): string {
|
1261 |
$output = '';
|
1261 |
$output = '';
|
Línea 1262... |
Línea 1262... |
1262 |
|
1262 |
|
1263 |
$output .= $this->render_action_buttons($workshop, $userplan);
|
1263 |
$output .= $this->render_action_buttons($workshop, $userplan);
|
1264 |
$output .= $this->heading(format_string($currentphasetitle), 3, null, 'mod_workshop-userplanheading');
|
1264 |
$output .= $this->heading(format_string($currentphasetitle), 2, null, 'mod_workshop-userplanheading');
|
1265 |
$output .= $this->render($userplan);
|
1265 |
$output .= $this->render($userplan);
|
Línea 1266... |
Línea 1266... |
1266 |
$output .= $this->view_submissions_report($workshop, $userplan, $page, $sortby, $sorthow);
|
1266 |
$output .= $this->view_submissions_report($workshop, $userplan, $page, $sortby, $sorthow);
|
1267 |
|
1267 |
|