aboutsummaryrefslogtreecommitdiffstats
path: root/include/apps.php
diff options
context:
space:
mode:
authorThomas Willingham <beardyunixer@beardyunixer.com>2014-09-09 21:32:25 +0100
committerThomas Willingham <beardyunixer@beardyunixer.com>2014-09-09 21:32:25 +0100
commitec4f30c3f672bbfc57bee8db0aaa0cf002fe8687 (patch)
treecf1aa37d881f2ce3cb844bbcd5c11c5999e96c66 /include/apps.php
parent652ec8c3fcc956c1a5fc2adb7410e4c4a2ac6f90 (diff)
parent409c89d629993b59eaafa8443ae9d0b5f0344c1f (diff)
downloadvolse-hubzilla-ec4f30c3f672bbfc57bee8db0aaa0cf002fe8687.tar.gz
volse-hubzilla-ec4f30c3f672bbfc57bee8db0aaa0cf002fe8687.tar.bz2
volse-hubzilla-ec4f30c3f672bbfc57bee8db0aaa0cf002fe8687.zip
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'include/apps.php')
-rw-r--r--include/apps.php30
1 files changed, 0 insertions, 30 deletions
diff --git a/include/apps.php b/include/apps.php
index 7ac4c7e4b..91012b0ef 100644
--- a/include/apps.php
+++ b/include/apps.php
@@ -470,33 +470,3 @@ function papp_encode($papp) {
}
-/**
- * install a shared design element (layout, webpage, block, menu, whatever)
- *
- */
-
-function element_install($channel,$s) {
-
- $ret = array('success' => false);
-
- $s = str_replace(array('[element]','[/element]'),array('',''),$s);
- $s = base64url_decode($s);
- if(! $s)
- return $ret;
- $x = json_decode($s,true);
- if(! $x)
- return $ret;
-
- $d = array();
-
-
-
-
-
-
-
-
- $result = item_store($d);
-
-}
-