13 lines
473 B
Smarty
13 lines
473 B
Smarty
import(common.tpl)
|
|
|
|
.settings input[name]|value = <?php
|
|
$_setting = '@@__name:\[(.*)\]__@@';
|
|
echo htmlspecialchars($_POST['settings'][$_setting] ?? Vvveb\getSetting('content-plugin', $_setting, '', $this->site_id));
|
|
//name="settings[setting-name] > get only setting-name
|
|
?>
|
|
|
|
.settings textarea = <?php
|
|
$_setting = '@@__name:\[(.*)\]__@@';
|
|
echo htmlspecialchars($_POST['settings'][$_setting] ?? Vvveb\getSetting('content-plugin', $_setting, '', $this->site_id));
|
|
?>
|