Files
webgui/plugins/dynamix/SMBExtras.page

46 lines
1.8 KiB
Plaintext

Menu="SMB:2"
Title="SMB Extras"
Cond="($var['shareSMBEnabled']!='no')"
Tag="share-alt-square"
---
<?PHP
/* Copyright 2018, Lime Technology
* Copyright 2018, Bergware International.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*/
?>
> Use this page to make changes to your `smb-extra.conf` file. Samba will need
> to be restarted in order for changes to take effect.
<?
$file = "/boot/config/smb-extra.conf";
$text = @file_get_contents($file) ?: '';
$text = preg_replace(["/\r\n/","/\r/"],"\n",$text);
?>
<script>
$(function(){
$('form').find('textarea').on('input change',function(){
$(this).prop('rows',($(this).val().match(/\n/g)||[]).length+1);
});
});
</script>
<form markdown="1" method="POST" action="/update.php" target="progressFrame">
<input type="hidden" name="#include" value="/webGui/include/update.file.php">
<input type="hidden" name="#file" value="<?=$file;?>">
Samba extra configuration:
: <textarea spellcheck="false" cols="80" rows="<?=substr_count($text,"\n")+1?>" maxlength="2048" name="text" style="resize:none;font-family:bitstream;width:65.5%" <?if ($var['fsState']=="Started"):?>disabled<?endif;?>><?=htmlspecialchars($text)?></textarea>
&nbsp;
: <input type="submit" value="Apply" disabled><input type="button" value="Done" onclick="done()"><?if ($var['fsState']=="Started"):?>Array must be <span class="strong big">Stopped</span> to change<?endif;?>
> Click the **Apply** button to commit the current edits. Click **Reset** to
> undo any changes you make (before Saving). Click **Done** to exit this page.
</form>