Can update the name of the group

This commit is contained in:
Pierre HUBERT
2018-07-04 11:36:32 +02:00
parent 57401c8ce0
commit b591f008a4
2 changed files with 56 additions and 0 deletions

View File

@ -128,6 +128,26 @@ class GroupsComponent {
}
/**
* Set (update) group settings
*
* @param GroupSettings $settings The settings to update
* @return bool TRUE for a success / FALSE
*/
public function set_settings(GroupSettings $settings) : bool {
//Generate database entry
$modif = $this->GroupSettingsToDB($settings);
//Apply update
return db()->updateDB(
self::GROUPS_LIST_TABLE,
"id = ?",
$modif,
array($settings->get_id()));
}
/**
* Insert a new group member
*
@ -268,6 +288,20 @@ class GroupsComponent {
return $info;
}
/**
* Turn a GroupSettings object into a database entry
*
* @param GroupSettings $settings The object to convert
* @return array Generated database entry
*/
private function GroupSettingsToDB(GroupSettings $settings) : array {
$data = array();
$data["name"] = $settings->get_name();
return $data;
}
}
//Register component