diff options
author | Friendika <info@friendika.com> | 2011-06-30 15:31:25 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-06-30 15:31:25 -0700 |
commit | 4f1213b69f12e6df2350cd21c6de06128a03411d (patch) | |
tree | cb68ecdcadb886e15cc502b633ca71b874740e55 /addon/widgets/widgets.php | |
parent | 8819c73ba1ae1cbf19d2c517a87d30104d1a5da1 (diff) | |
parent | 7778dbb67b2c033473b0da9b34df01d28162b5ee (diff) | |
download | volse-hubzilla-4f1213b69f12e6df2350cd21c6de06128a03411d.tar.gz volse-hubzilla-4f1213b69f12e6df2350cd21c6de06128a03411d.tar.bz2 volse-hubzilla-4f1213b69f12e6df2350cd21c6de06128a03411d.zip |
Merge pull request #132 from fabrixxm/master
Some works on addons and other
Diffstat (limited to 'addon/widgets/widgets.php')
-rw-r--r-- | addon/widgets/widgets.php | 36 |
1 files changed, 17 insertions, 19 deletions
diff --git a/addon/widgets/widgets.php b/addon/widgets/widgets.php index f5f868222..13c4f93bb 100644 --- a/addon/widgets/widgets.php +++ b/addon/widgets/widgets.php @@ -33,34 +33,32 @@ function widgets_settings(&$a,&$o) { $key = get_pconfig(local_user(), 'widgets', 'key' ); if ($key=='') { $key = mt_rand(); set_pconfig(local_user(), 'widgets', 'key', $key); } - - $o .='<h3 class="settings-heading">Widgets</h3>'; - - - $o.=' - <div id="settings-username-wrapper"> - '. t('Widgets key: ') .'<strong>'.$key.'</strong> - </div> - <div id="settings-username-end"></div> - <div class="settings-submit-wrapper"> - <input type="submit" value="'.t('Generate new key').'" class="settings-submit" name="widgets-submit"> - </div>'; - - - $o.='<h4>Widgets:</h4>'; - $o .= '<ul>'; + + $widgets = array(); $d = dir(dirname(__file__)); while(false !== ($f = $d->read())) { if(substr($f,0,7)=="widget_") { preg_match("|widget_([^.]+).php|", $f, $m); $w=$m[1]; require_once($f); - $o.='<li><a href="'.$a->get_baseurl().'/widgets/'.$w.'/?k='.$key.'&p=1">'. call_user_func($w."_widget_name") .'</a></li>'; + $widgets[] = array($w, call_user_func($w."_widget_name")); + } } - $o .= '</ul>'; - + + + $t = file_get_contents( dirname(__file__). "/settings.tpl" ); + $o .= replace_macros($t, array( + '$submit' => t('Generate new key'), + '$baseurl' => $a->get_baseurl(), + '$title' => "Widgets", + '$label' => t('Widgets key'), + '$key' => $key, + '$widgets_h' => t('Widgets available'), + '$widgets' => $widgets, + )); + } function widgets_module() { |