Skip to content
Snippets Groups Projects
page.options.php 2.08 KiB
Newer Older
  • Learn to ignore specific revisions
  • Kevin Cristiano's avatar
    Kevin Cristiano committed
    <?php
    
    /*
     +--------------------------------------------------------------------+
     | Copyright CiviCRM LLC. All rights reserved.                        |
     |                                                                    |
     | 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       |
     +--------------------------------------------------------------------+
     */
    
    /**
     *
     * @package CRM
     * @copyright CiviCRM LLC https://civicrm.org/licensing
     *
     */
    
    
    // This file must not accessed directly.
    if (!defined('ABSPATH')) {
      exit;
    }
    
    
    Kevin Cristiano's avatar
    Kevin Cristiano committed
    ?><!-- assets/templates/page.options.php -->
    <div class="wrap civicrm-wrap civicrm-settings-wrap">
    
      <img src="<?php echo CIVICRM_PLUGIN_URL . 'assets/images/civicrm-logo.png'; ?>" width="160" height="42" alt="<?php esc_attr_e('CiviCRM Logo', 'civicrm'); ?>" id="civicrm-logo">
    
    
      <h1><?php esc_html_e('CiviCRM Settings', 'civicrm'); ?></h1>
    
    Kevin Cristiano's avatar
    Kevin Cristiano committed
    
    
      <p><?php esc_html_e('We have collected some settings here because they are important for configuring CiviCRM in WordPress.', 'civicrm'); ?></p>
    
    Kevin Cristiano's avatar
    Kevin Cristiano committed
    
      <form method="post" id="civicrm_options_form" action="<?php echo $this->page_submit_url_get(); ?>">
    
        <?php wp_nonce_field('meta-box-order', 'meta-box-order-nonce', FALSE); ?>
        <?php wp_nonce_field('closedpostboxes', 'closedpostboxesnonce', FALSE); ?>
        <?php wp_nonce_field('civicrm_options_form_action', 'civicrm_options_form_nonce'); ?>
    
        <div id="welcome-panel" class="welcome-panel hidden">
        </div>
    
        <div id="dashboard-widgets-wrap">
    
          <div id="dashboard-widgets" class="metabox-holder<?php echo $columns_css; ?>">
    
            <div id="postbox-container-1" class="postbox-container">
    
              <?php do_meta_boxes($screen->id, 'normal', ''); ?>
    
    Kevin Cristiano's avatar
    Kevin Cristiano committed
            </div>
    
            <div id="postbox-container-2" class="postbox-container">
              <?php do_meta_boxes($screen->id, 'side', ''); ?>
            </div>
    
          </div><!-- #post-body -->
          <br class="clear">
    
        </div><!-- #poststuff -->
    
      </form>
    
    </div><!-- /.wrap -->