2018-07-03 07:10:04 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Group information model
|
|
|
|
*
|
|
|
|
* @author Pierre HUBERT
|
|
|
|
*/
|
|
|
|
|
|
|
|
class GroupInfo extends BaseUniqueObject {
|
|
|
|
|
2018-07-04 11:52:39 +00:00
|
|
|
//Path to group logo in user data
|
|
|
|
const PATH_GROUPS_LOGO = "groups_logo";
|
2018-07-03 09:14:16 +00:00
|
|
|
|
2018-07-03 07:10:04 +00:00
|
|
|
//Private fields
|
|
|
|
private $name;
|
|
|
|
private $number_members = -1;
|
2018-07-04 11:52:39 +00:00
|
|
|
private $logo;
|
2018-07-03 12:33:53 +00:00
|
|
|
private $membership_level = -1;
|
2018-07-03 07:10:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
//Get and set the name of group
|
|
|
|
public function set_name(string $name){
|
|
|
|
$this->name = $name == "" ? null : $name;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function has_name() : bool {
|
|
|
|
return $this->name != null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function get_name() : string {
|
|
|
|
return $this->name != null ? $this->name : "null";
|
|
|
|
}
|
|
|
|
|
|
|
|
//Get and set the number of members of the group
|
|
|
|
public function set_number_members(int $number_members){
|
|
|
|
$this->number_members = $number_members;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function has_number_members() : bool {
|
|
|
|
return $this->number_members > -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function get_number_members() : int {
|
|
|
|
return $this->number_members;
|
2018-07-03 09:14:16 +00:00
|
|
|
}
|
|
|
|
|
2018-07-04 11:52:39 +00:00
|
|
|
//Get and set the URL of the logo of group
|
|
|
|
public function set_logo(string $logo){
|
|
|
|
$this->logo = $logo == "" ? null : $logo;
|
2018-07-03 09:14:16 +00:00
|
|
|
}
|
|
|
|
|
2018-07-04 11:52:39 +00:00
|
|
|
public function has_logo() : bool {
|
|
|
|
return $this->logo != null;
|
2018-07-03 09:14:16 +00:00
|
|
|
}
|
|
|
|
|
2018-07-04 11:52:39 +00:00
|
|
|
public function get_logo() : string {
|
|
|
|
return $this->logo != null ? $this->logo : self::PATH_GROUPS_LOGO."/default.png";
|
2018-07-03 09:14:16 +00:00
|
|
|
}
|
|
|
|
|
2018-07-04 11:52:39 +00:00
|
|
|
public function get_logo_url() : string {
|
|
|
|
return path_user_data($this->get_logo());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function get_logo_sys_path() : string {
|
|
|
|
|
|
|
|
//For security reasons, this method is available
|
|
|
|
//only if the user has really a logo (avoid unattended
|
|
|
|
//operation on default logo)
|
|
|
|
if(!$this->has_logo())
|
|
|
|
throw new Exception("This GroupInfo object has not any logo set!");
|
|
|
|
|
|
|
|
return path_user_data($this->get_logo(), true);
|
2018-07-03 12:33:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//Get and set the membership level of the current user
|
|
|
|
public function set_membership_level(int $membership_level){
|
|
|
|
$this->membership_level = $membership_level;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function has_membership_level() : bool {
|
|
|
|
return $this->membership_level > -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function get_membership_level() : int {
|
|
|
|
return $this->membership_level;
|
|
|
|
}
|
2018-07-03 07:10:04 +00:00
|
|
|
}
|