#8374: Adding missing settings template file; cleaning up addon code
authorChristian Wiwie <jonsnow@posteo.de>
Sat, 14 Mar 2020 21:14:53 +0000 (22:14 +0100)
committerChristian Wiwie <jonsnow@posteo.de>
Sat, 14 Mar 2020 21:14:53 +0000 (22:14 +0100)
showmore_dyn/showmore_dyn.php
showmore_dyn/templates/settings.tpl [new file with mode: 0644]

index b38231f..cfc8e93 100644 (file)
@@ -48,15 +48,6 @@ function showmore_dyn_settings_post(){
        if (isset($_POST['showmore_dyn-submit'])){
                $limitHeight = $_POST['showmore_dyn_height'];
                DI::pConfig()->set(local_user(), 'showmore_dyn', 'limitHeight', $limitHeight);
-
-/*
-               $str=file_get_contents('addon/showmore_dyn/showmore_dyn.css');
-               $str=preg_replace("/(max-height: )\d+(px;)/i", "max-height: " . $limitHeight . "px;" ,$str);
-               file_put_contents('addon/showmore_dyn/showmore_dyn.css', $str);
-
-               $str=file_get_contents('addon/showmore_dyn/showmore_dyn.js');
-                $str=preg_replace('/if \(\$item.height\(\) \< \d+\) \{/i', 'if ($item.height() < ' . $limitHeight . ') {' ,$str);
-               file_put_contents('addon/showmore_dyn/showmore_dyn2.js', $str);*/
         }
 }
 
diff --git a/showmore_dyn/templates/settings.tpl b/showmore_dyn/templates/settings.tpl
new file mode 100644 (file)
index 0000000..2ef79c0
--- /dev/null
@@ -0,0 +1,12 @@
+<div class="settings-block">
+        <h3 class="settings-heading">{{$title}}</h3>
+        <div class='field noedit'>
+                <label>{{$label}}</label>
+               <input id="showmore_dyn_height" name="showmore_dyn_height" value="{{$limitHeight}}" />
+        </div>
+
+        <div class="settings-submit-wrapper">
+                <input type="submit" value="{{$submit}}" class="settings-submit" name="showmore_dyn-submit" />
+        </div>
+</div>
+