diff options
-rw-r--r-- | mod/settings.php | 2 | ||||
-rw-r--r-- | view/tpl/generic_addon_settings.tpl | 17 | ||||
-rwxr-xr-x | view/tpl/settings_addons.tpl | 2 |
3 files changed, 19 insertions, 2 deletions
diff --git a/mod/settings.php b/mod/settings.php index c47d21d02..56949f9d4 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -681,7 +681,7 @@ function settings_content(&$a) { '$pubcomments' => array('dspr_pubcomment', t('Allow any Diaspora member to comment on your public posts'), $pubcomments, '', $yes_no), '$dsprtitle' => t('Diaspora Policy Settings'), '$hijacking' => array('dspr_hijack', t('Prevent your hashtags from being redirected to other sites'), $hijacking, '', $yes_no), - '$dsprsubmit' => t('Submit Diaspora Policy Settings'), + '$dsprsubmit' => t('Submit'), '$settings_addons' => $settings_addons )); return $o; diff --git a/view/tpl/generic_addon_settings.tpl b/view/tpl/generic_addon_settings.tpl new file mode 100644 index 000000000..a7d3b6c0a --- /dev/null +++ b/view/tpl/generic_addon_settings.tpl @@ -0,0 +1,17 @@ +<div class="panel"> + <div class="section-subtitle-wrapper" role="tab" id="{{$addon.0}}-settings"> + <h3> + <a title="{{$addon.2}}" data-toggle="collapse" data-parent="#settings" href="#{{$addon.0}}-settings-content" aria-controls="{{$addon.0}}-settings-content"> + {{$addon.1}} + </a> + </h3> + </div> + <div id="{{$addon.0}}-settings-content" class="panel-collapse collapse" role="tabpanel" aria-labelledby="{{$addon.0}}-settings"> + <div class="section-content-tools-wrapper"> + {{$content}} + <div class="settings-submit-wrapper" > + <button id="{{$addon.0}}-submit" type="submit" name="{{$addon.0}}-submit" class="btn btn-primary" value="{{$addon.3}}">{{$addon.3}}</button> + </div> + </div> + </div> +</div> diff --git a/view/tpl/settings_addons.tpl b/view/tpl/settings_addons.tpl index a1b18e441..9297a282a 100755 --- a/view/tpl/settings_addons.tpl +++ b/view/tpl/settings_addons.tpl @@ -27,7 +27,7 @@ </div> </div> {{/if}} + {{$settings_addons}} </div> - {{$settings_addons}} </form> </div> |