index.blade.php 376 B

123456789101112
  1. <?php
  2. $commentPlugin = $systemPresenter->getKeyValue('comment_plugin');
  3. $shortName = $systemPresenter->getKeyValue($commentPlugin.'_short_name');
  4. ?>
  5. @if($commentPlugin !='' && $shortName != '')
  6. @if($commentPlugin == 'duoshuo')
  7. @include('default.comment.duoshuo')
  8. @elseif($commentPlugin == 'disqus')
  9. @include('default.comment.disqus')
  10. @endif
  11. @endif