class InstagramLike in Instagram Block 7
InstagramLike class.
Hierarchy
- class \InstagramLike
Expanded class hierarchy of InstagramLike
File
- ./
instagram_block.lib.php, line 420 - Instagram classes to integrate with the Instagram API.
View source
class InstagramLike {
/**
* @var string $id.
*/
protected $id;
/**
* @var string $username.
*/
public $username;
/**
* @var string $full_name.
*/
public $full_name;
/**
* @var string $profile_picture.
* URL to the image src.
*/
public $profile_picture;
/**
* Constructor for the InstagramLike class.
*/
public function __construct($like) {
$this->profile_picture = $like->profile_picture;
$this->id = $like->id;
$this->username = $like->username;
$this->full_name = $like->full_name;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
InstagramLike:: |
public | property | ||
InstagramLike:: |
protected | property | ||
InstagramLike:: |
public | property | URL to the image src. | |
InstagramLike:: |
public | property | ||
InstagramLike:: |
public | function | Constructor for the InstagramLike class. |