# post-carousel/2.4.1/includes/class-smart-post-show-activator.php

Smart Post – Post Grid, Post Carousel, Post Slider Gutenberg Blocks for Blog &amp; News, version 2.4.1. 36 lines.

- Page: https://pluginprobe.com/plugins/post-carousel/2.4.1/code/includes/class-smart-post-show-activator.php
- Raw: https://pluginprobe.com/plugins/post-carousel/2.4.1/raw/includes/class-smart-post-show-activator.php
- Modified: 2021-11-06T05:45:56+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/post-carousel/2.4.1/code/includes/class-smart-post-show-activator.php#L10-L20`.

```php
<?php
/**
 * Fired during plugin activation
 *
 * @link        https://smartpostshow.com/
 * @since      2.2.0
 *
 * @package    Smart_Post_Show
 * @subpackage Smart_Post_Show/includes
 */

/**
 * Fired during plugin activation.
 *
 * This class defines all code necessary to run during the plugin's activation.
 *
 * @since      2.2.0
 * @package    Smart_Post_Show
 * @subpackage Smart_Post_Show/includes
 * @author     ShapedPlugin <support@shapedplugin.com>
 */
class Smart_Post_Show_Activator {

	/**
	 * Short Description. (use period)
	 *
	 * Long Description.
	 *
	 * @since    2.0.0
	 */
	public static function activate() {
		deactivate_plugins( 'post-carousel-pro/post-carousel-pro.php' );
	}

}

```
