summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorThomas Renard <[email protected]>2012-12-28 00:57:36 +0100
committerThomas Renard <[email protected]>2012-12-28 00:57:36 +0100
commit7278dc0edf3b7b06edb5e3abd301da588f12d128 (patch)
tree1bcf5bd6a7b45f772a5feffc42b78d54bd9eab54 /plugins
parent7e8b6f32cb70b546a960a82f12c1d1e526202eb1 (diff)
save owncloud url as plugin pref
Diffstat (limited to 'plugins')
-rw-r--r--plugins/owncloud/owncloud.php16
1 files changed, 6 insertions, 10 deletions
diff --git a/plugins/owncloud/owncloud.php b/plugins/owncloud/owncloud.php
index 06aeda705..6643d0ae4 100644
--- a/plugins/owncloud/owncloud.php
+++ b/plugins/owncloud/owncloud.php
@@ -38,7 +38,7 @@ class OwnCloud extends Plugin {
function hook_prefs_tab($args) {
if ($args != "prefPrefs") return;
- print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__("Owncloud Pane")."\">";
+ print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__("Owncloud")."\">";
print "<br/>";
@@ -46,9 +46,9 @@ class OwnCloud extends Plugin {
print "<form dojoType=\"dijit.form.Form\">";
print "<script type=\"dojo/method\" event=\"onSubmit\" args=\"evt\">
- evt.prefentDefault();
+ evt.preventDefault();
if (this.validate()) {
- console.log(dojo.objectToQuery(this.getValiues()));
+ console.log(dojo.objectToQuery(this.getValues()));
new Ajax.Request('backend.php', {
parameters: dojo.objectToQuery(this.getValues()),
onComplete: function(transport) {
@@ -60,13 +60,12 @@ class OwnCloud extends Plugin {
print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pluginhandler\">";
print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"save\">";
- print "<input dojoType=\"dijit.from.TextBox\" style=\"display : none\" name=\"plugin\" value=\"owncloud\">";
+ print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"plugin\" value=\"owncloud\">";
print "<table width=\"100%\" class=\"prefPrefsList\">";
print "<tr><td width=\"40%\">".__("Owncloud url")."</td>";
print "<td class=\"prefValue\"><input dojoType=\"dijit.form.ValidationTextBox\" required=\"1\" name=\"owncloud_url\" value=\"$value\"></td></tr>";
print "</table>";
- print "<p><button dojoType=\"dijit.form.Button\" type=\"submit\">".
- __("Set value")."</button>";
+ print "<p><button dojoType=\"dijit.form.Button\" type=\"submit\">".__("Set value")."</button>";
print "</form>";
@@ -94,10 +93,7 @@ class OwnCloud extends Plugin {
$article_link = db_fetch_result($result, 0, 'link');
}
- $own_url = "";
- if (defined('OWNCLOUD_URL')) {
- $own_url = OWNCLOUD_URL;
- }
+ $own_url = $this->host->get($this, "owncloud");
print json_encode(array("title" => $title, "link" => $article_link,
"id" => $id, "ownurl" => $own_url));