Course element : Course information
From MoodleDocs
The Course Information (Course data) is a tabular element providing meta data about the course volume to the reader. Each items can be hidden or shown.
User side

Settings form

(Partial view)
Integrator Corner
Default Template
<table class="custombox-coursedata">
<%if %%tablecaption%% %>
<tr valign="top">
<th class="custombox-title coursedata" colspan="2">
<%%tablecaption%%>
</th>
</tr>
<%endif %>
<%if %%showPARAM%% %>
<tr valign="top">
<td class="custombox-param coursedata">
PARAM:
</td>
<td class="custombox-value coursedata">
<%%PARAM%%>
</td>
</tr>
<%endif %>
...
</table>
CSS Element list
.custombox-coursedata(TABLE) : Overal container
.custombox-title.coursedata (TH) : Table title container
.custombox-param.coursedata (TD) : Data Name container
.custombox-value.coursedata (TD) : Data Value container