Revision: 244
http://hw4mdl.svn.sourceforge.net/hw4mdl/?rev=244&view=rev
Author: trollinger
Date: 2008-02-15 11:08:40 -0800 (Fri, 15 Feb 2008)
Log Message:
-----------
Add a new settings for the vb
Modified Paths:
--------------
branches/team/Thomas/integrations_common/php/common/WimbaUI.php
branches/team/Thomas/integrations_common/php/vt/VtAction.php
Modified: branches/team/Thomas/integrations_common/php/common/WimbaUI.php
===================================================================
--- branches/team/Thomas/integrations_common/php/common/WimbaUI.php 2008-02-14 23:22:21 UTC (rev 243)
+++ branches/team/Thomas/integrations_common/php/common/WimbaUI.php 2008-02-15 19:08:40 UTC (rev 244)
@@ -1950,6 +1950,22 @@
$this->xml->createLine();
+ $parameters = array (
+ "type" => "checkbox",
+ "value" => "true",
+ "id" => "show_reply",
+ "name" => "show_reply"
+ );
+ if (isset ($this->currentObject) && $this->currentObjectOptions->getShowReply() == 'true')
+ {
+ $parameters['checked'] = "true";
+ }
+ $this->xml->addInputElement($parameters);
+ $this->xml->addSimpleLineElement("label", get_string('settings_show_reply', 'voicetools'));
+ $this->xml->createLinePart();
+
+ $this->xml->createLine();
+
$this->xml->createPanelSettings(
get_string('tab_title_features', 'voicetools'),
"none",
Modified: branches/team/Thomas/integrations_common/php/vt/VtAction.php
===================================================================
--- branches/team/Thomas/integrations_common/php/vt/VtAction.php 2008-02-14 23:22:21 UTC (rev 243)
+++ branches/team/Thomas/integrations_common/php/vt/VtAction.php 2008-02-15 19:08:40 UTC (rev 244)
@@ -54,6 +54,8 @@
$options->setChronoOrder($this->params["chrono_order"]);
//forward message
$options->setShowForward($this->params["show_forward"]);
+
+ $options->setShowReply($this->params["show_reply"]);
$options->setAudioFormat($audio);
$ressource->setOptions($options);
//create the resource on the vt server
@@ -104,6 +106,9 @@
$options->setChronoOrder($this->params["chrono_order"]);
//forward message
$options->setShowForward($this->params["show_forward"]);
+
+ $options->setShowReply($this->params["show_reply"]);
+
$options->setAudioFormat($audio);
$ressource->setOptions($options);
//update
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|