diff options
author | zotlabs <mike@macgirvin.com> | 2017-03-15 16:55:47 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-03-15 16:55:47 -0700 |
commit | df6c07aaadda2e89d2843bae136f813c909637ba (patch) | |
tree | 295d72d88f6986c06399e0eef148048daf8367e1 /Zotlabs/Render | |
parent | c95e9b9ba52b8376eea079850caf178e223a1a6d (diff) | |
download | volse-hubzilla-df6c07aaadda2e89d2843bae136f813c909637ba.tar.gz volse-hubzilla-df6c07aaadda2e89d2843bae136f813c909637ba.tar.bz2 volse-hubzilla-df6c07aaadda2e89d2843bae136f813c909637ba.zip |
Comanche: allow widgets to be class based and stored appropriately in Zotlabs
Diffstat (limited to 'Zotlabs/Render')
-rw-r--r-- | Zotlabs/Render/Comanche.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Zotlabs/Render/Comanche.php b/Zotlabs/Render/Comanche.php index 5826063fd..899fbd8aa 100644 --- a/Zotlabs/Render/Comanche.php +++ b/Zotlabs/Render/Comanche.php @@ -410,6 +410,20 @@ class Comanche { } } + $clsname = ucfirst($name); + $nsname = "Zotlabs\\Widget\\" . $clsname; + if(file_exists('Zotlabs/SiteWidget/' . $clsname . '.php')) + require_once('Zotlabs/SiteWidget/' . $clsname . '.php'); + elseif(file_exists('Zotlabs/Widget/' . $clsname . '.php')) + require_once('Zotlabs/Widget/' . $clsname . '.php'); + if(class_exists($nsname)) { + $x = new $nsname; + $f = 'widget'; + if(method_exists($x,$f)) { + return $x->$f($vars); + } + } + $func = 'widget_' . trim($name); if(! function_exists($func)) { |