PluginProbe
StreamCast – bring live radio to your site with a sleek player / trunk
StreamCast – bring live radio to your site with a sleek player vtrunk
2.4.5 2.4.4 trunk 1.0 1.1 2.0.0 2.1.10 2.1.2 2.1.4 2.1.5 2.1.8 2.2.1 2.2.3 2.2.4 2.2.5 2.3.0 2.3.1 2.3.2 2.3.3 2.3.4 2.3.5 2.3.6 2.3.7 2.3.8 2.3.9 All 29 releases
streamcast / vendor / freemius / includes / entities / class-fs-plugin-info.php

class-fs-plugin-info.php in StreamCast – bring live radio to your site with a sleek player trunk, at vendor/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 }