You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

21 rivejä
717 B

  1. <div class="<?php echo $this->class ?> block" <?php echo $this->cssID ?>>
  2. <div class="icon">
  3. <?php
  4. $objFile = \FilesModel::findByUuid($this->icon);
  5. $xml = new SimpleXMLElement(file_get_contents($objFile->path));
  6. echo $xml->asXML();
  7. ?>
  8. </div>
  9. <div class="solution-text">
  10. <h2><?php echo $this->title ?></h2>
  11. <?php echo $this->text ?>
  12. <?php if ($this->link): ?>
  13. <div class="link">
  14. <strong><?php if($this->linktitle): ?><?= $this->linktitle ?><?php else: ?>Beispiel-Case<?php endif; ?></strong>
  15. <div class="btn">
  16. <a href="<?php echo $this->link ?>"<?php if ($this->external): ?> target="_blank"<?php endif; ?>>Link</a>
  17. </div>
  18. </div>
  19. <?php endif; ?>
  20. </div>
  21. </div>