Skip to content
Snippets Groups Projects
civicrm.shortcode.php 1 KiB
Newer Older
  • Learn to ignore specific revisions
  • Kevin Cristiano's avatar
    Kevin Cristiano committed
    <?php
    
    /*
     +--------------------------------------------------------------------+
    
    Kevin Cristiano's avatar
    Kevin Cristiano committed
     | Copyright CiviCRM LLC. All rights reserved.                        |
    
    Kevin Cristiano's avatar
    Kevin Cristiano committed
     |                                                                    |
    
    Kevin Cristiano's avatar
    Kevin Cristiano committed
     | This work is published under the GNU AGPLv3 license with some      |
     | permitted exceptions and without any warranty. For full license    |
     | and copyright information, see https://civicrm.org/licensing       |
    
    Kevin Cristiano's avatar
    Kevin Cristiano committed
     +--------------------------------------------------------------------+
    */
    
    /**
     *
     * @package CRM
    
    Kevin Cristiano's avatar
    Kevin Cristiano committed
     * @copyright CiviCRM LLC https://civicrm.org/licensing
    
    Kevin Cristiano's avatar
    Kevin Cristiano committed
     *
     */
    
    ?>
    
    <div class="crm-container crm-public<?php echo $class; ?>">
    
    
    Kevin Cristiano's avatar
    Kevin Cristiano committed
      <?php if ($show_title) { ?>
    
    Kevin Cristiano's avatar
    Kevin Cristiano committed
        <h2><?php echo $title; ?></h2>
      <?php } ?>
    
    
    Kevin Cristiano's avatar
    Kevin Cristiano committed
      <?php if ($description) { ?>
    
    Kevin Cristiano's avatar
    Kevin Cristiano committed
        <div class="civi-description"><?php echo $description; ?></div>
      <?php } ?>
    
      <p><?php echo $more_link; ?></p>
    
    
    Kevin Cristiano's avatar
    Kevin Cristiano committed
      <?php if ($empowered_enabled) { ?>
    
    Kevin Cristiano's avatar
    Kevin Cristiano committed
      <div class="crm-public-footer">
        <?php echo $footer; ?>
      </div>
      <?php } ?>
    
    </div>