aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-01-12 22:44:59 +0100
committerMario Vavti <mario@mariovavti.com>2018-01-12 22:44:59 +0100
commitce10a44e722c9bbaceff64273641c3e08c6ad7a5 (patch)
treefb5d58779c5f4984a2e9cf354e154e06c997c1c9
parent0f5bc00586e5fb9e3f251dc8dbd58579bb3381a9 (diff)
parentb0a491eaa8759feef7bca1a9c1dd272fa07c4872 (diff)
downloadvolse-hubzilla-ce10a44e722c9bbaceff64273641c3e08c6ad7a5.tar.gz
volse-hubzilla-ce10a44e722c9bbaceff64273641c3e08c6ad7a5.tar.bz2
volse-hubzilla-ce10a44e722c9bbaceff64273641c3e08c6ad7a5.zip
Merge remote-tracking branch 'mike/master' into dev
-rwxr-xr-xinclude/plugin.php77
1 files changed, 77 insertions, 0 deletions
diff --git a/include/plugin.php b/include/plugin.php
index 95afdaeb5..67157dee7 100755
--- a/include/plugin.php
+++ b/include/plugin.php
@@ -404,6 +404,83 @@ function get_plugin_info($plugin){
return $info;
}
+/**
+ * @brief Parse widget comment in search of widget info.
+ *
+ * like
+ * \code
+ * * Name: MyWidget
+ * * Description: A widget
+ * * Version: 1.2.3
+ * * Author: John <profile url>
+ * * Author: Jane <email>
+ * *
+ *\endcode
+ * @param string $widget the name of the widget
+ * @return array with the information
+ */
+function get_widget_info($widget){
+ $m = array();
+ $info = array(
+ 'name' => $widget,
+ 'description' => '',
+ 'author' => array(),
+ 'maintainer' => array(),
+ 'version' => '',
+ 'requires' => ''
+ );
+
+ $ucwidget = ucfirst($widget);
+
+ $checkpaths = [
+ "Zotlabs/SiteWidget/$ucwidget.php",
+ "Zotlibs/Widget/$ucwidget.php",
+ "addon/$ucwidget/$ucwidget.php",
+ "addon/$widget.php"
+ ];
+
+ $widget_found = false;
+
+ foreach ($checkpaths as $path) {
+ if (is_file($path)) {
+ $widget_found = true;
+ $f = file_get_contents($path);
+ break;
+ }
+ }
+
+ if(! ($widget_found && $f))
+ return $info;
+
+ $f = escape_tags($f);
+ $r = preg_match("|/\*.*\*/|msU", $f, $m);
+
+ if ($r) {
+ $ll = explode("\n", $m[0]);
+ foreach( $ll as $l ) {
+ $l = trim($l, "\t\n\r */");
+ if ($l != ""){
+ list($k, $v) = array_map("trim", explode(":", $l, 2));
+ $k = strtolower($k);
+ if ($k == 'author' || $k == 'maintainer'){
+ $r = preg_match("|([^<]+)<([^>]+)>|", $v, $m);
+ if ($r) {
+ $info[$k][] = array('name' => $m[1], 'link' => $m[2]);
+ } else {
+ $info[$k][] = array('name' => $v);
+ }
+ }
+ else {
+ $info[$k] = $v;
+ }
+ }
+ }
+ }
+
+ return $info;
+}
+
+
function check_plugin_versions($info) {
if(! is_array($info))