Conference center raise hand feature (#5212)
* Update app_languages.php * Update conference_interactive_inc.php * Update conference_exec.php * Create raise_hand.lua * Update conference.conf * Update app_languages.php
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
--options are true and false and toggle
|
||||
data = argv[1];
|
||||
if (data == "toggle") then
|
||||
data = session:getVariable("hand_raised")
|
||||
if(data == "true")then
|
||||
session:setVariable("hand_raised","false")
|
||||
else
|
||||
session:setVariable("hand_raised","true")
|
||||
end
|
||||
elseif(data == "true")then
|
||||
session:setVariable("hand_raised","true")
|
||||
elseif(data == "false")then
|
||||
session:setVariable("hand_raised","false")
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user