File manager - Edit - /home/adiance/public_html/beta/wp-content/plugins/wp-fail2ban/admin/config/syslog.php
Back
<?php /** * Settings - syslog * * @package wp-fail2ban * @since 4.0.0 */ namespace org\lecklider\charles\wordpress\wp_fail2ban; defined('ABSPATH') or exit; /** * Tab: Syslog * * @since 4.0.0 */ class TabSyslog extends TabBase { /** * {@inheritDoc} */ public function __construct() { // phpcs:disable Generic.Functions.FunctionCallArgumentSpacing $this->__['wp-fail2ban-connection'] = __('Connection', 'wp-fail2ban'); $this->__['syslog-connection-options'] = __('Options', 'wp-fail2ban'); $this->__['wp-fail2ban-workarounds'] = __('Workarounds', 'wp-fail2ban'); $this->__['syslog-workarounds'] = __('Options', 'wp-fail2ban'); // phpcs:enable parent::__construct('syslog', 'syslog'); } /** * {@inheritDoc} * * @since 4.0.0 */ public function admin_init() { // phpcs:disable Generic.Functions.FunctionCallArgumentSpacing add_settings_section('wp-fail2ban-connection', $this->__['wp-fail2ban-connection'], [$this, 'sectionConnection'], 'wp-fail2ban-syslog'); add_settings_field('syslog-connection-options', $this->__['syslog-connection-options'], [$this, 'connection'], 'wp-fail2ban-syslog', 'wp-fail2ban-connection'); add_settings_section('wp-fail2ban-workarounds', $this->__['wp-fail2ban-workarounds'], [$this, 'sectionWorkarounds'], 'wp-fail2ban-syslog'); add_settings_field('syslog-workarounds', $this->__['syslog-workarounds'], [$this, 'workarounds'], 'wp-fail2ban-syslog', 'wp-fail2ban-workarounds'); // phpcs:enable } /** * {@inheritDoc} * * @since 4.3.0 */ public function current_screen() { $fmt = <<<___FMT___ <p>%s</p> <table><style>th{text-align:left;vertical-align:top;}</style> <tr><th scope="row">LOG_CONS</th><td>%s</td></tr> <tr><th scope="row">LOG_NDELAY</th><td>%s</td></tr> <tr><th scope="row">LOG_ODELAY</th><td>%s</td></tr> <tr><th scope="row">LOG_PERROR</th><td>%s</td></tr> <tr><th scope="row">LOG_PID</th><td>%s</td></tr> </table> %s ___FMT___; get_current_screen()->add_help_tab([ 'id' => 'syslog-connection-options', 'title' => $this->__['wp-fail2ban-connection'], 'content' => sprintf( $fmt, __('Used to indicate what logging options will be used when generating a log message.', 'wp-fail2ban'), __('if there is an error while sending data to the system logger, write directly to the system console', 'wp-fail2ban'), __('open the connection to the logger immediately', 'wp-fail2ban'), __('(default) delay opening the connection until the first message is logged', 'wp-fail2ban'), __('print log message also to standard error', 'wp-fail2ban'), __('include PID with each message', 'wp-fail2ban'), $this->see_also(['WP_FAIL2BAN_OPENLOG_OPTIONS']) ) ]); $fmt = <<<___FMT___ <p>%s</p> <p>%s</p> <dl><style>dt{font-weight:bold;}</style> <dt>%s</dt> <dd><p>%s</p>%s</dd> <dt>%s</dt> <dd><p>%s</p>%s</dd> <dt>%s</dt> <dd><p>%s</p><p>%s</p>%s</dd> </dl> ___FMT___; get_current_screen()->add_help_tab([ 'id' => 'syslog-workarounds', 'title' => $this->__['wp-fail2ban-workarounds'], 'content' => sprintf( $fmt, __('<tt>syslog</tt> was only <a href="https://tools.ietf.org/html/rfc5424" target="_blank">standardised</a> in 2009, so unfortunately there are still implementations that need some help.', 'wp-fail2ban'), __('By far the most common limitation is the length of the initial information fields; these options provide ways to shorten the data in those fields.', 'wp-fail2ban'), __('Short Tag', 'wp-fail2ban'), __('Some syslog implementations assume that the first part of the message (the tag) won‘t exceed some (small) number of characters. This option tells <em>WPf2b</em> to use <tt>wp</tt> instead of <tt>wordpress</tt>, thereby saving 7 characters; this may be enough to make syslog happy.', 'wp-fail2ban'), $this->see_also(['WP_FAIL2BAN_SYSLOG_SHORT_TAG']), __('Specify Host', 'wp-fail2ban'), __('"Short Tag" may not be enough, so this allows you to specify the hostname. See the <a href="https://docs.wp-fail2ban.com/en/___WPF2BVER___/defines/constants/WP_FAIL2BAN_HTTP_HOST.html" target="_blank">documentation</a> for more details.', 'wp-fail2ban'), $this->see_also(['WP_FAIL2BAN_HTTP_HOST']), __('Truncate Host', 'wp-fail2ban'), __('When all else fails, this allows you to truncate the hostname after a number of characters.', 'wp-fail2ban'), __('<strong>N.B.</strong> This may be removed in a future release; it was broken prior to 4.3 and there were no bug reports, so it seems likely absolutely no-one is using it.', 'wp-fail2ban'), $this->see_also(['WP_FAIL2BAN_TRUNCATE_HOST']) ) ]); parent::current_screen(); } /** * Connection section blurb. * * @since 4.0.0 */ public function sectionConnection() { echo ''; } /** * Connection. * * @since 4.3.0 Refactor to premium. * @since 4.0.0 */ public function connection() { $fmt = <<<___STR___ <fieldset> <label><input type="checkbox" disabled="disabled" %s> <code>LOG_CONS</code></label><br> <label><input type="checkbox" disabled="disabled" %s> <code>LOG_PERROR</code></label><br> <label><input type="checkbox" disabled="disabled" %s> <code>LOG_PID</code> <em>(%s)</em></label><br> <label><input type="radio" disabled="disabled" %s> <code>LOG_NDELAY</code> <em>(%s)</em></label><br> <label><input type="radio" disabled="disabled" %s> <code>LOG_ODELAY</code></label> </fieldset> ___STR___; // phpcs:disable Generic.Functions.FunctionCallArgumentSpacing, PSR2.Methods.FunctionCallSignature.MultipleArguments printf( $fmt, checked(WP_FAIL2BAN_OPENLOG_OPTIONS & LOG_CONS, LOG_CONS, false), checked(WP_FAIL2BAN_OPENLOG_OPTIONS & LOG_PERROR, LOG_PERROR, false), checked(WP_FAIL2BAN_OPENLOG_OPTIONS & LOG_PID, LOG_PID, false), __('default'), checked(WP_FAIL2BAN_OPENLOG_OPTIONS & LOG_NDELAY, LOG_NDELAY, false), __('default'), checked(WP_FAIL2BAN_OPENLOG_OPTIONS & LOG_ODELAY, LOG_ODELAY, false) ); // phpcs:enable } /** * Workarounds section blurb. * * @since 4.0.0 */ public function sectionWorkarounds() { echo ''; } /** * Workarounds. * * @since 4.3.0 Refactor to premium. * @since 4.0.0 */ public function workarounds() { $fmt = <<<___STR___ <fieldset> <label><input type="checkbox" disabled="disabled" %s> %s</label> <br> <label><input type="checkbox" disabled="disabled" %s> %s</label> <br> <label><input type="checkbox" disabled="disabled" %s> %s</label> </fieldset> ___STR___; printf( $fmt, checked(@WP_FAIL2BAN_SYSLOG_SHORT_TAG, true, false), __('Short Tag', 'wp-fail2ban'), checked(@WP_FAIL2BAN_HTTP_HOST, true, false), __('Specify Host', 'wp-fail2ban'), checked(@WP_FAIL2BAN_TRUNCATE_HOST, true, false), __('Truncate Host', 'wp-fail2ban') ); } }
| ver. 1.4 |
Github
|
.
| PHP 7.3.33 | Generation time: 0.09 |
proxy
|
phpinfo
|
Settings