Add structure for methods for member join and leave
This commit is contained in:
parent
229a343ebd
commit
6c4fa4848c
10
webhook.php
10
webhook.php
|
@ -62,6 +62,16 @@ $modules = array(
|
||||||
|
|
||||||
$command_list = explode(" ", $decoded->{"message"}->{"text"});
|
$command_list = explode(" ", $decoded->{"message"}->{"text"});
|
||||||
|
|
||||||
|
# Run new_member function for a new member
|
||||||
|
if (isset($decoded->{'message'}->{'new_chat_members'})) {
|
||||||
|
new_member();
|
||||||
|
}
|
||||||
|
|
||||||
|
# Run member_exit function when a member leaves
|
||||||
|
if (isset($decoded->{'message'}->{"left_chat_member"})) {
|
||||||
|
member_exit();
|
||||||
|
}
|
||||||
|
|
||||||
foreach ($modules as $module ) {
|
foreach ($modules as $module ) {
|
||||||
if (check_command($module["command"])) {
|
if (check_command($module["command"])) {
|
||||||
eval($module["function"]);
|
eval($module["function"]);
|
||||||
|
|
Loading…
Reference in New Issue