MDL-86604 mod_feedback: Remove unwanted table borders
This commit is contained in:
@@ -153,7 +153,7 @@ class feedback_item_info extends feedback_item_base {
|
||||
}
|
||||
|
||||
public function print_analysed($item, $itemnr = '', $groupid = false, $courseid = false) {
|
||||
echo "<table class=\"analysis itemtype_{$item->typ}\">";
|
||||
echo "<table class=\"analysis itemtype_{$item->typ} table-reboot\">";
|
||||
$analysed_item = $this->get_analysed($item, $groupid, $courseid);
|
||||
$data = $analysed_item->data;
|
||||
if (is_array($data)) {
|
||||
|
||||
@@ -208,7 +208,7 @@ class feedback_item_multichoice extends feedback_item_base {
|
||||
$analysed_item = $this->get_analysed($item, $groupid, $courseid);
|
||||
if ($analysed_item) {
|
||||
$itemname = $analysed_item[1];
|
||||
echo "<table class=\"analysis itemtype_{$item->typ}\">";
|
||||
echo "<table class=\"analysis itemtype_{$item->typ} table-reboot\">";
|
||||
echo '<tr><th class="text-start">';
|
||||
echo $itemnr . ' ';
|
||||
if (strval($item->label) !== '') {
|
||||
|
||||
@@ -184,7 +184,7 @@ class feedback_item_multichoicerated extends feedback_item_base {
|
||||
global $OUTPUT;
|
||||
$analysed_item = $this->get_analysed($item, $groupid, $courseid);
|
||||
if ($analysed_item) {
|
||||
echo "<table class=\"analysis itemtype_{$item->typ}\">";
|
||||
echo "<table class=\"analysis itemtype_{$item->typ} table-reboot\">";
|
||||
echo '<tr><th class="text-start">';
|
||||
echo $itemnr . ' ';
|
||||
if (strval($item->label) !== '') {
|
||||
|
||||
@@ -143,7 +143,7 @@ class feedback_item_numeric extends feedback_item_base {
|
||||
$values = $this->get_analysed($item, $groupid, $courseid);
|
||||
|
||||
if (isset($values->data) AND is_array($values->data)) {
|
||||
echo "<table class=\"analysis itemtype_{$item->typ}\">";
|
||||
echo "<table class=\"analysis itemtype_{$item->typ} table-reboot\">";
|
||||
echo '<tr><th class="text-start">';
|
||||
echo $itemnr . ' ';
|
||||
if (strval($item->label) !== '') {
|
||||
|
||||
@@ -136,7 +136,7 @@ class feedback_item_textarea extends feedback_item_base {
|
||||
public function print_analysed($item, $itemnr = '', $groupid = false, $courseid = false) {
|
||||
$values = feedback_get_group_values($item, $groupid, $courseid);
|
||||
if ($values) {
|
||||
echo "<table class=\"analysis itemtype_{$item->typ}\">";
|
||||
echo "<table class=\"analysis itemtype_{$item->typ} table-reboot\">";
|
||||
echo '<tr><th class="text-start">';
|
||||
echo $itemnr . ' ';
|
||||
if (strval($item->label) !== '') {
|
||||
|
||||
@@ -130,7 +130,7 @@ class feedback_item_textfield extends feedback_item_base {
|
||||
public function print_analysed($item, $itemnr = '', $groupid = false, $courseid = false) {
|
||||
$values = feedback_get_group_values($item, $groupid, $courseid);
|
||||
if ($values) {
|
||||
echo "<table class=\"analysis itemtype_{$item->typ}\">";
|
||||
echo "<table class=\"analysis itemtype_{$item->typ} table-reboot\">";
|
||||
echo '<tr><th class="text-start">';
|
||||
echo $itemnr . ' ';
|
||||
if (strval($item->label) !== '') {
|
||||
|
||||
Reference in New Issue
Block a user