# plugin-groups/2.0.2/bootstrap.php

Plugin Groups, version 2.0.2. 23 lines.

- Page: https://pluginprobe.com/plugins/plugin-groups/2.0.2/code/bootstrap.php
- Raw: https://pluginprobe.com/plugins/plugin-groups/2.0.2/raw/bootstrap.php
- Modified: 2021-08-20T11:36:40+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/plugin-groups/2.0.2/code/bootstrap.php#L10-L20`.

```php
<?php
/**
 * Plugin Groups Bootstrap.
 *
 * @package   plugin_groups
 * @author    David Cramer
 * @license   GPL-2.0+
 * @copyright 2021/08/15 David Cramer
 */

namespace Plugin_Groups;

/**
 * Activate the plugin core.
 */
function activate_plugin_groups() {
	// Include the core class.
	include_once PLGGRP_PATH . 'classes/class-plugin-groups.php';
	Plugin_Groups::get_instance();
}

add_action( 'plugins_loaded', 'Plugin_Groups\activate_plugin_groups' );

```
