You are here

gdpr_task.tpl.php in General Data Protection Regulation 7

Default theme implementation for task entity.

File

modules/gdpr_tasks/templates/gdpr_task.tpl.php
View source
<?php

/**
 * @file
 * Default theme implementation for task entity.
 */
?>
<div class="<?php

print $classes;
?> clearfix"<?php

print $attributes;
?>>

  <?php

if (!$page) {
  ?>
    <h2<?php

  print $title_attributes;
  ?>>
      <?php

  if ($url) {
    ?>
        <a href="<?php

    print $url;
    ?>"><?php

    print $title;
    ?></a>
      <?php

  }
  else {
    ?>
        <?php

    print $title;
    ?>
      <?php

  }
  ?>
    </h2>
  <?php

}
?>

  <div class="content"<?php

print $content_attributes;
?>>
    <?php

print render($content);
?>
  </div>
</div>