ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
All Data Structures Namespaces Files Functions Variables Typedefs Modules Pages
cardinality_error.tpl.php
Go to the documentation of this file.
1 <?php
13 $this->data['cardinality_header'] = $this->t('{core:cardinality:cardinality_header}');
14 $this->data['cardinality_text'] = $this->t('{core:cardinality:cardinality_text}');
15 $this->data['problematic_attributes'] = $this->t('{core:cardinality:problematic_attributes}');
16 
17 $this->includeAtTemplateBase('includes/header.php');
18 ?>
19 <h1><?php echo $this->data['cardinality_header']; ?></h1>
20 <p><?php echo $this->data['cardinality_text']; ?></p>
21 <h3><?php echo $this->data['problematic_attributes']; ?></h3>
22 <dl class="cardinalityErrorAttributes">
23 <?php foreach ($this->data['cardinalityErrorAttributes'] as $attr => $v) { ?>
24  <dt><?php echo $attr ?></td>
25  <dd><?php echo $this->t('{core:cardinality:got_want}', array('%GOT%' => $v[0], '%WANT%' => htmlspecialchars($v[1]))) ?></dd>
26  </tr>
27 <?php } ?>
28 </dl>
29 <?php
30 if (isset($this->data['LogoutURL'])) {
31 ?>
32 <p><a href="<?php echo htmlspecialchars($this->data['LogoutURL']); ?>"><?php echo $this->t('{status:logout}'); ?></a></p>
33 <?php
34 }
35 ?>
36 <?php
37 $this->includeAtTemplateBase('includes/footer.php');
$this data['cardinality_header']