PluginProbe
BlockSpare – Gutenberg Blocks for News, Magazine, Blog & Business Websites / trunk
BlockSpare – Gutenberg Blocks for News, Magazine, Blog & Business Websites vtrunk
4.1.0 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.1.0 1.1.1 1.1.2 1.2.0 1.2.1 1.2.2 1.2.3 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 2.1.2 2.5.0 2.5.3 2.6.1 All 38 releases
blockspare / freemius / includes / entities / class-fs-plugin-info.php

class-fs-plugin-info.php in BlockSpare – Gutenberg Blocks for News, Magazine, Blog & Business Websites trunk, at freemius/includes/entities/class-fs-plugin-info.php

34 lines 730 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * @package Freemius
4 * @copyright Copyright (c) 2015, Freemius, Inc.
5 * @license https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License Version 3
6 * @since 1.0.3
7 */
8
9 if ( ! defined( 'ABSPATH' ) ) {
10 exit;
11 }
12
13 class FS_Plugin_Info extends FS_Entity {
14 public $plugin_id;
15 public $description;
16 public $short_description;
17 public $banner_url;
18 public $card_banner_url;
19 public $selling_point_0;
20 public $selling_point_1;
21 public $selling_point_2;
22 public $screenshots;
23
24 /**
25 * @param stdClass|bool $plugin_info
26 */
27 function __construct( $plugin_info = false ) {
28 parent::__construct( $plugin_info );
29 }
30
31 static function get_type() {
32 return 'plugin';
33 }
34 }