decision.php 315 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * View for decision object
  4. *
  5. * @package Proposals
  6. *
  7. * @uses $vars['entity'] The decision object
  8. * @uses $vars['full_view'] Whether to display the full view
  9. */
  10. if ($vars['full_view']) {
  11. $title = elgg_echo('proposals:decision');
  12. echo "<h3>$title</h3>";
  13. }
  14. echo elgg_view('crud/object', $vars);