[WIP] #8374: Limit post content by rendered height instead of number of characters #968

Merged
wiwie merged 19 commits from develop into develop 2020-03-18 01:48:19 +01:00
2 changed files with 12 additions and 9 deletions
Showing only changes of commit b46a23eab3 - Show all commits

View 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);*/
}
}

View file

@ -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>