Note: You are currently viewing documentation for Moodle 2.3. Up-to-date documentation for the latest stable version is available here: Course element : Course information.

Course element : Course information: Difference between revisions

From MoodleDocs
No edit summary
 
Line 17: Line 17:
===Internal Variables===
===Internal Variables===


* '''%%tablecaption%%''' : Caption for the whole table
* ''%%tablecaption%%'' : Caption for the whole table
* '''%%goals%%''' : Teaching Goals of the course  
* ''%%goals%%'' : Teaching Goals of the course  
* '''%%objectives%%''' : Objectives of the student
* ''%%objectives%%'' : Objectives of the student
* '''%%concepts%%''' : Concepts (major) learned
* ''%%concepts%%'' : Concepts (major) learned
* '''%%duration%%''' : Course duration for the student
* ''%%duration%%'' : Course duration for the student
* '''%%teachingorganization%%''' : Teaching organisation and methods (summary)
* ''%%teachingorganization%%'' : Teaching organisation and methods (summary)
* '''%%prerequisites%%''' : Prerequisites (courses or skills) required to complete the course
* ''%%prerequisites%%'' : Prerequisites (courses or skills) required to complete the course
* '''%%followers%%''' : Some other courses that could complete the curriculum
* ''%%followers%%'' : Some other courses that could complete the curriculum
 
Activators :  
Activators :  
 
* '''%%showgoals%%''' : Activator for goals
* ''%%showgoals%%'' : Activator for goals
* '''%%showobjectives%%''' : Activator for objectives
* ''%%showobjectives%%'' : Activator for objectives
* '''%%showconcepts%%''' : Activztor for concepts
* ''%%showconcepts%%'' : Activztor for concepts
* '''%%showduration%%''' : Activator for duration
* ''%%showduration%%'' : Activator for duration
* '''%%showteachingorganization%%''' : Activator for teaching organisation
* ''%%showteachingorganization%%'' : Activator for teaching organisation
* '''%%showprerequisites%%''' : Activator for prerequisites
* ''%%showprerequisites%%'' : Activator for prerequisites
* '''%%showfollowers%%''' : Activator for followers
* ''%%showfollowers%%'' : Activator for followers


===Default Template===
===Default Template===

Latest revision as of 13:42, 15 January 2013

Back to index

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

Internal Variables

  • %%tablecaption%% : Caption for the whole table
  • %%goals%% : Teaching Goals of the course
  • %%objectives%% : Objectives of the student
  • %%concepts%% : Concepts (major) learned
  • %%duration%% : Course duration for the student
  • %%teachingorganization%% : Teaching organisation and methods (summary)
  • %%prerequisites%% : Prerequisites (courses or skills) required to complete the course
  • %%followers%% : Some other courses that could complete the curriculum

Activators :

  • %%showgoals%% : Activator for goals
  • %%showobjectives%% : Activator for objectives
  • %%showconcepts%% : Activztor for concepts
  • %%showduration%% : Activator for duration
  • %%showteachingorganization%% : Activator for teaching organisation
  • %%showprerequisites%% : Activator for prerequisites
  • %%showfollowers%% : Activator for followers

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