mirror of
https://github.com/pierre42100/ComunicAPI
synced 2025-06-19 16:45:17 +00:00
Can get and return the number of likes of a group.
This commit is contained in:
@ -14,6 +14,8 @@ class AdvancedGroupInfo extends GroupInfo {
|
||||
private $time_create = -1;
|
||||
private $url;
|
||||
private $description;
|
||||
private $number_likes = -1;
|
||||
private $is_liking = false;
|
||||
|
||||
//Get and set the creation time of the group
|
||||
public function set_time_create(int $time_create){
|
||||
@ -53,4 +55,26 @@ class AdvancedGroupInfo extends GroupInfo {
|
||||
public function get_description() : string {
|
||||
return $this->description != null ? $this->description : "null";
|
||||
}
|
||||
|
||||
//Set and get the number of likes over the group
|
||||
public function set_number_likes(int $number_likes){
|
||||
$this->number_likes = $number_likes;
|
||||
}
|
||||
|
||||
public function has_number_likes() : bool {
|
||||
return $this->number_likes > -1;
|
||||
}
|
||||
|
||||
public function get_number_likes() : int {
|
||||
return $this->number_likes;
|
||||
}
|
||||
|
||||
//Set and get wheter the user is liking the group or not
|
||||
public function setLiking(bool $liking){
|
||||
$this->is_liking = $liking;
|
||||
}
|
||||
|
||||
public function isLiking() : bool {
|
||||
return $this->is_liking;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user