MDL-21652 html_table rendering refactored

* class html_component does not exist any more
* class html_table rendered via html_writer::table()
* html_table, html_table_row and html_table_cell have public $attributes property to set their CSS classes
* dropped rotateheaders feature, should be added again after more research of possible ways (<svg> is not nice IMHO)
* dropped possibility to define CSS classes for table heading, body and footer - can be easily done and better done using just table class and context
This commit is contained in:
David Mudrak 2010-03-20 22:15:54 +00:00
parent ad70376ce2
commit 16be897441
106 changed files with 565 additions and 677 deletions

View file

@ -103,7 +103,7 @@
} }
asort($table->data); asort($table->data);
echo $OUTPUT->table($table); echo html_writer::table($table);
echo "<div style=\"text-align:center\"><input type=\"submit\" value=\"".get_string("savechanges")."\" /></div>\n"; echo "<div style=\"text-align:center\"><input type=\"submit\" value=\"".get_string("savechanges")."\" /></div>\n";
echo "</div>"; echo "</div>";

View file

@ -218,7 +218,7 @@
$table->rowclasses[] = 'dimmed_text'; $table->rowclasses[] = 'dimmed_text';
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
echo '<p class="filtersettingnote">' . get_string('filterallwarning', 'filters') . '</p>'; echo '<p class="filtersettingnote">' . get_string('filterallwarning', 'filters') . '</p>';
echo $OUTPUT->footer(); echo $OUTPUT->footer();

View file

@ -184,7 +184,7 @@ if (!$acl) {
} }
if (!empty($table)) { if (!empty($table)) {
echo $OUTPUT->table($table); echo html_writer::table($table);
echo '<p>&nbsp;</p>'; echo '<p>&nbsp;</p>';
$baseurl = new moodle_url('/admin/mnet/access_control.php', array('sort' => $sort, 'dir' => $dir, 'perpage' => $perpage)); $baseurl = new moodle_url('/admin/mnet/access_control.php', array('sort' => $sort, 'dir' => $dir, 'perpage' => $perpage));
echo $OUTPUT->paging_bar($aclcount, $page, $perpage, $baseurl); echo $OUTPUT->paging_bar($aclcount, $page, $perpage, $baseurl);

View file

@ -218,7 +218,7 @@ $table->data = array(
$registerrow $registerrow
), ),
); );
echo $OUTPUT->table($table); echo html_writer::table($table);
// print the list of all hosts, with little action links and buttons // print the list of all hosts, with little action links and buttons
$table = new html_table(); $table = new html_table();
@ -250,7 +250,7 @@ foreach($hosts as $host) {
$OUTPUT->single_button(new moodle_url('/admin/mnet/delete.php', array('hostid' => $host->id)), get_string('delete')) $OUTPUT->single_button(new moodle_url('/admin/mnet/delete.php', array('hostid' => $host->id)), get_string('delete'))
); );
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
// finally, print the initial form to add a new host // finally, print the initial form to add a new host
echo $OUTPUT->box_start(); echo $OUTPUT->box_start();

View file

@ -122,7 +122,7 @@ if (!empty($hostid) && array_key_exists($hostid, $hosts)) {
); );
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
$mnet_request->set_method('system/listMethods'); $mnet_request->set_method('system/listMethods');
@ -156,7 +156,7 @@ if (!empty($hostid) && array_key_exists($hostid, $hosts)) {
html_writer::link($newurl, get_string('inspect', 'mnet')) html_writer::link($newurl, get_string('inspect', 'mnet'))
); );
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
if (isset($methodid) && array_key_exists($methodid-1, $methods)) { if (isset($methodid) && array_key_exists($methodid-1, $methods)) {
$method = $methods[$methodid-1]; $method = $methods[$methodid-1];
@ -194,7 +194,7 @@ if (!empty($hostid) && array_key_exists($hostid, $hosts)) {
$signature['return']['description'] $signature['return']['description']
); );
echo $OUTPUT->table($table); echo html_writer::table($table);
$mnet_request->set_method('system/methodHelp'); $mnet_request->set_method('system/methodHelp');
$mnet_request->add_param($method, 'string'); $mnet_request->add_param($method, 'string');

View file

@ -104,6 +104,6 @@ foreach ($rs as $log) {
} }
$rs->close(); $rs->close();
echo $OUTPUT->table($table); echo html_writer::table($table);
echo $OUTPUT->footer(); echo $OUTPUT->footer();

View file

@ -60,7 +60,7 @@
'<input type="text" name="numcourses" size="3" maxlength="2" value="'.$numcourses.'" />', '<input type="text" name="numcourses" size="3" maxlength="2" value="'.$numcourses.'" />',
'<input type="submit" value="'.get_string('view').'" />') ; '<input type="submit" value="'.get_string('view').'" />') ;
echo $OUTPUT->table($table); echo html_writer::table($table);
echo '</div>'; echo '</div>';
echo '</form>'; echo '</form>';
@ -117,7 +117,7 @@
} }
$table->data[] = $a; $table->data[] = $a;
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
} }
} }
echo $OUTPUT->footer(); echo $OUTPUT->footer();

View file

@ -122,7 +122,7 @@ if ($requestedqtype) {
$totalhidden); $totalhidden);
// Print it. // Print it.
echo $OUTPUT->table($table); echo html_writer::table($table);
} }
// Footer. // Footer.

View file

@ -92,7 +92,7 @@ if ($issue and ($result = $issue(true))) {
$table->data[] = $row; $table->data[] = $row;
echo $OUTPUT->table($table); echo html_writer::table($table);
echo $OUTPUT->box($result->details, 'generalbox boxwidthnormal boxaligncenter'); // TODO: add proper css echo $OUTPUT->box($result->details, 'generalbox boxwidthnormal boxaligncenter'); // TODO: add proper css
@ -121,7 +121,7 @@ if ($issue and ($result = $issue(true))) {
$table->data[] = $row; $table->data[] = $row;
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
} }
echo $OUTPUT->footer(); echo $OUTPUT->footer();

View file

@ -67,7 +67,7 @@ echo $OUTPUT->box($controller->get_intro_text());
echo '<form action="' . $baseurl . '" method="post">'; echo '<form action="' . $baseurl . '" method="post">';
echo '<input type="hidden" name="sesskey" value="' . sesskey() . '" />'; echo '<input type="hidden" name="sesskey" value="' . sesskey() . '" />';
echo $OUTPUT->table($table); echo html_writer::table($table);
echo '<div class="buttons"><input type="submit" name="submit" value="'.get_string('savechanges').'"/>'; echo '<div class="buttons"><input type="submit" name="submit" value="'.get_string('savechanges').'"/>';
echo '</div></form>'; echo '</div></form>';

View file

@ -431,7 +431,7 @@
$table->data[] = $row; $table->data[] = $row;
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
if ($context->contextlevel > CONTEXT_USER) { if ($context->contextlevel > CONTEXT_USER) {
echo '<div class="backlink"><a href="' . get_context_url($context) . '">' . get_string('backto', '', $contextname) . '</a></div>'; echo '<div class="backlink"><a href="' . get_context_url($context) . '">' . get_string('backto', '', $contextname) . '</a></div>';

View file

@ -256,7 +256,7 @@
$table->data[] = $row; $table->data[] = $row;
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
echo $OUTPUT->container_start('buttons'); echo $OUTPUT->container_start('buttons');
echo $OUTPUT->single_button(new moodle_url($defineurl, array('action' => 'add')), get_string('addrole', 'role'), 'get'); echo $OUTPUT->single_button(new moodle_url($defineurl, array('action' => 'add')), get_string('addrole', 'role'), 'get');

View file

@ -854,7 +854,7 @@ foreach ($contents as $content) {
$table = new html_table(); $table = new html_table();
$table->id = "uupreview"; $table->id = "uupreview";
$table->set_classes = 'generaltable'; $table->attributes['class'] = 'generaltable';
$table->tablealign = 'center'; $table->tablealign = 'center';
$table->summary = get_string('uploaduserspreview', 'admin'); $table->summary = get_string('uploaduserspreview', 'admin');
$table->head = array(); $table->head = array();
@ -887,7 +887,7 @@ if (in_array('error', $headings)) {
$value = get_string($content[$key]); $value = get_string($content[$key]);
} }
$cells->text = $value; $cells->text = $value;
$cells->set_classes($errclass); $cells->attributes['class'] = $errclass;
$rows->cells[] = $cells; $rows->cells[] = $cells;
} }
$countcontent++; $countcontent++;
@ -928,7 +928,7 @@ if (in_array('error', $headings)) {
$countcontent++; $countcontent++;
} }
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
if ($haserror) { if ($haserror) {

View file

@ -298,7 +298,7 @@
echo $OUTPUT->heading('<a href="'.$securewwwroot.'/user/editadvanced.php?id=-1">'.get_string('addnewuser').'</a>'); echo $OUTPUT->heading('<a href="'.$securewwwroot.'/user/editadvanced.php?id=-1">'.get_string('addnewuser').'</a>');
} }
if (!empty($table)) { if (!empty($table)) {
echo $OUTPUT->table($table); echo html_writer::table($table);
echo $OUTPUT->paging_bar($usercount, $page, $perpage, $baseurl); echo $OUTPUT->paging_bar($usercount, $page, $perpage, $baseurl);
if (has_capability('moodle/user:create', $sitecontext)) { if (has_capability('moodle/user:create', $sitecontext)) {
echo $OUTPUT->heading('<a href="'.$securewwwroot.'/user/editadvanced.php?id=-1">'.get_string('addnewuser').'</a>'); echo $OUTPUT->heading('<a href="'.$securewwwroot.'/user/editadvanced.php?id=-1">'.get_string('addnewuser').'</a>');

View file

@ -74,7 +74,7 @@ foreach($users as $user) {
} }
echo $OUTPUT->heading("$usercount / $usertotal ".get_string('users')); echo $OUTPUT->heading("$usercount / $usertotal ".get_string('users'));
echo $OUTPUT->table($table); echo html_writer::table($table);
echo $OUTPUT->continue_button($return); echo $OUTPUT->continue_button($return);

View file

@ -125,7 +125,7 @@ foreach($users as $user)
$table->data[] = $temparray; $table->data[] = $temparray;
} }
echo $OUTPUT->heading("$usercount / $usertotal ".get_string('users')); echo $OUTPUT->heading("$usercount / $usertotal ".get_string('users'));
echo $OUTPUT->table($table); echo html_writer::table($table);
echo '<div class="continuebutton">'; echo '<div class="continuebutton">';
echo '<input type="submit" name="multienrolsubmit" value="save changes" />'; echo '<input type="submit" name="multienrolsubmit" value="save changes" />';
echo '</div>'; echo '</div>';

View file

@ -137,7 +137,7 @@ foreach ($functions as $function) {
} }
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
// we can edit only custom functions, the build-in would be overridden after each upgrade // we can edit only custom functions, the build-in would be overridden after each upgrade

View file

@ -199,7 +199,7 @@
} }
} }
$table->data = $modcheckbackup($id,$backupprefs->$var,$backupprefs->backup_unique_code,$instancestopass); $table->data = $modcheckbackup($id,$backupprefs->$var,$backupprefs->backup_unique_code,$instancestopass);
echo $OUTPUT->table($table); echo html_writer::table($table);
echo "</td></tr>"; echo "</td></tr>";
} }
} }
@ -219,7 +219,7 @@
echo $user_options[$backupprefs->backup_users].'</b>'; echo $user_options[$backupprefs->backup_users].'</b>';
//Print info //Print info
$table->data = user_check_backup($id,$backupprefs->backup_unique_code,$backupprefs->backup_users,$backupprefs->backup_messages, $backupprefs->backup_blogs); $table->data = user_check_backup($id,$backupprefs->backup_unique_code,$backupprefs->backup_users,$backupprefs->backup_messages, $backupprefs->backup_blogs);
echo $OUTPUT->table($table); echo html_writer::table($table);
echo "</td></tr>"; echo "</td></tr>";
} }
@ -231,7 +231,7 @@
echo get_string("includelogentries").'</b>'; echo get_string("includelogentries").'</b>';
//Print info //Print info
$table->data = log_check_backup($id); $table->data = log_check_backup($id);
echo $OUTPUT->table($table); echo html_writer::table($table);
echo "</td></tr>"; echo "</td></tr>";
} }
@ -242,7 +242,7 @@
echo get_string("includeuserfiles").'</b>'; echo get_string("includeuserfiles").'</b>';
//Print info //Print info
$table->data = user_files_check_backup($id,$backupprefs->backup_unique_code); $table->data = user_files_check_backup($id,$backupprefs->backup_unique_code);
echo $OUTPUT->table($table); echo html_writer::table($table);
echo "</td></tr>"; echo "</td></tr>";
} }
@ -253,7 +253,7 @@
echo get_string("includecoursefiles").'</b>'; echo get_string("includecoursefiles").'</b>';
//Print info //Print info
$table->data = course_files_check_backup($id,$backupprefs->backup_unique_code); $table->data = course_files_check_backup($id,$backupprefs->backup_unique_code);
echo $OUTPUT->table($table); echo html_writer::table($table);
echo "</td></tr>"; echo "</td></tr>";
} }
@ -264,7 +264,7 @@
echo get_string("includesitefiles").'</b>'; echo get_string("includesitefiles").'</b>';
//Print info //Print info
$table->data = site_files_check_backup($id,$backupprefs->backup_unique_code); $table->data = site_files_check_backup($id,$backupprefs->backup_unique_code);
echo $OUTPUT->table($table); echo html_writer::table($table);
echo "</td></tr>"; echo "</td></tr>";
} }
@ -275,7 +275,7 @@
echo get_string("includeroleassignments").'</b>'; echo get_string("includeroleassignments").'</b>';
//Print info //Print info
$table->data = array(array(get_string('roles'), count($backupprefs->backuproleassignments))); $table->data = array(array(get_string('roles'), count($backupprefs->backuproleassignments)));
echo $OUTPUT->table($table); echo html_writer::table($table);
echo "</td></tr>"; echo "</td></tr>";
} }
} }

View file

@ -533,7 +533,7 @@ define('RESTORE_GROUPS_GROUPINGS', 3);
echo $OUTPUT->heading(get_string("backup").":"); echo $OUTPUT->heading(get_string("backup").":");
$table->data = $tab; $table->data = $tab;
//Print backup general info //Print backup general info
echo $OUTPUT->table($table); echo html_writer::table($table);
if ($info->backup_backup_version <= 2005070500) { if ($info->backup_backup_version <= 2005070500) {
echo $OUTPUT->notification(get_string('backupnonisowarning')); // Message informing that this backup may not work! echo $OUTPUT->notification(get_string('backupnonisowarning')); // Message informing that this backup may not work!
@ -643,7 +643,7 @@ define('RESTORE_GROUPS_GROUPINGS', 3);
//Print title //Print title
echo $OUTPUT->heading(get_string("backupdetails").":"); echo $OUTPUT->heading(get_string("backupdetails").":");
//Print backup general info //Print backup general info
echo $OUTPUT->table($table); echo html_writer::table($table);
} else { } else {
$status = false; $status = false;
} }
@ -672,7 +672,7 @@ define('RESTORE_GROUPS_GROUPINGS', 3);
//Print title //Print title
echo $OUTPUT->heading(get_string("course").":"); echo $OUTPUT->heading(get_string("course").":");
//Print backup course header info //Print backup course header info
echo $OUTPUT->table($table); echo html_writer::table($table);
} else { } else {
$status = false; $status = false;
} }

View file

@ -68,7 +68,7 @@ echo $OUTPUT->box_start('generalbox boxaligncenter');
if (!empty($blogs)) { if (!empty($blogs)) {
$table = new html_table(); $table = new html_table();
$table->cellpadding = 4; $table->cellpadding = 4;
$table->add_class('generaltable boxaligncenter'); $table->attributes['class'] = 'generaltable boxaligncenter';
$table->head = array(get_string('name'), get_string('url'), get_string('timefetched', 'blog'), get_string('valid', 'blog'), get_string('actions')); $table->head = array(get_string('name'), get_string('url'), get_string('timefetched', 'blog'), get_string('valid', 'blog'), get_string('actions'));
foreach ($blogs as $blog) { foreach ($blogs as $blog) {
@ -87,7 +87,7 @@ if (!empty($blogs)) {
$table->data[] = new html_table_row(array($blog->name, $blog->url, userdate($blog->timefetched), $validicon, $editicon . $deleteicon)); $table->data[] = new html_table_row(array($blog->name, $blog->url, userdate($blog->timefetched), $validicon, $editicon . $deleteicon));
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
} }
$newexternalurl = new moodle_url('/blog/external_blog_edit.php'); $newexternalurl = new moodle_url('/blog/external_blog_edit.php');

View file

@ -133,17 +133,17 @@ class blog_entry {
// Start printing of the blog // Start printing of the blog
$table = new html_table(); $table = new html_table();
$table->cellspacing = 0; $table->cellspacing = 0;
$table->add_classes('forumpost blog_entry blog'. ($unassociatedentry ? 'draft' : $template['publishstate'])); $table->attributes['class'] = 'forumpost blog_entry blog'. ($unassociatedentry ? 'draft' : $template['publishstate']);
$table->width = '100%'; $table->width = '100%';
$picturecell = new html_table_cell(); $picturecell = new html_table_cell();
$picturecell->add_classes('picture left'); $picturecell->attributes['class'] = 'picture left';
$picturecell->text = $OUTPUT->user_picture($user); $picturecell->text = $OUTPUT->user_picture($user);
$table->head[] = $picturecell; $table->head[] = $picturecell;
$topiccell = new html_table_cell(); $topiccell = new html_table_cell();
$topiccell->add_classes('topic starter'); $topiccell->attributes['class'] = 'topic starter';
$topiccell->text = $OUTPUT->container($template['title'], 'subject'); $topiccell->text = $OUTPUT->container($template['title'], 'subject');
$topiccell->text .= $OUTPUT->container_start('author'); $topiccell->text .= $OUTPUT->container_start('author');
@ -169,11 +169,11 @@ class blog_entry {
$mainrow = new html_table_row(); $mainrow = new html_table_row();
$leftsidecell = new html_table_cell(); $leftsidecell = new html_table_cell();
$leftsidecell->add_classes('left side'); $leftsidecell->attributes['class'] = 'left side';
$mainrow->cells[] = $leftsidecell; $mainrow->cells[] = $leftsidecell;
$contentcell = new html_table_cell(); $contentcell = new html_table_cell();
$contentcell->add_class('content'); $contentcell->attributes['class'] = 'content';
$attachedimages = $OUTPUT->container($this->print_attachments(), 'attachments'); $attachedimages = $OUTPUT->container($this->print_attachments(), 'attachments');
@ -299,9 +299,9 @@ class blog_entry {
$table->data = array($mainrow); $table->data = array($mainrow);
if ($return) { if ($return) {
return $OUTPUT->table($table); return html_writer::table($table);
} else { } else {
echo $OUTPUT->table($table); echo html_writer::table($table);
} }
} }

View file

@ -119,7 +119,7 @@ class comment_manager {
} }
$table->data[] = array($checkbox, $c->username, $c->content, $action); $table->data[] = array($checkbox, $c->username, $c->content, $action);
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
echo $OUTPUT->paging_bar($count, $page, $this->perpage, $CFG->wwwroot.'/comment/index.php'); echo $OUTPUT->paging_bar($count, $page, $this->perpage, $CFG->wwwroot.'/comment/index.php');
} }

View file

@ -95,6 +95,6 @@
} }
} }
if (!empty($table)) { if (!empty($table)) {
echo $OUTPUT->table($table); echo html_writer::table($table);
} }

View file

@ -419,7 +419,7 @@ function print_log($course, $user=0, $date=0, $order="l.time ASC", $page=0, $per
$table->data[] = $row; $table->data[] = $row;
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
echo $OUTPUT->paging_bar($totalcount, $page, $perpage, "$url&perpage=$perpage"); echo $OUTPUT->paging_bar($totalcount, $page, $perpage, "$url&perpage=$perpage");
} }

View file

@ -99,7 +99,7 @@ if (empty($pending)) {
/// Build a table of all the requests. /// Build a table of all the requests.
$table = new html_table(); $table = new html_table();
$table->add_class('pendingcourserequests generaltable'); $table->attributes['class'] = 'pendingcourserequests generaltable';
$table->align = array('center', 'center', 'center', 'center', 'center', 'center', 'center'); $table->align = array('center', 'center', 'center', 'center', 'center', 'center', 'center');
$table->head = array('&nbsp;', get_string('shortname'), get_string('fullname'), $table->head = array('&nbsp;', get_string('shortname'), get_string('fullname'),
get_string('requestedby'), get_string('summary'), get_string('requestreason'), get_string('action')); get_string('requestedby'), get_string('summary'), get_string('requestreason'), get_string('action'));
@ -135,7 +135,7 @@ if (empty($pending)) {
} }
/// Display the table. /// Display the table.
echo $OUTPUT->table($table); echo html_writer::table($table);
/// Message about name collisions, if necessary. /// Message about name collisions, if necessary.
if (!empty($collision)) { if (!empty($collision)) {

View file

@ -47,7 +47,7 @@
echo $OUTPUT->container(get_string('computedfromlogs', 'admin', userdate($logstart)), 'loginfo'); echo $OUTPUT->container(get_string('computedfromlogs', 'admin', userdate($logstart)), 'loginfo');
$outlinetable = new html_table(); $outlinetable = new html_table();
$outlinetable->add_class('generaltable boxaligncenter'); $outlinetable->attributes['class'] = 'generaltable boxaligncenter';
$outlinetable->cellpadding = 5; $outlinetable->cellpadding = 5;
$outlinetable->id = 'outlinetable'; $outlinetable->id = 'outlinetable';
$outlinetable->head = array($stractivity, $strviews); $outlinetable->head = array($stractivity, $strviews);
@ -82,7 +82,7 @@
} }
if ($prevsecctionnum != $sectionnum) { if ($prevsecctionnum != $sectionnum) {
$sectionrow = new html_table_row(); $sectionrow = new html_table_row();
$sectionrow->add_class('section'); $sectionrow->attributes['class'] = 'section';
$sectioncell = new html_table_cell(); $sectioncell = new html_table_cell();
$sectioncell->colspan = count($outlinetable->head); $sectioncell->colspan = count($outlinetable->head);
@ -105,7 +105,7 @@
$reportrow = new html_table_row(); $reportrow = new html_table_row();
$activitycell = new html_table_cell(); $activitycell = new html_table_cell();
$activitycell->add_class('activity'); $activitycell->attributes['class'] = 'activity';
$activityicon = $OUTPUT->pix_icon('icon', $modulename, $cm->modname, array('class'=>'icon')); $activityicon = $OUTPUT->pix_icon('icon', $modulename, $cm->modname, array('class'=>'icon'));
@ -119,7 +119,7 @@
$reportrow->cells[] = $activitycell; $reportrow->cells[] = $activitycell;
$numviewscell = new html_table_cell(); $numviewscell = new html_table_cell();
$numviewscell->add_class('numviews'); $numviewscell->attributes['class'] = 'numviews';
if (!empty($views[$cm->id]->numviews)) { if (!empty($views[$cm->id]->numviews)) {
$numviewscell->text = $views[$cm->id]->numviews; $numviewscell->text = $views[$cm->id]->numviews;
@ -131,7 +131,7 @@
if ($CFG->useblogassociations) { if ($CFG->useblogassociations) {
$blogcell = new html_table_cell(); $blogcell = new html_table_cell();
$blogcell->add_class('blog'); $blogcell->attributes['class'] = 'blog';
if ($blogcount = blog_get_associated_count($course->id, $cm->id)) { if ($blogcount = blog_get_associated_count($course->id, $cm->id)) {
$blogcell->text = html_writer::link('/blog/index.php?modid='.$cm->id, $blogcount); $blogcell->text = html_writer::link('/blog/index.php?modid='.$cm->id, $blogcount);
} else { } else {
@ -142,7 +142,7 @@
if ($showlastaccess) { if ($showlastaccess) {
$lastaccesscell = new html_table_cell(); $lastaccesscell = new html_table_cell();
$lastaccesscell->add_class('lastaccess'); $lastaccesscell->attributes['class'] = 'lastaccess';
if (isset($views[$cm->id]->lasttime)) { if (isset($views[$cm->id]->lasttime)) {
$timeago = format_time(time() - $views[$cm->id]->lasttime); $timeago = format_time(time() - $views[$cm->id]->lasttime);
@ -153,7 +153,7 @@
$outlinetable->data[] = $reportrow; $outlinetable->data[] = $reportrow;
} }
} }
echo $OUTPUT->table($outlinetable); echo html_writer::table($outlinetable);
echo $OUTPUT->footer(); echo $OUTPUT->footer();

View file

@ -67,7 +67,7 @@
.'<div>'."\n" .'<div>'."\n"
.'<input type="hidden" name="mode" value="'.$mode.'" />'."\n"; .'<input type="hidden" name="mode" value="'.$mode.'" />'."\n";
echo $OUTPUT->table($table); echo html_writer::table($table);
echo '</div>'; echo '</div>';
echo '</form>'; echo '</form>';
@ -221,7 +221,7 @@
$lastrecord[] = $lastlink; $lastrecord[] = $lastlink;
$table->data[] = $lastrecord; $table->data[] = $lastrecord;
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
} }
} }

View file

@ -87,7 +87,7 @@ if ($mform->is_cancelled()) {
$table->align = array('left', 'left', 'left'); $table->align = array('left', 'left', 'left');
$table->width = '80%'; $table->width = '80%';
$table->data = $data; $table->data = $data;
echo $OUTPUT->table($table); echo html_writer::table($table);
echo $OUTPUT->continue_button('view.php?id='.$course->id); // Back to course page echo $OUTPUT->continue_button('view.php?id='.$course->id); // Back to course page
echo $OUTPUT->footer(); echo $OUTPUT->footer();

View file

@ -89,7 +89,7 @@ if (!$cms) {
} }
$table = new html_table(); $table = new html_table();
$table->set_classes(array('generaltable', 'mod_index')); $table->attributes['class'] = 'generaltable mod_index';
if ($course->format == 'weeks') { if ($course->format == 'weeks') {
$table->head = array ($strweek, $strname, $strintro); $table->head = array ($strweek, $strname, $strintro);
@ -137,6 +137,6 @@ foreach ($cms as $cm) {
format_module_intro('resource', $resource, $cm->id)); format_module_intro('resource', $resource, $cm->id));
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
echo $OUTPUT->footer(); echo $OUTPUT->footer();

View file

@ -256,7 +256,7 @@ switch ($mode) {
$a[] = $stat->line3; $a[] = $stat->line3;
$table->data[] = $a; $table->data[] = $a;
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
break; break;
case "outline" : case "outline" :

View file

@ -323,7 +323,7 @@ function authorize_print_order($orderid)
} }
$table->data[] = array("<b>$strs->confirm:</b>", get_string('captureyes', 'enrol_authorize') . '<br />' . $table->data[] = array("<b>$strs->confirm:</b>", get_string('captureyes', 'enrol_authorize') . '<br />' .
authorize_print_action_button($orderid, ORDER_CAPTURE, 0, true, false, $strs->no)); authorize_print_action_button($orderid, ORDER_CAPTURE, 0, true, false, $strs->no));
echo $OUTPUT->table($table); echo html_writer::table($table);
} }
elseif (ORDER_REFUND == $do && in_array(ORDER_REFUND, $statusandactions->actions)) { elseif (ORDER_REFUND == $do && in_array(ORDER_REFUND, $statusandactions->actions)) {
$refunded = 0.0; $refunded = 0.0;
@ -378,7 +378,7 @@ function authorize_print_order($orderid)
get_string('canbecredit', 'enrol_authorize', $a) . '<br />'; get_string('canbecredit', 'enrol_authorize', $a) . '<br />';
$table->data[] = array("<b>$strs->confirm:</b>", $table->data[] = array("<b>$strs->confirm:</b>",
authorize_print_action_button($orderid, ORDER_REFUND, 0, true, $authstrs->unenrolstudent, $strs->no, $extrahtml)); authorize_print_action_button($orderid, ORDER_REFUND, 0, true, $authstrs->unenrolstudent, $strs->no, $extrahtml));
echo $OUTPUT->table($table); echo html_writer::table($table);
} }
elseif (ORDER_DELETE == $do && in_array(ORDER_DELETE, $statusandactions->actions)) { elseif (ORDER_DELETE == $do && in_array(ORDER_DELETE, $statusandactions->actions)) {
if ($confirm && confirm_sesskey()) { if ($confirm && confirm_sesskey()) {
@ -390,7 +390,7 @@ function authorize_print_order($orderid)
} }
$table->data[] = array("<b>$strs->confirm:</b>", $table->data[] = array("<b>$strs->confirm:</b>",
authorize_print_action_button($orderid, ORDER_DELETE, 0, true, $authstrs->unenrolstudent,$strs->no)); authorize_print_action_button($orderid, ORDER_DELETE, 0, true, $authstrs->unenrolstudent,$strs->no));
echo $OUTPUT->table($table); echo html_writer::table($table);
} }
elseif (ORDER_VOID == $do) { // special case: cancel original or refunded transaction? elseif (ORDER_VOID == $do) { // special case: cancel original or refunded transaction?
$suborderid = optional_param('suborder', 0, PARAM_INT); $suborderid = optional_param('suborder', 0, PARAM_INT);
@ -412,7 +412,7 @@ function authorize_print_order($orderid)
} }
$table->data[] = array("<b>$strs->confirm:</b>", get_string('voidyes', 'enrol_authorize') . '<br />' . $table->data[] = array("<b>$strs->confirm:</b>", get_string('voidyes', 'enrol_authorize') . '<br />' .
authorize_print_action_button($orderid, ORDER_VOID, 0, true, false, $strs->no)); authorize_print_action_button($orderid, ORDER_VOID, 0, true, false, $strs->no));
echo $OUTPUT->table($table); echo html_writer::table($table);
} }
elseif (!empty($suborderid)) { // cancel refunded elseif (!empty($suborderid)) { // cancel refunded
$sql = "SELECT r.*, e.courseid, e.paymentmethod $sql = "SELECT r.*, e.courseid, e.paymentmethod
@ -453,12 +453,12 @@ function authorize_print_order($orderid)
$a->amount = $suborder->amount; $a->amount = $suborder->amount;
$table->data[] = array("<b>$strs->confirm:</b>", get_string('subvoidyes', 'enrol_authorize', $a) . '<br />' . $table->data[] = array("<b>$strs->confirm:</b>", get_string('subvoidyes', 'enrol_authorize', $a) . '<br />' .
authorize_print_action_button($orderid, ORDER_VOID, $suborderid, true, $authstrs->unenrolstudent, $strs->no)); authorize_print_action_button($orderid, ORDER_VOID, $suborderid, true, $authstrs->unenrolstudent, $strs->no));
echo $OUTPUT->table($table); echo html_writer::table($table);
} }
} }
} }
else { else {
echo $OUTPUT->table($table); echo html_writer::table($table);
if ($settled) { // show refunds. if ($settled) { // show refunds.
$t2 = new html_table(); $t2 = new html_table();
@ -505,7 +505,7 @@ function authorize_print_order($orderid)
$t2->data[] = array('','',get_string('noreturns', 'enrol_authorize'),'',''); $t2->data[] = array('','',get_string('noreturns', 'enrol_authorize'),'','');
} }
echo "<h4>" . get_string('returns', 'enrol_authorize') . "</h4>\n"; echo "<h4>" . get_string('returns', 'enrol_authorize') . "</h4>\n";
echo $OUTPUT->table($t2); echo html_writer::table($t2);
} }
} }

View file

@ -199,7 +199,7 @@ if (empty($availablefilters)) {
$table->data[] = $row; $table->data[] = $row;
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
echo '<div class="buttons">' . "\n"; echo '<div class="buttons">' . "\n";
echo '<input type="submit" name="savechanges" value="' . get_string('savechanges') . '" />'; echo '<input type="submit" name="savechanges" value="' . get_string('savechanges') . '" />';
echo "\n</div>\n"; echo "\n</div>\n";

View file

@ -70,6 +70,6 @@ $table->align = array('left', 'left', 'left');
$table->width = '30%'; $table->width = '30%';
$table->data = $data; $table->data = $data;
$table->tablealign = 'center'; $table->tablealign = 'center';
echo $OUTPUT->table($table); echo html_writer::table($table);
echo $OUTPUT->footer(); echo $OUTPUT->footer();

View file

@ -181,7 +181,7 @@ if ($courseid and $outcomes = grade_outcome::fetch_all_local($courseid)) {
$table->align = array('left', 'left', 'left', 'center', 'center'); $table->align = array('left', 'left', 'left', 'center', 'center');
$table->width = '90%'; $table->width = '90%';
$table->data = $data; $table->data = $data;
$return .= $OUTPUT->table($table); $return .= html_writer::table($table);
$outcomes_tables[] = $return; $outcomes_tables[] = $return;
} }
@ -233,7 +233,7 @@ if ($outcomes = grade_outcome::fetch_all_global()) {
$table->align = array('left', 'left', 'left', 'center', 'center', 'center'); $table->align = array('left', 'left', 'left', 'center', 'center', 'center');
$table->width = '90%'; $table->width = '90%';
$table->data = $data; $table->data = $data;
$return .= $OUTPUT->table($table); $return .= html_writer::table($table);
$outcomes_tables[] = $return; $outcomes_tables[] = $return;
} }

View file

@ -158,9 +158,9 @@ if ($courseid) {
} }
echo $OUTPUT->heading($strcustomscales, 3, 'main'); echo $OUTPUT->heading($strcustomscales, 3, 'main');
echo $OUTPUT->table($table); echo html_writer::table($table);
echo $OUTPUT->heading($strstandardscale, 3, 'main'); echo $OUTPUT->heading($strstandardscale, 3, 'main');
echo $OUTPUT->table($table2); echo html_writer::table($table2);
echo $OUTPUT->container_start('buttons'); echo $OUTPUT->container_start('buttons');
echo $OUTPUT->single_button(new moodle_url('edit.php', array('courseid'=>$courseid)), $srtcreatenewscale); echo $OUTPUT->single_button(new moodle_url('edit.php', array('courseid'=>$courseid)), $srtcreatenewscale);
echo $OUTPUT->container_end(); echo $OUTPUT->container_end();

View file

@ -309,7 +309,7 @@ echo '<form id="gradetreeform" method="post" action="'.$returnurl.'">';
echo '<div>'; echo '<div>';
echo '<input type="hidden" name="sesskey" value="'.sesskey().'" />'; echo '<input type="hidden" name="sesskey" value="'.sesskey().'" />';
echo $OUTPUT->table($grade_edit_tree->table); echo html_writer::table($grade_edit_tree->table);
echo '<div id="gradetreesubmit">'; echo '<div id="gradetreesubmit">';
if (!$moving) { if (!$moving) {

View file

@ -84,7 +84,7 @@ class grade_edit_tree {
$this->table = new html_table(); $this->table = new html_table();
$this->table->id = "grade_edit_tree_table"; $this->table->id = "grade_edit_tree_table";
$this->table->cellpadding = 5; $this->table->cellpadding = 5;
$this->table->add_classes(array('generaltable', $mode)); $this->table->attributes['class'] = 'generaltable ' . $mode;
$this->table->style = $widthstyle; $this->table->style = $widthstyle;
foreach ($this->columns as $column) { foreach ($this->columns as $column) {
@ -161,7 +161,7 @@ class grade_edit_tree {
// do not diplay children // do not diplay children
$cell = new html_table_cell(); $cell = new html_table_cell();
$cell->colspan = 12; $cell->colspan = 12;
$cell->add_classes(array($element['type'], 'moving')); $cell->attributes['class'] = $element['type'] . ' moving';
$cell->text = $object->name.' ('.get_string('move').')'; $cell->text = $object->name.' ('.get_string('move').')';
return array(new html_table_row(array($cell))); return array(new html_table_row(array($cell)));
} }
@ -278,16 +278,16 @@ class grade_edit_tree {
} }
$row = new html_table_row(); $row = new html_table_row();
$row->add_classes(array($courseclass, 'category', $dimmed)); $row->attributes['class'] = $courseclass . ' category ' . $dimmed;
foreach ($rowclasses as $class) { foreach ($rowclasses as $class) {
$row->add_class($class); $row->attributes['class'] .= ' ' . $class;
} }
$headercell = new html_table_cell(); $headercell = new html_table_cell();
$headercell->header = true; $headercell->header = true;
$headercell->scope = 'row'; $headercell->scope = 'row';
$headercell->title = $object->stripped_name; $headercell->attributes['title'] = $object->stripped_name;
$headercell->add_classes(array('cell', 'rowspan', $levelclass)); $headercell->attributes['class'] = 'cell rowspan ' . $levelclass;
$headercell->rowspan = $row_count+1+$row_count_offset; $headercell->rowspan = $row_count+1+$row_count_offset;
$row->cells[] = $headercell; $row->cells[] = $headercell;
@ -304,7 +304,7 @@ class grade_edit_tree {
// Print a coloured row to show the end of the category accross the table // Print a coloured row to show the end of the category accross the table
$endcell = new html_table_cell(); $endcell = new html_table_cell();
$endcell->colspan = (19 - $level); $endcell->colspan = (19 - $level);
$endcell->add_classes(array('colspan', $levelclass)); $endcell->attributes['class'] = 'colspan ' . $levelclass;
$returnrows[] = new html_table_row(array($endcell));; $returnrows[] = new html_table_row(array($endcell));;
@ -321,9 +321,9 @@ class grade_edit_tree {
$dimmed = ($item->is_hidden()) ? "dimmed_text" : ""; $dimmed = ($item->is_hidden()) ? "dimmed_text" : "";
$gradeitemrow = new html_table_row(); $gradeitemrow = new html_table_row();
$gradeitemrow->add_classes(array($categoryitemclass, 'item', $dimmed)); $gradeitemrow->attributes['class'] = $categoryitemclass . ' item ' . $dimmed;
foreach ($rowclasses as $class) { foreach ($rowclasses as $class) {
$gradeitemrow->add_class($class); $gradeitemrow->attributes['class'] .= ' ' . $class;
} }
foreach ($this->columns as $column) { foreach ($this->columns as $column) {
@ -518,13 +518,13 @@ abstract class grade_edit_tree_column {
$this->headercell = new html_table_cell(); $this->headercell = new html_table_cell();
$this->headercell->header = true; $this->headercell->header = true;
$this->headercell->style = 'whitespace: normal;'; $this->headercell->style = 'whitespace: normal;';
$this->headercell->add_class('header'); $this->headercell->attributes['class'] = 'header';
$this->categorycell = new html_table_cell(); $this->categorycell = new html_table_cell();
$this->categorycell->add_class('cell'); $this->categorycell->attributes['class'] = 'cell';
$this->itemcell = new html_table_cell(); $this->itemcell = new html_table_cell();
$this->itemcell->add_class('cell'); $this->itemcell->attributes['class'] = 'cell';
} }
} }
@ -573,7 +573,7 @@ class grade_edit_tree_column_name extends grade_edit_tree_column {
public function get_header_cell() { public function get_header_cell() {
$headercell = clone($this->headercell); $headercell = clone($this->headercell);
$headercell->add_class('name'); $headercell->attributes['class'] .= ' name';
$headercell->colspan = $this->deepest_level + 1; $headercell->colspan = $this->deepest_level + 1;
$headercell->text = get_string('name'); $headercell->text = get_string('name');
return $headercell; return $headercell;
@ -585,7 +585,7 @@ class grade_edit_tree_column_name extends grade_edit_tree_column {
throw new Exception('Array key (name or level) missing from 3rd param of grade_edit_tree_column_name::get_category_cell($category, $levelclass, $params)'); throw new Exception('Array key (name or level) missing from 3rd param of grade_edit_tree_column_name::get_category_cell($category, $levelclass, $params)');
} }
$categorycell = clone($this->categorycell); $categorycell = clone($this->categorycell);
$categorycell->add_classes(array('name', $levelclass)); $categorycell->attributes['class'] .= ' name ' . $levelclass;
$categorycell->colspan = ($this->deepest_level +1) - $params['level']; $categorycell->colspan = ($this->deepest_level +1) - $params['level'];
$categorycell->text = $OUTPUT->heading($params['name'], 4); $categorycell->text = $OUTPUT->heading($params['name'], 4);
return $categorycell; return $categorycell;
@ -601,7 +601,7 @@ class grade_edit_tree_column_name extends grade_edit_tree_column {
$name = $params['name']; $name = $params['name'];
$itemcell = clone($this->itemcell); $itemcell = clone($this->itemcell);
$itemcell->add_class('name'); $itemcell->attributes['class'] .= ' name';
$itemcell->colspan = ($this->deepest_level + 1) - $params['level']; $itemcell->colspan = ($this->deepest_level + 1) - $params['level'];
$itemcell->text = $name; $itemcell->text = $name;
return $itemcell; return $itemcell;
@ -659,7 +659,7 @@ class grade_edit_tree_column_aggregation extends grade_edit_tree_column_category
} }
$categorycell = clone($this->categorycell); $categorycell = clone($this->categorycell);
$categorycell->add_class($levelclass); $categorycell->attributes['class'] .= ' ' . $levelclass;
$categorycell->text = $aggregation; $categorycell->text = $aggregation;
return $categorycell; return $categorycell;
@ -684,7 +684,7 @@ class grade_edit_tree_column_extracredit extends grade_edit_tree_column {
public function get_category_cell($category, $levelclass, $params) { public function get_category_cell($category, $levelclass, $params) {
$item = $category->get_grade_item(); $item = $category->get_grade_item();
$categorycell = clone($this->categorycell); $categorycell = clone($this->categorycell);
$categorycell->add_class($levelclass); $categorycell->attributes['class'] .= ' ' . $levelclass;
$categorycell->text = grade_edit_tree::get_weight_input($item, 'extra'); $categorycell->text = grade_edit_tree::get_weight_input($item, 'extra');
return $categorycell; return $categorycell;
} }
@ -727,7 +727,7 @@ class grade_edit_tree_column_weight extends grade_edit_tree_column {
$item = $category->get_grade_item(); $item = $category->get_grade_item();
$categorycell = clone($this->categorycell); $categorycell = clone($this->categorycell);
$categorycell->add_class($levelclass); $categorycell->attributes['class'] .= ' ' . $levelclass;
$categorycell->text = grade_edit_tree::get_weight_input($item, 'weight'); $categorycell->text = grade_edit_tree::get_weight_input($item, 'weight');
return $categorycell; return $categorycell;
} }
@ -766,7 +766,7 @@ class grade_edit_tree_column_range extends grade_edit_tree_column {
public function get_category_cell($category, $levelclass, $params) { public function get_category_cell($category, $levelclass, $params) {
$categorycell = clone($this->categorycell); $categorycell = clone($this->categorycell);
$categorycell->add_classes(array('range', $levelclass)); $categorycell->attributes['class'] .= ' range ' . $levelclass;
$categorycell->text = ' - '; $categorycell->text = ' - ';
return $categorycell; return $categorycell;
} }
@ -828,7 +828,7 @@ class grade_edit_tree_column_aggregateonlygraded extends grade_edit_tree_column_
} }
$categorycell = clone($this->categorycell); $categorycell = clone($this->categorycell);
$categorycell->add_class($levelclass); $categorycell->attributes['class'] .= ' ' . $levelclass;
$categorycell->text = $hidden.$aggregateonlygraded; $categorycell->text = $hidden.$aggregateonlygraded;
return $categorycell; return $categorycell;
} }
@ -865,7 +865,7 @@ class grade_edit_tree_column_aggregatesubcats extends grade_edit_tree_column_cat
} }
$categorycell = clone($this->categorycell); $categorycell = clone($this->categorycell);
$categorycell->add_class($levelclass); $categorycell->attributes['class'] .= ' ' . $levelclass;
$categorycell->text = $hidden.$aggregatesubcats; $categorycell->text = $hidden.$aggregatesubcats;
return $categorycell; return $categorycell;
@ -903,7 +903,7 @@ class grade_edit_tree_column_aggregateoutcomes extends grade_edit_tree_column_ca
} }
$categorycell = clone($this->categorycell); $categorycell = clone($this->categorycell);
$categorycell->add_class($levelclass); $categorycell->attributes['class'] .= ' ' . $levelclass;
$categorycell->text = $hidden.$aggregateoutcomes; $categorycell->text = $hidden.$aggregateoutcomes;
return $categorycell; return $categorycell;
} }
@ -945,7 +945,7 @@ class grade_edit_tree_column_droplow extends grade_edit_tree_column_category {
} }
$categorycell = clone($this->categorycell); $categorycell = clone($this->categorycell);
$categorycell->add_class($levelclass); $categorycell->attributes['class'] .= ' ' . $levelclass;
$categorycell->text = $droplow; $categorycell->text = $droplow;
return $categorycell; return $categorycell;
} }
@ -978,7 +978,7 @@ class grade_edit_tree_column_keephigh extends grade_edit_tree_column_category {
} }
$categorycell = clone($this->categorycell); $categorycell = clone($this->categorycell);
$categorycell->add_class($levelclass); $categorycell->attributes['class'] .= ' ' . $levelclass;
$categorycell->text = $keephigh; $categorycell->text = $keephigh;
return $categorycell; return $categorycell;
} }
@ -1005,7 +1005,7 @@ class grade_edit_tree_column_multfactor extends grade_edit_tree_column {
public function get_category_cell($category, $levelclass, $params) { public function get_category_cell($category, $levelclass, $params) {
$categorycell = clone($this->categorycell); $categorycell = clone($this->categorycell);
$categorycell->add_class($levelclass); $categorycell->attributes['class'] .= ' ' . $levelclass;
$categorycell->text = ' - '; $categorycell->text = ' - ';
return $categorycell; return $categorycell;
} }
@ -1046,7 +1046,7 @@ class grade_edit_tree_column_plusfactor extends grade_edit_tree_column {
public function get_category_cell($category, $levelclass, $params) { public function get_category_cell($category, $levelclass, $params) {
$categorycell = clone($this->categorycell); $categorycell = clone($this->categorycell);
$categorycell->add_class($levelclass); $categorycell->attributes['class'] .= ' ' . $levelclass;
$categorycell->text = ' - '; $categorycell->text = ' - ';
return $categorycell; return $categorycell;
@ -1086,7 +1086,7 @@ class grade_edit_tree_column_actions extends grade_edit_tree_column {
public function get_header_cell() { public function get_header_cell() {
$headercell = clone($this->headercell); $headercell = clone($this->headercell);
$headercell->add_class('actions'); $headercell->attributes['class'] .= ' actions';
$headercell->text = get_string('actions'); $headercell->text = get_string('actions');
return $headercell; return $headercell;
} }
@ -1098,7 +1098,7 @@ class grade_edit_tree_column_actions extends grade_edit_tree_column {
} }
$categorycell = clone($this->categorycell); $categorycell = clone($this->categorycell);
$categorycell->add_class($levelclass); $categorycell->attributes['class'] .= ' ' . $levelclass;
$categorycell->text = $params['actions']; $categorycell->text = $params['actions'];
return $categorycell; return $categorycell;
} }
@ -1108,7 +1108,7 @@ class grade_edit_tree_column_actions extends grade_edit_tree_column {
throw new Exception('Array key (actions) missing from 2nd param of grade_edit_tree_column_actions::get_item_cell($item, $params)'); throw new Exception('Array key (actions) missing from 2nd param of grade_edit_tree_column_actions::get_item_cell($item, $params)');
} }
$itemcell = clone($this->itemcell); $itemcell = clone($this->itemcell);
$itemcell->add_class('actions'); $itemcell->attributes['class'] .= ' actions';
$itemcell->text = $params['actions']; $itemcell->text = $params['actions'];
return $itemcell; return $itemcell;
} }
@ -1122,7 +1122,7 @@ class grade_edit_tree_column_select extends grade_edit_tree_column {
public function get_header_cell() { public function get_header_cell() {
$headercell = clone($this->headercell); $headercell = clone($this->headercell);
$headercell->add_class('selection'); $headercell->attributes['class'] .= ' selection';
$headercell->text = get_string('select'); $headercell->text = get_string('select');
return $headercell; return $headercell;
} }
@ -1136,7 +1136,7 @@ class grade_edit_tree_column_select extends grade_edit_tree_column {
$selectnone = new action_link(new moodle_url('#'), get_string('none'), new component_action('click', 'togglecheckboxes', array('eid' => $params['eid'], 'check' => false))); $selectnone = new action_link(new moodle_url('#'), get_string('none'), new component_action('click', 'togglecheckboxes', array('eid' => $params['eid'], 'check' => false)));
$categorycell = clone($this->categorycell); $categorycell = clone($this->categorycell);
$categorycell->add_classes(array('last', $levelclass)); $categorycell->attributes['class'] .= ' last ' . $levelclass;
$categorycell->style .= 'text-align: center;'; $categorycell->style .= 'text-align: center;';
$categorycell->text = $OUTPUT->render($selectall) . '<br />' . $OUTPUT->render($selectnone); $categorycell->text = $OUTPUT->render($selectall) . '<br />' . $OUTPUT->render($selectnone);
return $categorycell; return $categorycell;

View file

@ -74,7 +74,7 @@ $table->size = array('50%', '30%', '10%', '10%');
$table->align = array('left', 'left', 'left', 'center'); $table->align = array('left', 'left', 'left', 'center');
$table->width = '90%'; $table->width = '90%';
$table->data = $data; $table->data = $data;
echo $OUTPUT->table($table); echo html_writer::table($table);
echo $OUTPUT->container_start('buttons mdl-align'); echo $OUTPUT->container_start('buttons mdl-align');
echo $OUTPUT->single_button(new moodle_url('key.php', array('courseid'=>$course->id)), get_string('newuserkey', 'userkey')); echo $OUTPUT->single_button(new moodle_url('key.php', array('courseid'=>$course->id)), get_string('newuserkey', 'userkey'));

View file

@ -71,7 +71,7 @@ $table->size = array('50%', '30%', '10%', '10%');
$table->align = array('left', 'left', 'left', 'center'); $table->align = array('left', 'left', 'left', 'center');
$table->width = '90%'; $table->width = '90%';
$table->data = $data; $table->data = $data;
echo $OUTPUT->table($table); echo html_writer::table($table);
echo $OUTPUT->container_start('buttons mdl-align'); echo $OUTPUT->container_start('buttons mdl-align');
echo $OUTPUT->single_button(new moodle_url('key.php', array('courseid'=>$course->id)), get_string('newuserkey', 'userkey')); echo $OUTPUT->single_button(new moodle_url('key.php', array('courseid'=>$course->id)), get_string('newuserkey', 'userkey'));

View file

@ -545,7 +545,7 @@ class grade_report_grader extends grade_report {
for ($i = 0; $i < $levels; $i++) { for ($i = 0; $i < $levels; $i++) {
$fillercell = new html_table_cell(); $fillercell = new html_table_cell();
$fillercell->add_classes(array('fixedcolumn', 'cell', 'topleft')); $fillercell->attributes['class'] = 'fixedcolumn cell topleft';
$fillercell->text = ' '; $fillercell->text = ' ';
$fillercell->colspan = $colspan; $fillercell->colspan = $colspan;
$row = new html_table_row(array($fillercell)); $row = new html_table_row(array($fillercell));
@ -553,10 +553,10 @@ class grade_report_grader extends grade_report {
} }
$headerrow = new html_table_row(); $headerrow = new html_table_row();
$headerrow->add_class('heading'); $headerrow->attributes['class'] = 'heading';
$studentheader = new html_table_cell(); $studentheader = new html_table_cell();
$studentheader->add_classes(array('header')); $studentheader->attributes['class'] = 'header';
$studentheader->scope = 'col'; $studentheader->scope = 'col';
$studentheader->header = true; $studentheader->header = true;
$studentheader->id = 'studentheader'; $studentheader->id = 'studentheader';
@ -572,7 +572,7 @@ class grade_report_grader extends grade_report {
$sortidnumberlink = html_writer::link(new moodle_url($this->baseurl, array('sortitemid'=>'idnumber')), get_string('idnumber')); $sortidnumberlink = html_writer::link(new moodle_url($this->baseurl, array('sortitemid'=>'idnumber')), get_string('idnumber'));
$idnumberheader = new html_table_cell(); $idnumberheader = new html_table_cell();
$idnumberheader->add_classes(array('header', 'useridnumber')); $idnumberheader->attributes['class'] = 'header useridnumber';
$idnumberheader->scope = 'col'; $idnumberheader->scope = 'col';
$idnumberheader->header = true; $idnumberheader->header = true;
$idnumberheader->text = $arrows['idnumber']; $idnumberheader->text = $arrows['idnumber'];
@ -589,10 +589,10 @@ class grade_report_grader extends grade_report {
foreach ($this->users as $userid => $user) { foreach ($this->users as $userid => $user) {
$userrow = new html_table_row(); $userrow = new html_table_row();
$userrow->id = 'fixed_user_'.$userid; $userrow->id = 'fixed_user_'.$userid;
$userrow->add_classes(array('r'.$this->rowcount++, $rowclasses[$this->rowcount % 2])); $userrow->attributes['class'] = 'r'.$this->rowcount++ . $rowclasses[$this->rowcount % 2];
$usercell = new html_table_cell(); $usercell = new html_table_cell();
$usercell->add_classes(array('user')); $usercell->attributes['class'] = 'user';
$usercell->header = true; $usercell->header = true;
$usercell->scope = 'row'; $usercell->scope = 'row';
@ -606,7 +606,7 @@ class grade_report_grader extends grade_report {
if (has_capability('gradereport/'.$CFG->grade_profilereport.':view', $this->context)) { if (has_capability('gradereport/'.$CFG->grade_profilereport.':view', $this->context)) {
$userreportcell = new html_table_cell(); $userreportcell = new html_table_cell();
$userreportcell->add_class('userreport'); $userreportcell->attributes['class'] = 'userreport';
$userreportcell->header = true; $userreportcell->header = true;
$a->user = fullname($user); $a->user = fullname($user);
$strgradesforuser = get_string('gradesforuser', 'grades', $a); $strgradesforuser = get_string('gradesforuser', 'grades', $a);
@ -617,7 +617,7 @@ class grade_report_grader extends grade_report {
if ($showuseridnumber) { if ($showuseridnumber) {
$idnumbercell = new html_table_cell(); $idnumbercell = new html_table_cell();
$idnumbercell->add_classes(array('header', 'useridnumber')); $idnumbercell->attributes['class'] = 'header useridnumber';
$idnumbercell->header = true; $idnumbercell->header = true;
$idnumbercell->scope = 'row'; $idnumbercell->scope = 'row';
$userrow->cells[] = $idnumbercell; $userrow->cells[] = $idnumbercell;
@ -666,7 +666,7 @@ class grade_report_grader extends grade_report {
} }
$headingrow = new html_table_row(); $headingrow = new html_table_row();
$headingrow->add_class('heading_name_row'); $headingrow->attributes['class'] = 'heading_name_row';
foreach ($row as $columnkey => $element) { foreach ($row as $columnkey => $element) {
$sortlink = clone($this->baseurl); $sortlink = clone($this->baseurl);
@ -696,7 +696,7 @@ class grade_report_grader extends grade_report {
// Element is a filler // Element is a filler
if ($type == 'filler' or $type == 'fillerfirst' or $type == 'fillerlast') { if ($type == 'filler' or $type == 'fillerfirst' or $type == 'fillerlast') {
$fillercell = new html_table_cell(); $fillercell = new html_table_cell();
$fillercell->add_classes(array($type, $catlevel)); $fillercell->attributes['class'] = $type . ' ' . $catlevel;
$fillercell->colspan = $colspan; $fillercell->colspan = $colspan;
$fillercell->text = '&nbsp;'; $fillercell->text = '&nbsp;';
$fillercell->header = true; $fillercell->header = true;
@ -706,7 +706,7 @@ class grade_report_grader extends grade_report {
// Element is a category // Element is a category
else if ($type == 'category') { else if ($type == 'category') {
$categorycell = new html_table_cell(); $categorycell = new html_table_cell();
$categorycell->add_classes(array('category', $catlevel)); $categorycell->attributes['class'] = 'category ' . $catlevel;
$categorycell->colspan = $colspan; $categorycell->colspan = $colspan;
$categorycell->text = shorten_text($element['object']->get_name()); $categorycell->text = shorten_text($element['object']->get_name());
$categorycell->text .= $this->get_collapsing_icon($element); $categorycell->text .= $this->get_collapsing_icon($element);
@ -738,10 +738,10 @@ class grade_report_grader extends grade_report {
$headerlink = $this->gtree->get_element_header($element, true, $this->get_pref('showactivityicons'), false); $headerlink = $this->gtree->get_element_header($element, true, $this->get_pref('showactivityicons'), false);
$itemcell = new html_table_cell(); $itemcell = new html_table_cell();
$itemcell->add_classes(array($type, $catlevel, 'highlightable')); $itemcell->attributes['class'] = $type . ' ' . $catlevel . 'highlightable';
if ($element['object']->is_hidden()) { if ($element['object']->is_hidden()) {
$itemcell->add_class('hidden'); $itemcell->attributes['class'] .= ' hidden';
} }
$itemcell->colspan = $colspan; $itemcell->colspan = $colspan;
@ -751,7 +751,6 @@ class grade_report_grader extends grade_report {
$headingrow->cells[] = $itemcell; $headingrow->cells[] = $itemcell;
} }
} }
$rows[] = $headingrow; $rows[] = $headingrow;
} }
@ -798,7 +797,7 @@ class grade_report_grader extends grade_report {
$itemrow = new html_table_row(); $itemrow = new html_table_row();
$itemrow->id = 'user_'.$userid; $itemrow->id = 'user_'.$userid;
$itemrow->add_class($rowclasses[$this->rowcount % 2]); $itemrow->attributes['class'] = $rowclasses[$this->rowcount % 2];
$jsarguments['users'][$userid] = fullname($user); $jsarguments['users'][$userid] = fullname($user);
@ -838,19 +837,19 @@ class grade_report_grader extends grade_report {
$eid = $this->gtree->get_grade_eid($grade); $eid = $this->gtree->get_grade_eid($grade);
$element = array('eid'=>$eid, 'object'=>$grade, 'type'=>'grade'); $element = array('eid'=>$eid, 'object'=>$grade, 'type'=>'grade');
$itemcell->add_class('grade'); $itemcell->attributes['class'] .= ' grade';
if ($item->is_category_item()) { if ($item->is_category_item()) {
$itemcell->add_class('cat'); $itemcell->attributes['class'] .= ' cat';
} }
if ($item->is_course_item()) { if ($item->is_course_item()) {
$itemcell->add_class('course'); $itemcell->attributes['class'] .= ' course';
} }
if ($grade->is_overridden()) { if ($grade->is_overridden()) {
$itemcell->add_class('overridden'); $itemcell->attributes['class'] .= ' overridden';
} }
if ($grade->is_excluded()) { if ($grade->is_excluded()) {
// $itemcell->add_class('excluded'); // $itemcell->attributes['class'] .= ' excluded';
} }
if (!empty($grade->feedback)) { if (!empty($grade->feedback)) {
@ -950,9 +949,9 @@ class grade_report_grader extends grade_report {
$gradedisplaytype = $item->get_displaytype(); $gradedisplaytype = $item->get_displaytype();
if ($item->scaleid && !empty($scalesarray[$item->scaleid])) { if ($item->scaleid && !empty($scalesarray[$item->scaleid])) {
$itemcell->add_class('grade_type_scale'); $itemcell->attributes['class'] .= ' grade_type_scale';
} else if ($item->gradetype != GRADE_TYPE_TEXT) { } else if ($item->gradetype != GRADE_TYPE_TEXT) {
$itemcell->add_class('grade_type_text'); $itemcell->attributes['class'] .= ' grade_type_text';
} }
if ($item->needsupdate) { if ($item->needsupdate) {
@ -1020,20 +1019,17 @@ class grade_report_grader extends grade_report {
if ($fixedstudents) { if ($fixedstudents) {
$fixedcolumntable = new html_table(); $fixedcolumntable = new html_table();
$fixedcolumntable->id = 'fixed_column'; $fixedcolumntable->id = 'fixed_column';
$fixedcolumntable->add_class('fixed_grades_column');
$fixedcolumntable->bodyclasses = 'leftbody';
$fixedcolumntable->data = $leftrows; $fixedcolumntable->data = $leftrows;
$html .= $OUTPUT->container($OUTPUT->table($fixedcolumntable), 'left_scroller'); $html .= $OUTPUT->container(html_writer::table($fixedcolumntable), 'left_scroller');
$righttable = new html_table(); $righttable = new html_table();
$righttable->id = 'user-grades'; $righttable->id = 'user-grades';
$righttable->bodyclasses = array('righttest');
$righttable->data = $rightrows; $righttable->data = $rightrows;
$html .= $OUTPUT->container($OUTPUT->table($righttable), 'right_scroller'); $html .= $OUTPUT->container(html_writer::table($righttable), 'right_scroller');
} else { } else {
$fulltable = new html_table(); $fulltable = new html_table();
$fulltable->add_classes(array('gradestable', 'flexible', 'boxaligncenter', 'generaltable')); $fulltable->attributes['class'] = 'gradestable flexible boxaligncenter generaltable';
$fulltable->id = 'user-grades'; $fulltable->id = 'user-grades';
// Extract rows from each side (left and right) and collate them into one row each // Extract rows from each side (left and right) and collate them into one row each
@ -1041,7 +1037,7 @@ class grade_report_grader extends grade_report {
$row->cells = array_merge($row->cells, $rightrows[$key]->cells); $row->cells = array_merge($row->cells, $rightrows[$key]->cells);
$fulltable->data[] = $row; $fulltable->data[] = $row;
} }
$html .= $OUTPUT->table($fulltable); $html .= html_writer::table($fulltable);
} }
return $OUTPUT->container($html, 'gradeparent'); return $OUTPUT->container($html, 'gradeparent');
} }
@ -1058,9 +1054,9 @@ class grade_report_grader extends grade_report {
if ($USER->gradeediting[$this->courseid]) { if ($USER->gradeediting[$this->courseid]) {
$controlsrow = new html_table_row(); $controlsrow = new html_table_row();
$controlsrow->add_class('controls'); $controlsrow->attributes['class'] = 'controls';
$controlscell = new html_table_cell(); $controlscell = new html_table_cell();
$controlscell->add_classes(array('header', 'controls')); $controlscell->attributes['class'] = 'header controls';
$controlscell->colspan = $colspan; $controlscell->colspan = $colspan;
$controlscell->text = $this->get_lang_string('controls','grades'); $controlscell->text = $this->get_lang_string('controls','grades');
@ -1081,9 +1077,9 @@ class grade_report_grader extends grade_report {
if ($this->get_pref('showranges')) { if ($this->get_pref('showranges')) {
$rangerow = new html_table_row(); $rangerow = new html_table_row();
$rangerow->add_classes(array('range', 'r'.$this->rowcount++)); $rangerow->attributes['class'] = 'range r'.$this->rowcount++;
$rangecell = new html_table_cell(); $rangecell = new html_table_cell();
$rangecell->add_classes(array('header', 'range')); $rangecell->attributes['class'] = 'header range';
$rangecell->colspan = $colspan; $rangecell->colspan = $colspan;
$rangecell->header = true; $rangecell->header = true;
$rangecell->scope = 'row'; $rangecell->scope = 'row';
@ -1116,9 +1112,9 @@ class grade_report_grader extends grade_report {
if ($groupavg) { if ($groupavg) {
if ($showaveragesgroup) { if ($showaveragesgroup) {
$groupavgrow = new html_table_row(); $groupavgrow = new html_table_row();
$groupavgrow->add_classes(array('groupavg', 'r'.$this->rowcount++)); $groupavgrow->attributes['class'] = 'groupavg r'.$this->rowcount++;
$groupavgcell = new html_table_cell(); $groupavgcell = new html_table_cell();
$groupavgcell->add_classes(array('header', 'range')); $groupavgcell->attributes['class'] = 'header range';
$groupavgcell->colspan = $colspan; $groupavgcell->colspan = $colspan;
$groupavgcell->header = true; $groupavgcell->header = true;
$groupavgcell->scope = 'row'; $groupavgcell->scope = 'row';
@ -1131,9 +1127,9 @@ class grade_report_grader extends grade_report {
if ($showaverages) { if ($showaverages) {
$avgrow = new html_table_row(); $avgrow = new html_table_row();
$avgrow->add_classes(array('avg', 'r'.$this->rowcount++)); $avgrow->attributes['class'] = 'avg r'.$this->rowcount++;
$avgcell = new html_table_cell(); $avgcell = new html_table_cell();
$avgcell->add_classes(array('header', 'range')); $avgcell->attributes['class'] = 'header range';
$avgcell->colspan = $colspan; $avgcell->colspan = $colspan;
$avgcell->header = true; $avgcell->header = true;
$avgcell->scope = 'row'; $avgcell->scope = 'row';
@ -1155,7 +1151,7 @@ class grade_report_grader extends grade_report {
global $USER; global $USER;
if ($USER->gradeediting[$this->courseid]) { if ($USER->gradeediting[$this->courseid]) {
$iconsrow = new html_table_row(); $iconsrow = new html_table_row();
$iconsrow->add_class('controls'); $iconsrow->attributes['class'] = 'controls';
$showuseridnumber = $this->get_pref('showuseridnumber'); $showuseridnumber = $this->get_pref('showuseridnumber');
@ -1166,7 +1162,7 @@ class grade_report_grader extends grade_report {
$eid = $this->gtree->get_item_eid($item); $eid = $this->gtree->get_item_eid($item);
$element = $this->gtree->locate_element($eid); $element = $this->gtree->locate_element($eid);
$itemcell = new html_table_cell(); $itemcell = new html_table_cell();
$itemcell->add_classes(array('controls', 'icons')); $itemcell->attributes['class'] = 'controls icons';
$itemcell->text = $this->get_icons($element); $itemcell->text = $this->get_icons($element);
$iconsrow->cells[] = $itemcell; $iconsrow->cells[] = $itemcell;
} }
@ -1187,13 +1183,13 @@ class grade_report_grader extends grade_report {
$rangesdisplaytype = $this->get_pref('rangesdisplaytype'); $rangesdisplaytype = $this->get_pref('rangesdisplaytype');
$rangesdecimalpoints = $this->get_pref('rangesdecimalpoints'); $rangesdecimalpoints = $this->get_pref('rangesdecimalpoints');
$rangerow = new html_table_row(); $rangerow = new html_table_row();
$rangerow->add_classes(array('heading', 'range')); $rangerow->attributes['class'] = 'heading range';
foreach ($this->gtree->items as $itemid=>$unused) { foreach ($this->gtree->items as $itemid=>$unused) {
$item =& $this->gtree->items[$itemid]; $item =& $this->gtree->items[$itemid];
$itemcell = new html_table_cell(); $itemcell = new html_table_cell();
$itemcell->header = true; $itemcell->header = true;
$itemcell->add_classes(array('header', 'range')); $itemcell->attributes['class'] .= ' header range';
$hidden = ''; $hidden = '';
if ($item->is_hidden()) { if ($item->is_hidden()) {
@ -1301,7 +1297,7 @@ class grade_report_grader extends grade_report {
$ungradedcounts = $DB->get_records_sql($SQL, $params); $ungradedcounts = $DB->get_records_sql($SQL, $params);
$avgrow = new html_table_row(); $avgrow = new html_table_row();
$avgrow->add_class('avg'); $avgrow->attributes['class'] = 'avg';
foreach ($this->gtree->items as $itemid=>$unused) { foreach ($this->gtree->items as $itemid=>$unused) {
$item =& $this->gtree->items[$itemid]; $item =& $this->gtree->items[$itemid];

View file

@ -435,7 +435,7 @@ font-size:100%;
padding:0; padding:0;
} }
.grade-report-grader .righttest td select { .grade-report-grader .right_scroller td select {
font-size:86%; font-size:86%;
padding:0; padding:0;
} }

View file

@ -171,7 +171,7 @@ if ($editform->is_cancelled()) {
$table->data[] = $line; $table->data[] = $line;
} }
$preview .= $OUTPUT->table($table); $preview .= html_writer::table($table);
} else { } else {
$grouping = null; $grouping = null;

View file

@ -98,7 +98,7 @@ $table->size = array('30%', '50%', '10%', '10%');
$table->align = array('left', 'left', 'center', 'center'); $table->align = array('left', 'left', 'center', 'center');
$table->width = '90%'; $table->width = '90%';
$table->data = $data; $table->data = $data;
echo $OUTPUT->table($table); echo html_writer::table($table);
echo $OUTPUT->container_start('buttons'); echo $OUTPUT->container_start('buttons');
echo $OUTPUT->single_button(new moodle_url('grouping.php', array('courseid'=>$courseid)), $srtnewgrouping); echo $OUTPUT->single_button(new moodle_url('grouping.php', array('courseid'=>$courseid)), $srtnewgrouping);

View file

@ -207,7 +207,7 @@ foreach ($members as $gpgid=>$groupdata) {
echo $OUTPUT->box(format_text($description, $groupings[$gpgid]->descriptionformat, $options), 'generalbox boxwidthnarrow boxaligncenter'); echo $OUTPUT->box(format_text($description, $groupings[$gpgid]->descriptionformat, $options), 'generalbox boxwidthnarrow boxaligncenter');
} }
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
$printed = true; $printed = true;
} }

View file

@ -4836,7 +4836,7 @@ class admin_setting_manageauths extends admin_setting {
// add a row to the table // add a row to the table
$table->data[] =array($displayname, $hideshow, $updown, $settings); $table->data[] =array($displayname, $hideshow, $updown, $settings);
} }
$return .= $OUTPUT->table($table); $return .= html_writer::table($table);
$return .= get_string('configauthenticationplugins', 'admin').'<br />'.get_string('tablenosave', 'filters'); $return .= get_string('configauthenticationplugins', 'admin').'<br />'.get_string('tablenosave', 'filters');
$return .= $OUTPUT->box_end(); $return .= $OUTPUT->box_end();
return highlight($query, $return); return highlight($query, $return);
@ -5001,7 +5001,7 @@ class admin_setting_manageeditors extends admin_setting {
// add a row to the table // add a row to the table
$table->data[] =array($displayname, $hideshow, $updown, $settings); $table->data[] =array($displayname, $hideshow, $updown, $settings);
} }
$return .= $OUTPUT->table($table); $return .= html_writer::table($table);
$return .= get_string('configeditorplugins', 'editor').'<br />'.get_string('tablenosave', 'admin'); $return .= get_string('configeditorplugins', 'editor').'<br />'.get_string('tablenosave', 'admin');
$return .= $OUTPUT->box_end(); $return .= $OUTPUT->box_end();
return highlight($query, $return); return highlight($query, $return);
@ -5177,7 +5177,7 @@ class admin_setting_manageportfolio extends admin_setting {
} }
} }
$output .= $OUTPUT->table($table); $output .= html_writer::table($table);
$instancehtml = '<br /><br />' . get_string('addnewportfolio', 'portfolio') . ': <br /><br />'; $instancehtml = '<br /><br />' . get_string('addnewportfolio', 'portfolio') . ': <br /><br />';
$addable = 0; $addable = 0;
@ -6072,7 +6072,7 @@ class admin_setting_managerepository extends admin_setting {
$alreadyplugins[] = $i->get_typename(); $alreadyplugins[] = $i->get_typename();
} }
} }
$output .= $OUTPUT->table($table); $output .= html_writer::table($table);
$instancehtml = '<div><h3>'; $instancehtml = '<div><h3>';
$instancehtml .= get_string('addplugin', 'repository'); $instancehtml .= get_string('addplugin', 'repository');
$instancehtml .= '</h3><ul>'; $instancehtml .= '</h3><ul>';
@ -6228,7 +6228,7 @@ class admin_setting_manageexternalservices extends admin_setting {
// add a row to the table // add a row to the table
$table->data[] = array($displayname, $plugin, $functions, $users, $edit); $table->data[] = array($displayname, $plugin, $functions, $users, $edit);
} }
$return .= $OUTPUT->table($table); $return .= html_writer::table($table);
} }
// Custom services // Custom services
@ -6270,7 +6270,7 @@ class admin_setting_manageexternalservices extends admin_setting {
$table->data[] = array($displayname, $delete, $functions, $users, $edit); $table->data[] = array($displayname, $delete, $functions, $users, $edit);
} }
// add new custom service option // add new custom service option
$return .= $OUTPUT->table($table); $return .= html_writer::table($table);
$return .= '<br />'; $return .= '<br />';
// add a token to the table // add a token to the table
@ -6443,7 +6443,7 @@ class admin_setting_webservicesoverview extends admin_setting {
$row[2] = get_string('testwithtestclientdescription', 'webservice'); $row[2] = get_string('testwithtestclientdescription', 'webservice');
$table->data[] = $row; $table->data[] = $row;
$return .= $OUTPUT->table($table); $return .= html_writer::table($table);
/// Users as clients with token /// Users as clients with token
$return .= "<br/><br/><br/>"; $return .= "<br/><br/><br/>";
@ -6519,7 +6519,7 @@ class admin_setting_webservicesoverview extends admin_setting {
$row[2] = get_string('testauserwithtestclientdescription', 'webservice'); $row[2] = get_string('testauserwithtestclientdescription', 'webservice');
$table->data[] = $row; $table->data[] = $row;
$return .= $OUTPUT->table($table); $return .= html_writer::table($table);
return highlight($query, $return); return highlight($query, $return);
} }
@ -6667,7 +6667,7 @@ class admin_setting_managewebserviceprotocols extends admin_setting {
// add a row to the table // add a row to the table
$table->data[] = array($displayname, $version, $hideshow, $uninstall, $settings); $table->data[] = array($displayname, $version, $hideshow, $uninstall, $settings);
} }
$return .= $OUTPUT->table($table); $return .= html_writer::table($table);
$return .= get_string('configwebserviceplugins', 'webservice'); $return .= get_string('configwebserviceplugins', 'webservice');
$return .= $OUTPUT->box_end(); $return .= $OUTPUT->box_end();
@ -6783,7 +6783,7 @@ class admin_setting_managewebservicetokens extends admin_setting {
$table->data[] = array($token->token, $useratag, $token->name, '', $iprestriction, $validuntil, $delete); $table->data[] = array($token->token, $useratag, $token->name, '', $iprestriction, $validuntil, $delete);
} }
$return .= $OUTPUT->table($table); $return .= html_writer::table($table);
$return .= get_string('httpswarning', 'webservice'); $return .= get_string('httpswarning', 'webservice');
} else { } else {
$return .= get_string('notoken', 'webservice'); $return .= get_string('notoken', 'webservice');

View file

@ -2400,7 +2400,7 @@ function blocks_move_block($page, &$instance, $destpos, $destweight=NULL, $pinne
function print_table($table, $return=false) { function print_table($table, $return=false) {
global $OUTPUT; global $OUTPUT;
// TODO MDL-19755 turn debugging on once we migrate the current core code to use the new API // TODO MDL-19755 turn debugging on once we migrate the current core code to use the new API
debugging('print_table() has been deprecated. Please change your code to use $OUTPUT->table().'); debugging('print_table() has been deprecated. Please change your code to use html_writer::table().');
$newtable = new html_table(); $newtable = new html_table();
foreach ($table as $property => $value) { foreach ($table as $property => $value) {
if (property_exists($newtable, $property)) { if (property_exists($newtable, $property)) {
@ -2408,13 +2408,13 @@ function print_table($table, $return=false) {
} }
} }
if (isset($table->class)) { if (isset($table->class)) {
$newtable->set_classes($table->class); $newtable->attributes['class'] = $table->class;
} }
if (isset($table->rowclass) && is_array($table->rowclass)) { if (isset($table->rowclass) && is_array($table->rowclass)) {
debugging('rowclass[] has been deprecated for html_table and should be replaced by rowclasses[]. please fix the code.'); debugging('rowclass[] has been deprecated for html_table and should be replaced by rowclasses[]. please fix the code.');
$newtable->rowclasses = $table->rowclass; $newtable->rowclasses = $table->rowclass;
} }
$output = $OUTPUT->table($newtable); $output = html_writer::table($newtable);
if ($return) { if ($return) {
return $output; return $output;
} else { } else {

View file

@ -173,8 +173,7 @@ function print_moodle_environment($result, $environment_results) {
$servertable->align = array ('center', 'center', 'left', 'center'); $servertable->align = array ('center', 'center', 'left', 'center');
$servertable->wrap = array ('nowrap', '', '', 'nowrap'); $servertable->wrap = array ('nowrap', '', '', 'nowrap');
$servertable->size = array ('10', 10, '100%', '10'); $servertable->size = array ('10', 10, '100%', '10');
$servertable->width = '90%'; $servertable->attributes['class'] = 'environmenttable generaltable';
$servertable->add_class('environmenttable generaltable');
$serverdata = array('ok'=>array(), 'warn'=>array(), 'error'=>array()); $serverdata = array('ok'=>array(), 'warn'=>array(), 'error'=>array());
@ -183,8 +182,7 @@ function print_moodle_environment($result, $environment_results) {
$othertable->align = array ('center', 'left', 'center'); $othertable->align = array ('center', 'left', 'center');
$othertable->wrap = array ('', '', 'nowrap'); $othertable->wrap = array ('', '', 'nowrap');
$othertable->size = array (10, '100%', '10'); $othertable->size = array (10, '100%', '10');
$othertable->width = '90%'; $othertable->attributes['class'] = 'environmenttable generaltable';
$othertable->add_class('environmenttable generaltable');
$otherdata = array('ok'=>array(), 'warn'=>array(), 'error'=>array()); $otherdata = array('ok'=>array(), 'warn'=>array(), 'error'=>array());
@ -309,10 +307,10 @@ function print_moodle_environment($result, $environment_results) {
/// Print table /// Print table
echo $OUTPUT->heading(get_string('serverchecks', 'admin')); echo $OUTPUT->heading(get_string('serverchecks', 'admin'));
echo $OUTPUT->table($servertable); echo html_writer::table($servertable);
if (count($othertable->data)){ if (count($othertable->data)){
echo $OUTPUT->heading(get_string('customcheck', 'admin')); echo $OUTPUT->heading(get_string('customcheck', 'admin'));
echo $OUTPUT->table($othertable); echo html_writer::table($othertable);
} }
/// Finally, if any error has happened, print the summary box /// Finally, if any error has happened, print the summary box

View file

@ -604,7 +604,6 @@ class action_link implements renderable {
} }
} }
// ==== HTML writer and helper classes, will be probably moved elsewhere ====== // ==== HTML writer and helper classes, will be probably moved elsewhere ======
/** /**
@ -969,6 +968,216 @@ class html_writer {
return ''; return '';
} }
} }
/**
* Renders HTML table
*
* This method may modify the passed instance by adding some default properties if they are not set yet.
* If this is not what you want, you should make a full clone of your data before passing them to this
* method. In most cases this is not an issue at all so we do not clone by default for performance
* and memory consumption reasons.
*
* @param html_table $table data to be rendered
* @return string HTML code
*/
public static function table(html_table $table) {
// prepare table data and populate missing properties with reasonable defaults
if (!empty($table->align)) {
foreach ($table->align as $key => $aa) {
if ($aa) {
$table->align[$key] = 'text-align:'. fix_align_rtl($aa) .';'; // Fix for RTL languages
} else {
$table->align[$key] = null;
}
}
}
if (!empty($table->size)) {
foreach ($table->size as $key => $ss) {
if ($ss) {
$table->size[$key] = 'width:'. $ss .';';
} else {
$table->size[$key] = null;
}
}
}
if (!empty($table->wrap)) {
foreach ($table->wrap as $key => $ww) {
if ($ww) {
$table->wrap[$key] = 'white-space:nowrap;';
} else {
$table->wrap[$key] = '';
}
}
}
if (!empty($table->head)) {
foreach ($table->head as $key => $val) {
if (!isset($table->align[$key])) {
$table->align[$key] = null;
}
if (!isset($table->size[$key])) {
$table->size[$key] = null;
}
if (!isset($table->wrap[$key])) {
$table->wrap[$key] = null;
}
}
}
if (empty($table->attributes['class'])) {
$table->attributes['class'] = 'generaltable';
}
if (!empty($table->tablealign)) {
$table->attributes['class'] .= ' boxalign' . $table->tablealign;
}
// explicitly assigned properties override those defined via $table->attributes
$attributes = array_merge($table->attributes, array(
'id' => $table->id,
'width' => $table->width,
'summary' => $table->summary,
'cellpadding' => $table->cellpadding,
'cellspacing' => $table->cellspacing,
));
$output = html_writer::start_tag('table', $attributes) . "\n";
$countcols = 0;
if (!empty($table->head)) {
$countcols = count($table->head);
$output .= html_writer::start_tag('thead', array()) . "\n";
$output .= html_writer::start_tag('tr', array()) . "\n";
$keys = array_keys($table->head);
$lastkey = end($keys);
foreach ($table->head as $key => $heading) {
// Convert plain string headings into html_table_cell objects
if (!($heading instanceof html_table_cell)) {
$headingtext = $heading;
$heading = new html_table_cell();
$heading->text = $headingtext;
$heading->header = true;
}
if ($heading->header !== false) {
$heading->header = true;
}
$heading->attributes['class'] .= ' header c' . $key;
if (isset($table->headspan[$key]) && $table->headspan[$key] > 1) {
$heading->colspan = $table->headspan[$key];
$countcols += $table->headspan[$key] - 1;
}
if ($key == $lastkey) {
$heading->attributes['class'] .= ' lastcol';
}
if (isset($table->colclasses[$key])) {
$heading->attributes['class'] .= ' ' . $table->colclasses[$key];
}
$attributes = array_merge($heading->attributes, array(
'style' => $table->align[$key] . $table->size[$key] . $heading->style,
'scope' => $heading->scope,
'colspan' => $heading->colspan,
));
$tagtype = 'td';
if ($heading->header === true) {
$tagtype = 'th';
}
$output .= html_writer::tag($tagtype, $heading->text, $attributes) . "\n";
}
$output .= html_writer::end_tag('tr') . "\n";
$output .= html_writer::end_tag('thead') . "\n";
if (empty($table->data)) {
// For valid XHTML strict every table must contain either a valid tr
// or a valid tbody... both of which must contain a valid td
$output .= html_writer::start_tag('tbody', array('class' => 'empty'));
$output .= html_writer::tag('tr', html_writer::tag('td', '', array('colspan'=>count($table->head))));
$output .= html_writer::end_tag('tbody');
}
}
if (!empty($table->data)) {
$oddeven = 1;
$keys = array_keys($table->data);
$lastrowkey = end($keys);
$output .= html_writer::start_tag('tbody', array());
foreach ($table->data as $key => $row) {
if (($row === 'hr') && ($countcols)) {
$output .= html_writer::tag('td', html_writer::tag('div', '', array('class' => 'tabledivider')), array('colspan' => $countcols));
} else {
// Convert array rows to html_table_rows and cell strings to html_table_cell objects
if (!($row instanceof html_table_row)) {
$newrow = new html_table_row();
foreach ($row as $unused => $item) {
$cell = new html_table_cell();
$cell->text = $item;
$newrow->cells[] = $cell;
}
$row = $newrow;
}
$oddeven = $oddeven ? 0 : 1;
if (isset($table->rowclasses[$key])) {
$row->attributes['class'] .= ' ' . $table->rowclasses[$key];
}
$row->attributes['class'] .= ' r' . $oddeven;
if ($key == $lastrowkey) {
$row->attributes['class'] .= ' lastrow';
}
$output .= html_writer::start_tag('tr', array('class' => $row->attributes['class'], 'style' => $row->style, 'id' => $row->id)) . "\n";
$keys2 = array_keys($row->cells);
$lastkey = end($keys2);
foreach ($row->cells as $key => $cell) {
if (!($cell instanceof html_table_cell)) {
$mycell = new html_table_cell();
$mycell->text = $cell;
$cell = $mycell;
}
if (isset($table->colclasses[$key])) {
$cell->attributes['class'] .= ' ' . $table->colclasses[$key];
}
$cell->attributes['class'] .= ' cell c' . $key;
if ($key == $lastkey) {
$cell->attributes['class'] .= ' lastcol';
}
$tdstyle = '';
$tdstyle .= isset($table->align[$key]) ? $table->align[$key] : '';
$tdstyle .= isset($table->size[$key]) ? $table->size[$key] : '';
$tdstyle .= isset($table->wrap[$key]) ? $table->wrap[$key] : '';
$tdattributes = array_merge($cell->attributes, array(
'style' => $tdstyle . $cell->style,
'colspan' => $cell->colspan,
'rowspan' => $cell->rowspan,
'id' => $cell->id,
'abbr' => $cell->abbr,
'scope' => $cell->scope,
));
$tagtype = 'td';
if ($cell->header === true) {
$tagtype = 'th';
}
$output .= html_writer::tag($tagtype, $cell->text, $tdattributes) . "\n";
}
}
$output .= html_writer::end_tag('tr') . "\n";
}
$output .= html_writer::end_tag('tbody') . "\n";
}
$output .= html_writer::end_tag('table') . "\n";
return $output;
}
} }
// ==== JS writer and helper classes, will be probably moved elsewhere ====== // ==== JS writer and helper classes, will be probably moved elsewhere ======
@ -1093,126 +1302,31 @@ class js_writer {
} }
} }
// ===============================================================================================
// TODO: Following HTML components still need some refactoring
/** /**
* Base class for classes representing HTML elements. * Holds all the information required to render a <table> by {@see core_renderer::table()}
*
* Handles the id and class attributes.
*
* @copyright 2009 Tim Hunt
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
* @since Moodle 2.0
*/
class html_component {
/**
* @var string value to use for the id attribute of this HTML tag.
*/
public $id = null;
/**
* @var string $alt value to use for the alt attribute of this HTML tag.
*/
public $alt = null;
/**
* @var string $style value to use for the style attribute of this HTML tag.
*/
public $style = null;
/**
* @var array class names to add to this HTML element.
*/
public $classes = array();
/**
* @var string $title The title attributes applicable to any XHTML element
*/
public $title = null;
/**
* An optional array of component_action objects handling the action part of this component.
* @var array $actions
*/
protected $actions = array();
/**
* Ensure some class names are an array.
* @param mixed $classes either an array of class names or a space-separated
* string containing class names.
* @return array the class names as an array.
*/
public static function clean_classes($classes) {
if (empty($classes)) {
return array();
} else if (is_array($classes)) {
return $classes;
} else {
return explode(' ', trim($classes));
}
}
/**
* Set the class name array.
* @param mixed $classes either an array of class names or a space-separated
* string containing class names.
* @return void
*/
public function set_classes($classes) {
$this->classes = self::clean_classes($classes);
}
/**
* Add a class name to the class names array.
* @param string $class the new class name to add.
* @return void
*/
public function add_class($class) {
$this->classes[] = $class;
}
/**
* Add a whole lot of class names to the class names array.
* @param mixed $classes either an array of class names or a space-separated
* string containing class names.
* @return void
*/
public function add_classes($classes) {
$this->classes = array_merge($this->classes, self::clean_classes($classes));
}
/**
* Get the class names as a string.
* @return string the class names as a space-separated string. Ready to be put in the class="" attribute.
*/
public function get_classes_string() {
return implode(' ', $this->classes);
}
/**
* Perform any cleanup or final processing that should be done before an
* instance of this class is output. This method is supposed to be called
* only from renderers.
* @return void
*/
public function prepare() {
$this->classes = array_unique(self::clean_classes($this->classes));
}
}
/**
* Holds all the information required to render a <table> by
* {@see core_renderer::table()} or by an overridden version of that
* method in a subclass.
* *
* Example of usage: * Example of usage:
* $t = new html_table(); * $t = new html_table();
* ... // set various properties of the object $t as described below * ... // set various properties of the object $t as described below
* echo $OUTPUT->table($t); * echo html_writer::table($t);
* *
* @copyright 2009 David Mudrak <david.mudrak@gmail.com> * @copyright 2009 David Mudrak <david.mudrak@gmail.com>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
* @since Moodle 2.0 * @since Moodle 2.0
*/ */
class html_table extends html_component { class html_table {
/**
* @var string value to use for the id attribute of the table
*/
public $id = null;
/**
* @var string $style value to use for the style attribute of the table
*/
public $style = null;
/**
* @var array attributes of HTML attributes for the <table> element
*/
public $attributes = array();
/** /**
* For more control over the rendering of the headers, an array of html_table_cell objects * For more control over the rendering of the headers, an array of html_table_cell objects
* can be passed instead of an array of strings. * can be passed instead of an array of strings.
@ -1287,7 +1401,7 @@ class html_table extends html_component {
*/ */
public $data; public $data;
/** /**
* @var string width of the table, percentage of the page preferred. Defaults to 80% of the page width. * @var string width of the table, percentage of the page preferred. Defaults to 80%
* @deprecated since Moodle 2.0. Styling should be in the CSS. * @deprecated since Moodle 2.0. Styling should be in the CSS.
*/ */
public $width = null; public $width = null;
@ -1331,82 +1445,12 @@ class html_table extends html_component {
* @var string description of the contents for screen readers. * @var string description of the contents for screen readers.
*/ */
public $summary; public $summary;
/**
* @var bool true causes the contents of the heading cells to be rotated 90 degrees.
*/
public $rotateheaders = false;
/**
* @var array $headclasses Array of CSS classes to apply to the table's thead.
*/
public $headclasses = array();
/**
* @var array $bodyclasses Array of CSS classes to apply to the table's tbody.
*/
public $bodyclasses = array();
/**
* @var array $footclasses Array of CSS classes to apply to the table's tfoot.
*/
public $footclasses = array();
/** /**
* @see html_component::prepare() * Constructor
* @return void
*/ */
public function prepare() { public function __construct() {
if (!empty($this->align)) { $this->attributes['class'] = '';
foreach ($this->align as $key => $aa) {
if ($aa) {
$this->align[$key] = 'text-align:'. fix_align_rtl($aa) .';'; // Fix for RTL languages
} else {
$this->align[$key] = null;
}
}
}
if (!empty($this->size)) {
foreach ($this->size as $key => $ss) {
if ($ss) {
$this->size[$key] = 'width:'. $ss .';';
} else {
$this->size[$key] = null;
}
}
}
if (!empty($this->wrap)) {
foreach ($this->wrap as $key => $ww) {
if ($ww) {
$this->wrap[$key] = 'white-space:nowrap;';
} else {
$this->wrap[$key] = '';
}
}
}
if (!empty($this->head)) {
foreach ($this->head as $key => $val) {
if (!isset($this->align[$key])) {
$this->align[$key] = null;
}
if (!isset($this->size[$key])) {
$this->size[$key] = null;
}
if (!isset($this->wrap[$key])) {
$this->wrap[$key] = null;
}
}
}
if (empty($this->classes)) { // must be done before align
$this->set_classes(array('generaltable'));
}
if (!empty($this->tablealign)) {
$this->add_class('boxalign' . $this->tablealign);
}
if (!empty($this->rotateheaders)) {
$this->add_class('rotateheaders');
} else {
$this->rotateheaders = false; // Makes life easier later.
}
parent::prepare();
} }
} }
@ -1418,25 +1462,30 @@ class html_table extends html_component {
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
* @since Moodle 2.0 * @since Moodle 2.0
*/ */
class html_table_row extends html_component { class html_table_row {
/**
* @var string value to use for the id attribute of the row
*/
public $id = null;
/** /**
* @var array $cells Array of html_table_cell objects * @var array $cells Array of html_table_cell objects
*/ */
public $cells = array(); public $cells = array();
/** /**
* @see lib/html_component#prepare() * @var string $style value to use for the style attribute of the table row
* @return void
*/ */
public function prepare() { public $style = null;
parent::prepare(); /**
} * @var array attributes of additional HTML attributes for the <tr> element
*/
public $attributes = array();
/** /**
* Constructor * Constructor
* @param array $cells * @param array $cells
*/ */
public function __construct(array $cells=null) { public function __construct(array $cells=null) {
$this->attributes['class'] = '';
$cells = (array)$cells; $cells = (array)$cells;
foreach ($cells as $cell) { foreach ($cells as $cell) {
if ($cell instanceof html_table_cell) { if ($cell instanceof html_table_cell) {
@ -1456,7 +1505,11 @@ class html_table_row extends html_component {
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
* @since Moodle 2.0 * @since Moodle 2.0
*/ */
class html_table_cell extends html_component { class html_table_cell {
/**
* @var string value to use for the id attribute of the cell
*/
public $id = null;
/** /**
* @var string $text The contents of the cell * @var string $text The contents of the cell
*/ */
@ -1481,20 +1534,29 @@ class html_table_cell extends html_component {
* @var boolean $header Whether or not this cell is a header cell * @var boolean $header Whether or not this cell is a header cell
*/ */
public $header = null; public $header = null;
/**
* @var string $style value to use for the style attribute of the table cell
*/
public $style = null;
/**
* @var array attributes of additional HTML attributes for the <tr> element
*/
public $attributes = array();
/** /**
* XXX TODO DONOTCOMMIT
* @see lib/html_component#prepare() * @see lib/html_component#prepare()
* @return void * @return void
*/
public function prepare() { public function prepare() {
if ($this->header && empty($this->scope)) { if ($this->header && empty($this->scope)) {
$this->scope = 'col'; $this->scope = 'col';
} }
parent::prepare();
} }
*/
public function __construct($text = null) { public function __construct($text = null) {
$this->text = $text; $this->text = $text;
$this->attributes['class'] = '';
} }
} }
@ -1574,7 +1636,6 @@ class paging_bar implements renderable {
} }
/** /**
* @see lib/html_component#prepare()
* @return void * @return void
*/ */
public function prepare(renderer_base $output, moodle_page $page, $target) { public function prepare(renderer_base $output, moodle_page $page, $target) {

View file

@ -1802,173 +1802,6 @@ END;
return html_writer::tag('div', $output, array('class' => 'paging')); return html_writer::tag('div', $output, array('class' => 'paging'));
} }
/**
* Render a HTML table
*
* @param object $table {@link html_table} instance containing all the information needed
* @return string the HTML to output.
*/
public function table(html_table $table) {
$table = clone($table);
$table->prepare($this, $this->page, $this->target);
$attributes = array(
'id' => $table->id,
'width' => $table->width,
'summary' => $table->summary,
'cellpadding' => $table->cellpadding,
'cellspacing' => $table->cellspacing,
'class' => $table->get_classes_string());
$output = html_writer::start_tag('table', $attributes) . "\n";
$countcols = 0;
if (!empty($table->head)) {
$countcols = count($table->head);
$output .= html_writer::start_tag('thead', $table->headclasses) . "\n";
$output .= html_writer::start_tag('tr', array()) . "\n";
$keys = array_keys($table->head);
$lastkey = end($keys);
foreach ($table->head as $key => $heading) {
// Convert plain string headings into html_table_cell objects
if (!($heading instanceof html_table_cell)) {
$headingtext = $heading;
$heading = new html_table_cell();
$heading->text = $headingtext;
$heading->header = true;
}
if ($heading->header !== false) {
$heading->header = true;
}
$heading->add_classes(array('header', 'c' . $key));
if (isset($table->headspan[$key]) && $table->headspan[$key] > 1) {
$heading->colspan = $table->headspan[$key];
$countcols += $table->headspan[$key] - 1;
}
if ($key == $lastkey) {
$heading->add_class('lastcol');
}
if (isset($table->colclasses[$key])) {
$heading->add_class($table->colclasses[$key]);
}
if ($table->rotateheaders) {
// we need to wrap the heading content
$heading->text = html_writer::tag('span', $heading->text);
}
$attributes = array(
'style' => $table->align[$key] . $table->size[$key] . $heading->style,
'class' => $heading->get_classes_string(),
'scope' => $heading->scope,
'colspan' => $heading->colspan);
$tagtype = 'td';
if ($heading->header === true) {
$tagtype = 'th';
}
$output .= html_writer::tag($tagtype, $heading->text, $attributes) . "\n";
}
$output .= html_writer::end_tag('tr') . "\n";
$output .= html_writer::end_tag('thead') . "\n";
if (empty($table->data)) {
// For valid XHTML strict every table must contain either a valid tr
// or a valid tbody... both of which must contain a valid td
$output .= html_writer::start_tag('tbody', array('class' => renderer_base::prepare_classes($table->bodyclasses).' empty'));
$output .= html_writer::tag('tr', html_writer::tag('td', '', array('colspan'=>count($table->head))));
$output .= html_writer::end_tag('tbody');
}
}
if (!empty($table->data)) {
$oddeven = 1;
$keys = array_keys($table->data);
$lastrowkey = end($keys);
$output .= html_writer::start_tag('tbody', array('class' => renderer_base::prepare_classes($table->bodyclasses))) . "\n";
foreach ($table->data as $key => $row) {
if (($row === 'hr') && ($countcols)) {
$output .= html_writer::tag('td', html_writer::tag('div', '', array('class' => 'tabledivider')), array('colspan' => $countcols)) . "\n";
} else {
// Convert array rows to html_table_rows and cell strings to html_table_cell objects
if (!($row instanceof html_table_row)) {
$newrow = new html_table_row();
foreach ($row as $unused => $item) {
$cell = new html_table_cell();
$cell->text = $item;
$newrow->cells[] = $cell;
}
$row = $newrow;
}
$oddeven = $oddeven ? 0 : 1;
if (isset($table->rowclasses[$key])) {
$row->add_classes(array_unique(html_component::clean_classes($table->rowclasses[$key])));
}
$row->add_class('r' . $oddeven);
if ($key == $lastrowkey) {
$row->add_class('lastrow');
}
$output .= html_writer::start_tag('tr', array('class' => $row->get_classes_string(), 'style' => $row->style, 'id' => $row->id)) . "\n";
$keys2 = array_keys($row->cells);
$lastkey = end($keys2);
foreach ($row->cells as $key => $cell) {
if (!($cell instanceof html_table_cell)) {
$mycell = new html_table_cell();
$mycell->text = $cell;
$cell = $mycell;
}
if (isset($table->colclasses[$key])) {
$cell->add_classes(array_unique(html_component::clean_classes($table->colclasses[$key])));
}
$cell->add_classes('cell');
$cell->add_classes('c' . $key);
if ($key == $lastkey) {
$cell->add_classes('lastcol');
}
$tdstyle = '';
$tdstyle .= isset($table->align[$key]) ? $table->align[$key] : '';
$tdstyle .= isset($table->size[$key]) ? $table->size[$key] : '';
$tdstyle .= isset($table->wrap[$key]) ? $table->wrap[$key] : '';
$tdattributes = array(
'style' => $tdstyle . $cell->style,
'colspan' => $cell->colspan,
'rowspan' => $cell->rowspan,
'id' => $cell->id,
'class' => $cell->get_classes_string(),
'abbr' => $cell->abbr,
'scope' => $cell->scope,
'title' => $cell->title);
$tagtype = 'td';
if ($cell->header === true) {
$tagtype = 'th';
}
$output .= html_writer::tag($tagtype, $cell->text, $tdattributes) . "\n";
}
}
$output .= html_writer::end_tag('tr') . "\n";
}
$output .= html_writer::end_tag('tbody') . "\n";
}
$output .= html_writer::end_tag('table') . "\n";
if ($table->rotateheaders && can_use_rotated_text()) {
$this->page->requires->yui2_lib('event');
$this->page->requires->js('/course/report/progress/textrotate.js');
}
return $output;
}
/** /**
* Output the place a skip link goes to. * Output the place a skip link goes to.
* @param string $id The target name from the corresponding $PAGE->requires->skip_link_to($target) call. * @param string $id The target name from the corresponding $PAGE->requires->skip_link_to($target) call.

View file

@ -423,7 +423,7 @@ class portfolio_exporter {
foreach ($mainsummary as $string => $value) { foreach ($mainsummary as $string => $value) {
$table->data[] = array($string, $value); $table->data[] = array($string, $value);
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
echo $OUTPUT->confirm($strconfirm, $yesurl, $nourl); echo $OUTPUT->confirm($strconfirm, $yesurl, $nourl);
echo $OUTPUT->box_end(); echo $OUTPUT->box_end();
echo $OUTPUT->footer(); echo $OUTPUT->footer();

View file

@ -894,7 +894,7 @@ function portfolio_report_insane($insane, $instances=false, $return=false) {
} }
$table->data[] = array($name, get_string($reason, 'portfolio_' . $plugin)); $table->data[] = array($name, get_string($reason, 'portfolio_' . $plugin));
} }
$output .= $OUTPUT->table($table); $output .= html_writer::table($table);
$output .= '<br /><br /><br />'; $output .= '<br /><br /><br />';
if ($return) { if ($return) {

View file

@ -672,7 +672,7 @@ function question_delete_course($course, $feedback=true) {
$table = new html_table(); $table = new html_table();
$table->head = array(get_string('category','quiz'), get_string('action')); $table->head = array(get_string('category','quiz'), get_string('action'));
$table->data = $feedbackdata; $table->data = $feedbackdata;
echo $OUTPUT->table($table); echo html_writer::table($table);
} }
} }
return true; return true;
@ -738,7 +738,7 @@ function question_delete_course_category($category, $newcategory, $feedback=true
$table = new html_table(); $table = new html_table();
$table->head = array(get_string('questioncategory','question'), get_string('action')); $table->head = array(get_string('questioncategory','question'), get_string('action'));
$table->data = $feedbackdata; $table->data = $feedbackdata;
echo $OUTPUT->table($table); echo html_writer::table($table);
} }
} else { } else {
@ -835,7 +835,7 @@ function question_delete_activity($cm, $feedback=true) {
$table = new html_table(); $table = new html_table();
$table->head = array(get_string('category','quiz'), get_string('action')); $table->head = array(get_string('category','quiz'), get_string('action'));
$table->data = $feedbackdata; $table->data = $feedbackdata;
echo $OUTPUT->table($table); echo html_writer::table($table);
} }
} }
return true; return true;

View file

@ -433,7 +433,7 @@ class moodle_coverage_reporter extends HtmlCoverageReporter {
$table = new html_table(); $table = new html_table();
$table->align = array('right', 'left'); $table->align = array('right', 'left');
$table->tablealign = 'center'; $table->tablealign = 'center';
$table->add_class('codecoveragetable'); $table->attributes['class'] = 'codecoveragetable';
$table->id = 'codecoveragetable_' . $type; $table->id = 'codecoveragetable_' . $type;
$table->rowclasses = array('label', 'value'); $table->rowclasses = array('label', 'value');
$table->data = array( $table->data = array(
@ -450,7 +450,7 @@ class moodle_coverage_reporter extends HtmlCoverageReporter {
$result .= $OUTPUT->heading($data->title, 3, 'main codecoverageheading'); $result .= $OUTPUT->heading($data->title, 3, 'main codecoverageheading');
$result .= $OUTPUT->heading('<a href="' . $url . '" onclick="javascript:window.open(' . "'" . $url . "'" . ');return false;"' . $result .= $OUTPUT->heading('<a href="' . $url . '" onclick="javascript:window.open(' . "'" . $url . "'" . ');return false;"' .
' title="">' . get_string('codecoveragecompletereport', 'simpletest') . '</a>', 4, 'main codecoveragelink'); ' title="">' . get_string('codecoveragecompletereport', 'simpletest') . '</a>', 4, 'main codecoveragelink');
$result .= $OUTPUT->table($table); $result .= html_writer::table($table);
return $OUTPUT->box($result, 'generalbox boxwidthwide boxaligncenter codecoveragebox', '', true); return $OUTPUT->box($result, 'generalbox boxwidthwide boxaligncenter codecoveragebox', '', true);
} }

View file

@ -118,6 +118,6 @@ foreach ($modinfo->instances['assignment'] as $cm) {
echo "<br />"; echo "<br />";
echo $OUTPUT->table($table); echo html_writer::table($table);
echo $OUTPUT->footer(); echo $OUTPUT->footer();

View file

@ -79,7 +79,7 @@ $table->data = array(
'<a id="choosetheme" href="###">'.get_string('themes').' ▶</a>' '<a id="choosetheme" href="###">'.get_string('themes').' ▶</a>'
) )
); );
echo $OUTPUT->box($OUTPUT->table($table), '', 'chat-input-area'); echo $OUTPUT->box(html_writer::table($table), '', 'chat-input-area');
echo $OUTPUT->box('', '', 'chat-notify'); echo $OUTPUT->box('', '', 'chat-notify');
echo $OUTPUT->footer(); echo $OUTPUT->footer();

View file

@ -106,7 +106,7 @@ foreach ($chatusers as $chatuser) {
ob_start(); ob_start();
echo $OUTPUT->header(); echo $OUTPUT->header();
echo html_writer::tag('div', html_writer::tag('a', 'Refresh link', array('href'=>$refreshurl, 'id'=>'refreshLink')), array('style'=>'display:none')); //TODO: localize echo html_writer::tag('div', html_writer::tag('a', 'Refresh link', array('href'=>$refreshurl, 'id'=>'refreshLink')), array('style'=>'display:none')); //TODO: localize
echo $OUTPUT->table($table); echo html_writer::table($table);
echo $OUTPUT->footer(); echo $OUTPUT->footer();
// //

View file

@ -83,7 +83,7 @@ foreach ($chats as $chat) {
echo '<br />'; echo '<br />';
echo $OUTPUT->table($table); echo html_writer::table($table);
/// Finish the page /// Finish the page

View file

@ -94,7 +94,7 @@
} }
} }
echo "<br />"; echo "<br />";
echo $OUTPUT->table($table); echo html_writer::table($table);
echo $OUTPUT->footer(); echo $OUTPUT->footer();

View file

@ -298,7 +298,7 @@ if (($mode == 'new') && (!empty($newtype)) && confirm_sesskey()) { ///
); );
} }
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
} }

View file

@ -141,6 +141,6 @@ foreach ($datas as $data) {
} }
echo "<br />"; echo "<br />";
echo $OUTPUT->table($table); echo html_writer::table($table);
echo $OUTPUT->footer(); echo $OUTPUT->footer();

View file

@ -108,7 +108,7 @@ foreach ($feedbacks as $feedback) {
echo "<br />"; echo "<br />";
echo $OUTPUT->table($table); echo html_writer::table($table);
/// Finish the page /// Finish the page

View file

@ -54,7 +54,7 @@ if (!$folders = get_all_instances_in_course('folder', $course)) {
} }
$table = new html_table(); $table = new html_table();
$table->set_classes(array('generaltable', 'mod_index')); $table->attributes['class'] = 'generaltable mod_index';
if ($course->format == 'weeks') { if ($course->format == 'weeks') {
$table->head = array ($strweek, $strname, $strintro); $table->head = array ($strweek, $strname, $strintro);
@ -93,6 +93,6 @@ foreach ($folders as $folder) {
format_module_intro('folder', $folder, $cm->id)); format_module_intro('folder', $folder, $cm->id));
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
echo $OUTPUT->footer(); echo $OUTPUT->footer();

View file

@ -421,12 +421,12 @@ if (!isguestuser()) {
if ($generalforums) { if ($generalforums) {
echo $OUTPUT->heading(get_string('generalforums', 'forum')); echo $OUTPUT->heading(get_string('generalforums', 'forum'));
echo $OUTPUT->table($generaltable); echo html_writer::table($generaltable);
} }
if ($learningforums) { if ($learningforums) {
echo $OUTPUT->heading(get_string('learningforums', 'forum')); echo $OUTPUT->heading(get_string('learningforums', 'forum'));
echo $OUTPUT->table($learningtable); echo html_writer::table($learningtable);
} }
echo $OUTPUT->footer(); echo $OUTPUT->footer();

View file

@ -51,22 +51,22 @@ class mod_forum_renderer extends plugin_renderer_base {
$existingcell = new html_table_cell(); $existingcell = new html_table_cell();
$existingcell->text = $existinguc->display(true); $existingcell->text = $existinguc->display(true);
$existingcell->set_classes(array('existing')); $existingcell->attributes['class'] = 'existing';
$actioncell = new html_table_cell(); $actioncell = new html_table_cell();
$actioncell->text = html_writer::start_tag('div', array()); $actioncell->text = html_writer::start_tag('div', array());
$actioncell->text .= html_writer::empty_tag('input', array('type'=>'submit', 'name'=>'subscribe', 'value'=>$this->page->theme->larrow.' '.get_string('add'), 'class'=>'actionbutton')); $actioncell->text .= html_writer::empty_tag('input', array('type'=>'submit', 'name'=>'subscribe', 'value'=>$this->page->theme->larrow.' '.get_string('add'), 'class'=>'actionbutton'));
$actioncell->text .= html_writer::empty_tag('br', array()); $actioncell->text .= html_writer::empty_tag('br', array());
$actioncell->text .= html_writer::empty_tag('input', array('type'=>'submit', 'name'=>'unsubscribe', 'value'=>$this->page->theme->rarrow.' '.get_string('remove'), 'class'=>'actionbutton')); $actioncell->text .= html_writer::empty_tag('input', array('type'=>'submit', 'name'=>'unsubscribe', 'value'=>$this->page->theme->rarrow.' '.get_string('remove'), 'class'=>'actionbutton'));
$actioncell->text .= html_writer::end_tag('div', array()); $actioncell->text .= html_writer::end_tag('div', array());
$actioncell->set_classes(array('actions')); $actioncell->attributes['class'] = 'actions';
$potentialcell = new html_table_cell(); $potentialcell = new html_table_cell();
$potentialcell->text = $potentialuc->display(true); $potentialcell->text = $potentialuc->display(true);
$potentialcell->set_classes(array('potential')); $potentialcell->attributes['class'] = 'potential';
$table = new html_table(); $table = new html_table();
$table->set_classes(array('subscribertable','boxaligncenter')); $table->attributes['class'] = 'subscribertable boxaligncenter';
$table->data = array(new html_table_row(array($existingcell, $actioncell, $potentialcell))); $table->data = array(new html_table_row(array($existingcell, $actioncell, $potentialcell)));
$output .= $this->output->table($table); $output .= html_writer::table($table);
$output .= html_writer::end_tag('form'); $output .= html_writer::end_tag('form');
return $output; return $output;
@ -95,7 +95,7 @@ class mod_forum_renderer extends plugin_renderer_base {
foreach ($users as $user) { foreach ($users as $user) {
$table->data[] = array($this->output->user_picture($user, array('courseid'=>$course->id)), fullname($user), $user->email); $table->data[] = array($this->output->user_picture($user, array('courseid'=>$course->id)), fullname($user), $user->email);
} }
$output .= $this->output->table($table); $output .= html_writer::table($table);
} }
return $output; return $output;
} }

View file

@ -128,7 +128,7 @@ foreach ($glossarys as $glossary) {
echo "<br />"; echo "<br />";
echo $OUTPUT->table($table); echo html_writer::table($table);
/// Finish the page /// Finish the page

View file

@ -399,7 +399,7 @@
echo "<br />"; echo "<br />";
echo $OUTPUT->table($table); echo html_writer::table($table);
// Finish the page // Finish the page
echo $OUTPUT->footer(); echo $OUTPUT->footer();

View file

@ -54,7 +54,7 @@ if (!$imscps = get_all_instances_in_course('imscp', $course)) {
} }
$table = new html_table(); $table = new html_table();
$table->set_classes(array('generaltable', 'mod_index')); $table->attributes['class'] = 'generaltable mod_index';
if ($course->format == 'weeks') { if ($course->format == 'weeks') {
$table->head = array ($strweek, $strname, $strintro); $table->head = array ($strweek, $strname, $strintro);
@ -93,6 +93,6 @@ foreach ($imscps as $imscp) {
format_module_intro('imscp', $imscp, $cm->id)); format_module_intro('imscp', $imscp, $cm->id));
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
echo $OUTPUT->footer(); echo $OUTPUT->footer();

View file

@ -296,7 +296,7 @@ switch ($mode) {
// Setup table // Setup table
$table = new html_table(); $table = new html_table();
$table->head = array(get_string('name'), get_string('essays', 'lesson'), get_string('email', 'lesson')); $table->head = array(get_string('name'), get_string('essays', 'lesson'), get_string('email', 'lesson'));
$table->set_classes(array('standardtable', 'generaltable')); $table->attributes['class'] = 'standardtable generaltable';
$table->align = array('left', 'left', 'left'); $table->align = array('left', 'left', 'left');
$table->wrap = array('nowrap', 'nowrap', ''); $table->wrap = array('nowrap', 'nowrap', '');
@ -356,7 +356,7 @@ switch ($mode) {
$table->data[] = array(' ', ' ', $emailalllink); $table->data[] = array(' ', ' ', $emailalllink);
echo $OUTPUT->table($table); echo html_writer::table($table);
break; break;
case 'grade': case 'grade':
// Grading form // Grading form

View file

@ -208,7 +208,7 @@ switch ($mode) {
break; break;
} }
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
} }
if (!has_capability('mod/lesson:manage', $context)) { // teachers don't need the links if (!has_capability('mod/lesson:manage', $context)) { // teachers don't need the links

View file

@ -116,5 +116,5 @@ foreach ($lessons as $lesson) {
$table->data[] = array ($link, $lesson->grade, $due); $table->data[] = array ($link, $lesson->grade, $due);
} }
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
echo $OUTPUT->footer(); echo $OUTPUT->footer();

View file

@ -235,7 +235,7 @@ function lesson_user_complete($course, $user, $mod, $lesson) {
if ($npages) { if ($npages) {
$table->data[] = array($retry + 1, $npages, $ncorrect, userdate($timeseen)); $table->data[] = array($retry + 1, $npages, $ncorrect, userdate($timeseen));
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
echo $OUTPUT->box_end(); echo $OUTPUT->box_end();
} }

View file

@ -228,7 +228,7 @@ class mod_lesson_renderer extends plugin_renderer_base {
$pageid = $page->nextpageid; $pageid = $page->nextpageid;
} }
return $this->output->table($table); return html_writter::table($table);
} }
/** /**
@ -292,7 +292,7 @@ class mod_lesson_renderer extends plugin_renderer_base {
$pagetable = $page->display_answers($pagetable); $pagetable = $page->display_answers($pagetable);
$content .= $this->output->table($pagetable); $content .= html_writer::table($pagetable);
if ($canedit) { if ($canedit) {
$content .= $this->add_page_links($lesson, $pageid); $content .= $this->add_page_links($lesson, $pageid);
@ -539,16 +539,16 @@ class mod_lesson_renderer extends plugin_renderer_base {
if ($progress != 0) { // some browsers do not repsect the 0 width. if ($progress != 0) { // some browsers do not repsect the 0 width.
$cells[0] = new html_table_cell(); $cells[0] = new html_table_cell();
$cells[0]->style = 'width:'.$progress.'%'; $cells[0]->style = 'width:'.$progress.'%';
$cells[0]->set_classes('progress_bar_completed'); $cells[0]->attributes['class'] = 'progress_bar_completed';
$cells[0]->text = ' '; $cells[0]->text = ' ';
} }
$cells[] = '<div class="progress_bar_token"></div>'; $cells[] = '<div class="progress_bar_token"></div>';
$table = new html_table(); $table = new html_table();
$table->set_classes(array('progress_bar_table', 'center')); $table->attributes['class'] = 'progress_bar_table';
$table->data = array(new html_table_row($cells)); $table->data = array(new html_table_row($cells));
return $this->output->box($this->output->table($table), 'progress_bar'); return $this->output->box(html_writer::table($table), 'progress_bar');
} }
/** /**

View file

@ -221,10 +221,10 @@ if ($action == 'reportoverview') {
// set up the table object // set up the table object
$table->head = array(get_string('name'), get_string('attempts', 'lesson'), get_string('highscore', 'lesson')); $table->head = array(get_string('name'), get_string('attempts', 'lesson'), get_string('highscore', 'lesson'));
$table->align = array("center", "left", "left"); $table->align = array('center', 'left', 'left');
$table->wrap = array("nowrap", "nowrap", "nowrap"); $table->wrap = array('nowrap', 'nowrap', 'nowrap');
$table->set_classes(array('standardtable', 'generaltable')); $table->attributes['class'] = 'standardtable generaltable';
$table->size = array("*", "70%", "*"); $table->size = array(null, '70%', null);
// print out the $studentdata array // print out the $studentdata array
// going through each student that has attempted the lesson, so, each student should have something to be displayed // going through each student that has attempted the lesson, so, each student should have something to be displayed
@ -299,7 +299,7 @@ if ($action == 'reportoverview') {
<input type=\"hidden\" name=\"sesskey\" value=\"".sesskey()."\" />\n <input type=\"hidden\" name=\"sesskey\" value=\"".sesskey()."\" />\n
<input type=\"hidden\" name=\"id\" value=\"$cm->id\" />\n"; <input type=\"hidden\" name=\"id\" value=\"$cm->id\" />\n";
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
if (has_capability('mod/lesson:edit', $context)) { if (has_capability('mod/lesson:edit', $context)) {
$checklinks = '<a href="javascript: checkall();">'.get_string('selectall').'</a> / '; $checklinks = '<a href="javascript: checkall();">'.get_string('selectall').'</a> / ';
$checklinks .= '<a href="javascript: checknone();">'.get_string('deselectall').'</a>'; $checklinks .= '<a href="javascript: checknone();">'.get_string('deselectall').'</a>';
@ -344,12 +344,12 @@ if ($action == 'reportoverview') {
$stattable->head = array(get_string('averagescore', 'lesson'), get_string('averagetime', 'lesson'), $stattable->head = array(get_string('averagescore', 'lesson'), get_string('averagetime', 'lesson'),
get_string('highscore', 'lesson'), get_string('lowscore', 'lesson'), get_string('highscore', 'lesson'), get_string('lowscore', 'lesson'),
get_string('hightime', 'lesson'), get_string('lowtime', 'lesson')); get_string('hightime', 'lesson'), get_string('lowtime', 'lesson'));
$stattable->align = array("center", "center", "center", "center", "center", "center"); $stattable->align = array('center', 'center', 'center', 'center', 'center', 'center');
$stattable->wrap = array("nowrap", "nowrap", "nowrap", "nowrap", "nowrap", "nowrap"); $stattable->wrap = array('nowrap', 'nowrap', 'nowrap', 'nowrap', 'nowrap', 'nowrap');
$stattable->set_classes(array('standardtable', 'generaltable')); $stattable->attributes['class'] = 'standardtable generaltable';
$stattable->data[] = array($avescore.'%', $avetime, $highscore.'%', $lowscore.'%', $hightime, $lowtime); $stattable->data[] = array($avescore.'%', $avetime, $highscore.'%', $lowscore.'%', $hightime, $lowtime);
echo $OUTPUT->table($stattable); echo html_writer::table($stattable);
} else if ($action == 'reportdetail') { } else if ($action == 'reportdetail') {
/************************************************************************** /**************************************************************************
this action is for a student detailed view and for the general detailed view this action is for a student detailed view and for the general detailed view
@ -475,8 +475,8 @@ if ($action == 'reportoverview') {
echo $OUTPUT->heading(get_string('attempt', 'lesson', $try+1)); echo $OUTPUT->heading(get_string('attempt', 'lesson', $try+1));
$table->head = array(); $table->head = array();
$table->align = array("right", "left"); $table->align = array('right', 'left');
$table->set_classes(array('compacttable', 'generaltable')); $table->attributes['class'] = 'compacttable generaltable';
$params = array("lessonid"=>$lesson->id, "userid"=>$userid); $params = array("lessonid"=>$lesson->id, "userid"=>$userid);
if (!$grades = $DB->get_records_select("lesson_grades", "lessonid = :lessonid and userid = :userid", $params, "completed", "*", $try, 1)) { if (!$grades = $DB->get_records_select("lesson_grades", "lessonid = :lessonid and userid = :userid", $params, "completed", "*", $try, 1)) {
@ -509,16 +509,16 @@ if ($action == 'reportoverview') {
$table->data[] = array(get_string('rawgrade', 'lesson').':', $gradeinfo->earned.'/'.$gradeinfo->total); $table->data[] = array(get_string('rawgrade', 'lesson').':', $gradeinfo->earned.'/'.$gradeinfo->total);
$table->data[] = array(get_string("grade", "lesson").":", $grade."%"); $table->data[] = array(get_string("grade", "lesson").":", $grade."%");
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
// Don't want this class for later tables // Don't want this class for later tables
$table->set_classes(array()); $table->attributes['class'] = '';
} }
$table->align = array("left", "left"); $table->align = array('left', 'left');
$table->size = array("70%", "*"); $table->size = array('70%', null);
$table->set_classes(array('compacttable', 'generaltable')); $table->attributes['class'] = 'compacttable generaltable';
foreach ($answerpages as $page) { foreach ($answerpages as $page) {
unset($table->data); unset($table->data);
@ -554,7 +554,7 @@ if ($action == 'reportoverview') {
} else { } else {
$table->data[] = array(0, " "); $table->data[] = array(0, " ");
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
} }
} else { } else {
print_error('unknowaction'); print_error('unknowaction');

View file

@ -54,7 +54,7 @@ if (!$pages = get_all_instances_in_course('page', $course)) {
} }
$table = new html_table(); $table = new html_table();
$table->set_classes(array('generaltable', 'mod_index')); $table->attributes['class'] = 'generaltable mod_index';
if ($course->format == 'weeks') { if ($course->format == 'weeks') {
$table->head = array ($strweek, $strname, $strintro); $table->head = array ($strweek, $strname, $strintro);
@ -94,6 +94,6 @@ foreach ($pages as $page) {
format_module_intro('page', $page, $cm->id)); format_module_intro('page', $page, $cm->id));
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
echo $OUTPUT->footer(); echo $OUTPUT->footer();

View file

@ -166,7 +166,7 @@
// Display the table. // Display the table.
echo '<br />'; echo '<br />';
echo $OUTPUT->table($table); echo html_writer::table($table);
// Finish the page // Finish the page
echo $OUTPUT->footer(); echo $OUTPUT->footer();

View file

@ -199,7 +199,7 @@ foreach ($overrides as $override) {
echo html_writer::start_tag('div', array('id' => 'quizoverrides')); echo html_writer::start_tag('div', array('id' => 'quizoverrides'));
if (count($table->data)) { if (count($table->data)) {
echo $OUTPUT->table($table); echo html_writer::table($table);
} }
echo html_writer::start_tag('div', array('class' => 'buttons')); echo html_writer::start_tag('div', array('class' => 'buttons'));

View file

@ -195,7 +195,7 @@ class quiz_statistics_report extends quiz_default_report {
$questioninfotable = new html_table(); $questioninfotable = new html_table();
$questioninfotable->align = array('center', 'center'); $questioninfotable->align = array('center', 'center');
$questioninfotable->width = '60%'; $questioninfotable->width = '60%';
$questioninfotable->add_class('generaltable titlesleft'); $questioninfotable->attributes['class'] = 'generaltable titlesleft';
$questioninfotable->data = array(); $questioninfotable->data = array();
$questioninfotable->data[] = array(get_string('modulename', 'quiz'), $quiz->name); $questioninfotable->data[] = array(get_string('modulename', 'quiz'), $quiz->name);
@ -206,7 +206,7 @@ class quiz_statistics_report extends quiz_default_report {
$questionstatstable = new html_table(); $questionstatstable = new html_table();
$questionstatstable->align = array('center', 'center'); $questionstatstable->align = array('center', 'center');
$questionstatstable->width = '60%'; $questionstatstable->width = '60%';
$questionstatstable->add_class('generaltable titlesleft'); $questionstatstable->attributes['class'] = 'generaltable titlesleft';
unset($datumfromtable['number']); unset($datumfromtable['number']);
unset($datumfromtable['icon']); unset($datumfromtable['icon']);
@ -225,12 +225,12 @@ class quiz_statistics_report extends quiz_default_report {
$questionstatstable->data[] = array($labels[$item], $value); $questionstatstable->data[] = array($labels[$item], $value);
} }
echo $OUTPUT->heading(get_string('questioninformation', 'quiz_statistics')); echo $OUTPUT->heading(get_string('questioninformation', 'quiz_statistics'));
echo $OUTPUT->table($questioninfotable); echo html_writer::table($questioninfotable);
echo $OUTPUT->box(format_text($question->questiontext, $question->questiontextformat).$actions, 'boxaligncenter generalbox boxwidthnormal mdl-align'); echo $OUTPUT->box(format_text($question->questiontext, $question->questiontextformat).$actions, 'boxaligncenter generalbox boxwidthnormal mdl-align');
echo $OUTPUT->heading(get_string('questionstatistics', 'quiz_statistics')); echo $OUTPUT->heading(get_string('questionstatistics', 'quiz_statistics'));
echo $OUTPUT->table($questionstatstable); echo html_writer::table($questionstatstable);
} else { } else {
$this->qtable->export_class_instance($this->table->export_class_instance()); $this->qtable->export_class_instance($this->table->export_class_instance());
@ -422,7 +422,7 @@ class quiz_statistics_report extends quiz_default_report {
$quizinformationtablehtml .= $OUTPUT->help_icon('tableexportformats', get_string('tableexportformats', 'table')); $quizinformationtablehtml .= $OUTPUT->help_icon('tableexportformats', get_string('tableexportformats', 'table'));
$quizinformationtablehtml .= '</div></form>'; $quizinformationtablehtml .= '</div></form>';
} }
$quizinformationtablehtml .= $OUTPUT->table($quizinformationtable); $quizinformationtablehtml .= html_writer::table($quizinformationtable);
if (!$this->table->is_downloading()){ if (!$this->table->is_downloading()){
echo $quizinformationtablehtml; echo $quizinformationtablehtml;
} elseif ($everything) { } elseif ($everything) {

View file

@ -77,7 +77,7 @@ echo $OUTPUT->heading($title);
/// Prepare the summary table header /// Prepare the summary table header
$table = new html_table(); $table = new html_table();
$table->add_class('generaltable quizsummaryofattempt boxaligncenter'); $table->attributes['class'] = 'generaltable quizsummaryofattempt boxaligncenter';
$table->head = array(get_string('question', 'quiz'), get_string('status', 'quiz')); $table->head = array(get_string('question', 'quiz'), get_string('status', 'quiz'));
$table->align = array('left', 'left'); $table->align = array('left', 'left');
$table->size = array('', ''); $table->size = array('', '');
@ -109,7 +109,7 @@ foreach ($attemptobj->get_question_iterator() as $number => $question) {
} }
/// Print the summary table. /// Print the summary table.
echo $OUTPUT->table($table); echo html_writer::table($table);
/// countdown timer /// countdown timer
echo $attemptobj->get_timer_html(); echo $attemptobj->get_timer_html();

View file

@ -181,7 +181,7 @@
// Prepare table header // Prepare table header
$table = new html_table(); $table = new html_table();
$table->set_classes('generaltable quizattemptsummary'); $table->attributes['class'] = 'generaltable quizattemptsummary';
$table->head = array(); $table->head = array();
$table->align = array(); $table->align = array();
$table->size = array(); $table->size = array();
@ -298,7 +298,7 @@
$table->data[$attempt->attempt] = $row; $table->data[$attempt->attempt] = $row;
} }
} // End of loop over attempts. } // End of loop over attempts.
echo $OUTPUT->table($table); echo html_writer::table($table);
} }
/// Print information about the student's best score for this quiz if possible. /// Print information about the student's best score for this quiz if possible.

View file

@ -54,7 +54,7 @@ if (!$resources = get_all_instances_in_course('resource', $course)) {
} }
$table = new html_table(); $table = new html_table();
$table->set_classes(array('generaltable', 'mod_index')); $table->attributes['class'] = 'generaltable mod_index';
if ($course->format == 'weeks') { if ($course->format == 'weeks') {
$table->head = array ($strweek, $strname, $strintro); $table->head = array ($strweek, $strname, $strintro);
@ -100,6 +100,6 @@ foreach ($resources as $resource) {
format_module_intro('resource', $resource, $cm->id)); format_module_intro('resource', $resource, $cm->id));
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
echo $OUTPUT->footer(); echo $OUTPUT->footer();

View file

@ -96,7 +96,7 @@
echo "<br />"; echo "<br />";
echo $OUTPUT->table($table); echo html_writer::table($table);
echo $OUTPUT->footer(); echo $OUTPUT->footer();

View file

@ -198,7 +198,7 @@
if (has_capability('mod/scorm:deleteresponses',$contextmodule)) { if (has_capability('mod/scorm:deleteresponses',$contextmodule)) {
echo '<form id="attemptsform" method="post" action="'.$FULLSCRIPT.'" onsubmit="var menu = document.getElementById(\'menuaction\'); return (menu.options[menu.selectedIndex].value == \'delete\' ? \''.addslashes_js(get_string('deleteattemptcheck','quiz')).'\' : true);">'; echo '<form id="attemptsform" method="post" action="'.$FULLSCRIPT.'" onsubmit="var menu = document.getElementById(\'menuaction\'); return (menu.options[menu.selectedIndex].value == \'delete\' ? \''.addslashes_js(get_string('deleteattemptcheck','quiz')).'\' : true);">';
echo '<input type="hidden" name="id" value="'.$id.'">'; echo '<input type="hidden" name="id" value="'.$id.'">';
echo $OUTPUT->table($table); echo html_writer::table($table);
echo '<a href="javascript:select_all_in(\'DIV\',null,\'scormtablecontainer\');">'.get_string('selectall', 'quiz').'</a> / '; echo '<a href="javascript:select_all_in(\'DIV\',null,\'scormtablecontainer\');">'.get_string('selectall', 'quiz').'</a> / ';
echo '<a href="javascript:deselect_all_in(\'DIV\',null,\'scormtablecontainer\');">'.get_string('selectnone', 'quiz').'</a> '; echo '<a href="javascript:deselect_all_in(\'DIV\',null,\'scormtablecontainer\');">'.get_string('selectnone', 'quiz').'</a> ';
echo '&nbsp;&nbsp;'; echo '&nbsp;&nbsp;';
@ -210,7 +210,7 @@
echo '<input type="submit" value="'.get_string('go').'" /></div></noscript>'; echo '<input type="submit" value="'.get_string('go').'" /></div></noscript>';
echo '</form>'; echo '</form>';
} else { } else {
echo $OUTPUT->table($table); echo html_writer::table($table);
} }
echo '</div>'; echo '</div>';
} else { } else {
@ -272,7 +272,7 @@
} }
$table->data[] = $row; $table->data[] = $row;
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
} }
} }
} else { } else {
@ -347,7 +347,7 @@
} }
if ($existelements) { if ($existelements) {
echo '<h3>'.get_string('general','scorm').'</h3>'; echo '<h3>'.get_string('general','scorm').'</h3>';
echo $OUTPUT->table($table); echo html_writer::table($table);
} }
// Print Interactions data // Print Interactions data
@ -389,7 +389,7 @@
} }
if ($existinteraction) { if ($existinteraction) {
echo '<h3>'.get_string('interactions','scorm').'</h3>'; echo '<h3>'.get_string('interactions','scorm').'</h3>';
echo $OUTPUT->table($table); echo html_writer::table($table);
} }
// Print Objectives data // Print Objectives data
@ -433,7 +433,7 @@
} }
if ($existobjective) { if ($existobjective) {
echo '<h3>'.get_string('objectives','scorm').'</h3>'; echo '<h3>'.get_string('objectives','scorm').'</h3>';
echo $OUTPUT->table($table); echo html_writer::table($table);
} }
$table = new html_table(); $table = new html_table();
$table->head = array(get_string('element','scorm'), get_string('value','scorm')); $table->head = array(get_string('element','scorm'), get_string('value','scorm'));
@ -461,7 +461,7 @@
} }
if ($existelements) { if ($existelements) {
echo '<h3>'.get_string('othertracks','scorm').'</h3>'; echo '<h3>'.get_string('othertracks','scorm').'</h3>';
echo $OUTPUT->table($table); echo html_writer::table($table);
} }
echo $OUTPUT->box_end(); echo $OUTPUT->box_end();
} else { } else {

View file

@ -80,7 +80,7 @@
} }
echo "<br />"; echo "<br />";
echo $OUTPUT->table($table); echo html_writer::table($table);
echo $OUTPUT->footer(); echo $OUTPUT->footer();

View file

@ -191,7 +191,7 @@ function survey_user_complete($course, $user, $mod, $survey) {
} }
$table->data[] = array("<b>$questiontext</b>", $answertext); $table->data[] = array("<b>$questiontext</b>", $answertext);
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
} else { } else {
@ -475,7 +475,7 @@ function survey_print_all_responses($cmid, $results, $courseid) {
userdate($a->time)); userdate($a->time));
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
} }
/** /**

View file

@ -302,7 +302,7 @@
$table->data[] = array($contents); $table->data[] = array($contents);
echo $OUTPUT->table($table); echo html_writer::table($table);
echo $OUTPUT->spacer(array('height'=>30)); // should be done with CSS instead echo $OUTPUT->spacer(array('height'=>30)); // should be done with CSS instead
} }
@ -354,7 +354,7 @@
} }
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
break; break;
@ -440,7 +440,7 @@
$table->head = array(get_string($question->text, "survey")); $table->head = array(get_string($question->text, "survey"));
$table->align = array ("left"); $table->align = array ("left");
$table->data[] = array(s($answer->answer1)); // no html here, just plain text $table->data[] = array(s($answer->answer1)); // no html here, just plain text
echo $OUTPUT->table($table); echo html_writer::table($table);
echo $OUTPUT->spacer(30); echo $OUTPUT->spacer(30);
} }
} }

View file

@ -115,7 +115,7 @@
$table->head = array(get_string($question->text, "survey")); $table->head = array(get_string($question->text, "survey"));
$table->align = array ("left"); $table->align = array ("left");
$table->data[] = array(s($answer->answer1));//no html here, just plain text $table->data[] = array(s($answer->answer1));//no html here, just plain text
echo $OUTPUT->table($table); echo html_writer::table($table);
echo $OUTPUT->spacer(clone($spacer)) . '<br />'; echo $OUTPUT->spacer(clone($spacer)) . '<br />';
} }
} }

View file

@ -54,7 +54,7 @@ if (!$urls = get_all_instances_in_course('url', $course)) {
} }
$table = new html_table(); $table = new html_table();
$table->set_classes(array('generaltable', 'mod_index')); $table->attributes['class'] = 'generaltable mod_index';
if ($course->format == 'weeks') { if ($course->format == 'weeks') {
$table->head = array ($strweek, $strname, $strintro); $table->head = array ($strweek, $strname, $strintro);
@ -100,6 +100,6 @@ foreach ($urls as $url) {
format_module_intro('url', $url, $cm->id)); format_module_intro('url', $url, $cm->id));
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
echo $OUTPUT->footer(); echo $OUTPUT->footer();

View file

@ -101,7 +101,7 @@
echo "<br />"; echo "<br />";
echo $OUTPUT->table($table); echo html_writer::table($table);
/// Finish the page /// Finish the page

View file

@ -14,7 +14,7 @@
<input type="hidden" name="wikipage" value="<?php print $wikipage?>" /> <input type="hidden" name="wikipage" value="<?php print $wikipage?>" />
<?php <?php
$remove_table=wiki_admin_remove_list($form->listall); $remove_table=wiki_admin_remove_list($form->listall);
echo $OUTPUT->table($remove_table); echo html_writer::table($remove_table);
?> ?>
<div class="boxaligncenter"> <div class="boxaligncenter">
<?php <?php

View file

@ -11,7 +11,7 @@
<input type="hidden" name="wikipage" value="<?php print $wikipage?>" /> <input type="hidden" name="wikipage" value="<?php print $wikipage?>" />
<?php <?php
$pageflags_table=wiki_admin_setpageflags_list($pageflagstatus); $pageflags_table=wiki_admin_setpageflags_list($pageflagstatus);
echo $OUTPUT->table($pageflags_table); echo html_writer::table($pageflags_table);
?> ?>
<br /> <br />
<div class="boxaligncenter"> <div class="boxaligncenter">

View file

@ -11,7 +11,7 @@
<input type="hidden" name="wikipage" value="<?php print $wikipage?>" /> <input type="hidden" name="wikipage" value="<?php print $wikipage?>" />
<?php <?php
$strip_table=wiki_admin_strip_list($form->pagestostrip, $form->version, $err); $strip_table=wiki_admin_strip_list($form->pagestostrip, $form->version, $err);
echo $OUTPUT->table($strip_table); echo html_writer::table($strip_table);
?> ?>
<div class="boxaligncenter"> <div class="boxaligncenter">
<?php <?php

View file

@ -54,7 +54,7 @@ class workshopallocation_manual_renderer extends plugin_renderer_base {
$reviewers = array_map('fullname', $reviewers); $reviewers = array_map('fullname', $reviewers);
$table = new html_table(); $table = new html_table();
$table->set_classes('allocations'); $table->attributes['class'] = 'allocations';
$table->head = array(get_string('participantreviewedby', 'workshop'), $table->head = array(get_string('participantreviewedby', 'workshop'),
get_string('participant', 'workshop'), get_string('participant', 'workshop'),
get_string('participantrevierof', 'workshop')); get_string('participantrevierof', 'workshop'));
@ -77,7 +77,7 @@ class workshopallocation_manual_renderer extends plugin_renderer_base {
$table->data[] = $row; $table->data[] = $row;
} }
return $this->output->container($this->output->table($table), 'manual-allocator'); return $this->output->container(html_writer::table($table), 'manual-allocator');
} }
/** /**

View file

@ -362,11 +362,11 @@ class mod_workshop_renderer extends plugin_renderer_base {
throw new coding_exception('you must provide the prepared user plan to be rendered'); throw new coding_exception('you must provide the prepared user plan to be rendered');
} }
$table = new html_table(); $table = new html_table();
$table->set_classes('userplan'); $table->attributes['class'] = 'userplan';
$table->head = array(); $table->head = array();
$table->colclasses = array(); $table->colclasses = array();
$row = new html_table_row(); $row = new html_table_row();
$row->set_classes('phasetasks'); $row->attributes['class'] = 'phasetasks';
foreach ($plan as $phasecode => $phase) { foreach ($plan as $phasecode => $phase) {
$title = html_writer::tag('span', $phase->title); $title = html_writer::tag('span', $phase->title);
$actions = ''; $actions = '';
@ -394,7 +394,7 @@ class mod_workshop_renderer extends plugin_renderer_base {
} }
$table->data = array($row); $table->data = array($row);
return $this->output->table($table); return html_writer::table($table);
} }
/** /**
@ -450,7 +450,7 @@ class mod_workshop_renderer extends plugin_renderer_base {
} }
$table = new html_table(); $table = new html_table();
$table->set_classes('grading-report'); $table->attributes['class'] = 'grading-report';
$sortbyfirstname = $this->sortable_heading(get_string('firstname'), 'firstname', $options->sortby, $options->sorthow); $sortbyfirstname = $this->sortable_heading(get_string('firstname'), 'firstname', $options->sortby, $options->sorthow);
$sortbylastname = $this->sortable_heading(get_string('lastname'), 'lastname', $options->sortby, $options->sorthow); $sortbylastname = $this->sortable_heading(get_string('lastname'), 'lastname', $options->sortby, $options->sorthow);
@ -509,7 +509,7 @@ class mod_workshop_renderer extends plugin_renderer_base {
$cell = new html_table_cell(); $cell = new html_table_cell();
$cell->text = $this->grading_report_participant($participant, $userinfo); $cell->text = $this->grading_report_participant($participant, $userinfo);
$cell->rowspan = $numoftrs; $cell->rowspan = $numoftrs;
$cell->add_class('participant'); $cell->attributes['class'] = 'participant';
$row->cells[] = $cell; $row->cells[] = $cell;
} }
// column #2 - submission - spans over all rows // column #2 - submission - spans over all rows
@ -517,7 +517,7 @@ class mod_workshop_renderer extends plugin_renderer_base {
$cell = new html_table_cell(); $cell = new html_table_cell();
$cell->text = $this->grading_report_submission($participant); $cell->text = $this->grading_report_submission($participant);
$cell->rowspan = $numoftrs; $cell->rowspan = $numoftrs;
$cell->add_class('submission'); $cell->attributes['class'] = 'submission';
$row->cells[] = $cell; $row->cells[] = $cell;
} }
// column #3 - received grades // column #3 - received grades
@ -528,11 +528,11 @@ class mod_workshop_renderer extends plugin_renderer_base {
$cell->text = $this->grading_report_assessment($assessment, $options->showreviewernames, $userinfo, $cell->text = $this->grading_report_assessment($assessment, $options->showreviewernames, $userinfo,
get_string('gradereceivedfrom', 'workshop')); get_string('gradereceivedfrom', 'workshop'));
$cell->rowspan = $spanreceived; $cell->rowspan = $spanreceived;
$cell->add_class('receivedgrade'); $cell->attributes['class'] = 'receivedgrade';
if (is_null($assessment) or is_null($assessment->grade)) { if (is_null($assessment) or is_null($assessment->grade)) {
$cell->add_class('null'); $cell->attributes['class'] .= ' null';
} else { } else {
$cell->add_class('notnull'); $cell->attributes['class'] .= ' notnull';
} }
$row->cells[] = $cell; $row->cells[] = $cell;
} }
@ -541,7 +541,7 @@ class mod_workshop_renderer extends plugin_renderer_base {
$cell = new html_table_cell(); $cell = new html_table_cell();
$cell->text = $this->grading_report_grade($participant->submissiongrade, $participant->submissiongradeover); $cell->text = $this->grading_report_grade($participant->submissiongrade, $participant->submissiongradeover);
$cell->rowspan = $numoftrs; $cell->rowspan = $numoftrs;
$cell->add_class('submissiongrade'); $cell->attributes['class'] = 'submissiongrade';
$row->cells[] = $cell; $row->cells[] = $cell;
} }
// column #5 - given grades // column #5 - given grades
@ -552,11 +552,11 @@ class mod_workshop_renderer extends plugin_renderer_base {
$cell->text = $this->grading_report_assessment($assessment, $options->showauthornames, $userinfo, $cell->text = $this->grading_report_assessment($assessment, $options->showauthornames, $userinfo,
get_string('gradegivento', 'workshop')); get_string('gradegivento', 'workshop'));
$cell->rowspan = $spangiven; $cell->rowspan = $spangiven;
$cell->add_class('givengrade'); $cell->attributes['class'] = 'givengrade';
if (is_null($assessment) or is_null($assessment->grade)) { if (is_null($assessment) or is_null($assessment->grade)) {
$cell->add_class('null'); $cell->attributes['class'] .= ' null';
} else { } else {
$cell->add_class('notnull'); $cell->attributes['class'] .= ' notnull';
} }
$row->cells[] = $cell; $row->cells[] = $cell;
} }
@ -565,7 +565,7 @@ class mod_workshop_renderer extends plugin_renderer_base {
$cell = new html_table_cell(); $cell = new html_table_cell();
$cell->text = $this->grading_report_grade($participant->gradinggrade); $cell->text = $this->grading_report_grade($participant->gradinggrade);
$cell->rowspan = $numoftrs; $cell->rowspan = $numoftrs;
$cell->add_class('gradinggrade'); $cell->attributes['class'] = 'gradinggrade';
$row->cells[] = $cell; $row->cells[] = $cell;
} }
@ -573,7 +573,7 @@ class mod_workshop_renderer extends plugin_renderer_base {
} }
} }
return $this->output->table($table); return html_writer::table($table);
} }
/** /**

View file

@ -1144,7 +1144,7 @@ class default_questiontype {
} }
$table->data[] = $data; $table->data[] = $data;
} }
return $OUTPUT->table($table); return html_writer::table($table);
} }
/** /**

View file

@ -1083,7 +1083,7 @@ abstract class repository {
$alreadyplugins[] = $i->name; $alreadyplugins[] = $i->name;
} }
} }
$output .= $OUTPUT->table($table); $output .= html_writer::table($table);
$instancehtml = '<div>'; $instancehtml = '<div>';
$addable = 0; $addable = 0;

View file

@ -105,7 +105,7 @@ require_once($CFG->dirroot.'/search/lib.php');
} }
} }
echo $OUTPUT->table($admin_table); echo html_writer::table($admin_table);
echo $OUTPUT->spacer(array('height'=>20, 'br'=>true)); // should be done with CSS instead echo $OUTPUT->spacer(array('height'=>20, 'br'=>true)); // should be done with CSS instead
echo $OUTPUT->heading($solutionsstr); echo $OUTPUT->heading($solutionsstr);
@ -120,7 +120,7 @@ require_once($CFG->dirroot.'/search/lib.php');
$admin_table->data[] = array($runindexerteststr, '<a href="tests/index.php" target="_blank">tests/index.php</a>'); $admin_table->data[] = array($runindexerteststr, '<a href="tests/index.php" target="_blank">tests/index.php</a>');
$admin_table->data[] = array($runindexerstr, '<a href="indexersplash.php" target="_blank">indexersplash.php</a>'); $admin_table->data[] = array($runindexerstr, '<a href="indexersplash.php" target="_blank">indexersplash.php</a>');
echo $OUTPUT->table($admin_table); echo html_writer::table($admin_table);
echo $OUTPUT->spacer($spacer) . '<br />'; echo $OUTPUT->spacer($spacer) . '<br />';
} }
@ -161,7 +161,7 @@ require_once($CFG->dirroot.'/search/lib.php');
} }
echo $OUTPUT->heading($databasestatestr); echo $OUTPUT->heading($databasestatestr);
echo $OUTPUT->table($table); echo html_writer::table($table);
echo $OUTPUT->box_end(); echo $OUTPUT->box_end();
echo $OUTPUT->box_end(); echo $OUTPUT->box_end();

View file

@ -106,7 +106,7 @@ foreach ($themes as $themename => $themedir) {
} }
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
echo $OUTPUT->footer(); echo $OUTPUT->footer();

View file

@ -116,7 +116,7 @@ foreach ($users as $k => $v) {
$checkbox $checkbox
); );
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
echo '<div style="width:100%;text-align:center;"><input type="submit" value="' . get_string('savechanges'). '" /></div></form>'; echo '<div style="width:100%;text-align:center;"><input type="submit" value="' . get_string('savechanges'). '" /></div></form>';
echo $OUTPUT->footer(); echo $OUTPUT->footer();

View file

@ -181,7 +181,7 @@ foreach ($_POST as $k => $v) {
$checkbox2); $checkbox2);
} }
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
echo "\n<div style=\"width:100%;text-align:center;\"><input type=\"submit\" value=\"".get_string('savechanges')."\" /></div>\n</form>\n"; echo "\n<div style=\"width:100%;text-align:center;\"><input type=\"submit\" value=\"".get_string('savechanges')."\" /></div>\n</form>\n";
echo $OUTPUT->footer(); echo $OUTPUT->footer();

View file

@ -171,7 +171,7 @@ foreach ($_POST as $k => $v) {
); );
} }
} }
echo $OUTPUT->table($table); echo html_writer::table($table);
echo '<div style="width:100%;text-align:center;"><strong>'; echo '<div style="width:100%;text-align:center;"><strong>';
echo get_string('extendperiod') . ' '; echo get_string('extendperiod') . ' ';
echo html_writer::select($periodmenu, 'extendperiod'); echo html_writer::select($periodmenu, 'extendperiod');

Some files were not shown because too many files have changed in this diff Show more