Skip to content

Commit

Permalink
Dev: Converted php into twig for global question type
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikvitt committed May 4, 2018
1 parent 916bf39 commit 51563fc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
@@ -1,13 +1,13 @@
<?php
{#
/**
* Array header : answer or sub question
* @var $class
* @var $content
*/
?>
#}

<!-- thead -->
<th class="<?php echo $class; ?>">
<?php echo $content;?>
<th class="{{ class }}">
{{ content }}
</th>
<!-- end of thead -->
@@ -1,11 +1,11 @@
<?php
{#
/**
* Array header : informationnal item
* @var $class
* @var $content
*/
?>
#}

<!-- thead -->
<td class="<?php echo $class; ?>"><?php echo $content;?></td>
<td class="{{ class }}">{{ content }}</td>
<!-- end of thead -->

0 comments on commit 51563fc

Please sign in to comment.