mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
48 lines
2.0 KiB
PHP
48 lines
2.0 KiB
PHP
<?php
|
|
|
|
/*
|
|
* LibreNMS
|
|
*
|
|
* Copyright (c) 2015 Neil Lathwood <https://github.com/laf/ http://www.lathwood.co.uk/fa>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by the
|
|
* Free Software Foundation, either version 3 of the License, or (at your
|
|
* option) any later version. Please see LICENSE.txt at the top level of
|
|
* the source code distribution for details.
|
|
*/
|
|
|
|
if (defined('SHOW_SETTINGS') || empty($widget_settings)) {
|
|
$common_output[] = '
|
|
<form class="form-horizontal" onsubmit="widget_settings(this); return false;">
|
|
<div class="form-group">
|
|
<div class="col-sm-12">
|
|
The following html tags are supported: <b>, <iframe>, <i>, <ul>, <li>, <h1>, <h2>, <h3>, <h4>, <br>, <p>. If you want just text then wrap in <pre></pre>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="'.$unique_id.'_notes" class="col-sm-1" control-label"></label>
|
|
<div class="col-sm-11">
|
|
<textarea name="notes" id="'.$unique_id.'_notes" rows="3" class="form-control">'.htmlspecialchars($widget_settings['notes']).'</textarea>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="col-sm-1">
|
|
<button type="submit" class="btn btn-sm btn-primary">Set</button>
|
|
</div>
|
|
</div>
|
|
</form>';
|
|
} else {
|
|
$tmp_config = array(
|
|
'HTML.Allowed' => 'b,iframe,i,ul,li,h1,h2,h3,h4,br,p',
|
|
'HTML.AllowedAttributes' => 'iframe@src,iframe@width,iframe@height',
|
|
'HTML.AllowedElements' => array('iframe'),
|
|
'HTML.Trusted' => true,
|
|
'HTML.SafeIframe' => true,
|
|
'URI.SafeIframeRegexp' => '%^(https?:)?//%',
|
|
);
|
|
$common_output[] = display(nl2br($widget_settings['notes']), $tmp_config);
|
|
//print_r($common_output);exit;
|
|
unset($tmp_config);
|
|
}
|