Skip to content

Commit

Permalink
Adiciona hook na view evaluation documental
Browse files Browse the repository at this point in the history
  • Loading branch information
vicmagpac committed Jan 12, 2023
1 parent 3fb0712 commit e94f9a9
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@

$class = $evaluation->result == 1 ? 'evaluation-valid' : 'evaluation-invalid';
?>
<?php $this->applyTemplateHook('documentary-evaluation-view','before'); ?>
<div id="documentary-evaluation-view" class="widget documentary-evaluation-view <?php echo $class ?>">

<?php $this->applyTemplateHook('documentary-evaluation-view','begin'); ?>
<h3><?php i::_e('Avaliação Documental') ?></h3>
<h4><?php echo $evaluation->resultString; ?></h4>

Expand All @@ -34,4 +35,6 @@
</li>
<?php endif; ?>
<?php endforeach; ?>
</div>
<?php $this->applyTemplateHook('documentary-evaluation-view','end'); ?>
</div>
<?php $this->applyTemplateHook('documentary-evaluation-view','after'); ?>

0 comments on commit e94f9a9

Please sign in to comment.