HEX
Server: Apache/2.4.34 (Red Hat) OpenSSL/1.0.2k-fips
System: Linux WORDPRESS 3.10.0-1160.118.1.el7.x86_64 #1 SMP Thu Apr 4 03:33:23 EDT 2024 x86_64
User: digital (1020)
PHP: 7.2.24
Disabled: NONE
Upload Files
File: /datos/www/www.colombia.co/public_html/wp-content/plugins/rating-widget/view/powerusers.php
<?php
	wp_enqueue_script( 'ace', WP_RW__PLUGIN_URL . 'resources/js/ace/ace.js' );
	$custom_settings         = rw_settings()->custom_settings;
	$custom_settings_enabled = rw_settings()->custom_settings_enabled;
?>
<style>
	#rw_power_options label
	{
		font-size:   13px;
		font-weight: bold;
		display:     block;
		margin:      5px;
	}
</style>
<div id="rw_power_options" class="has-sidebar has-right-sidebar">
	<div class="has-sidebar-content">
		<div class="postbox rw-body">
			<h3><?php _erw( 'power-user-settings' ) ?></h3>

			<div class="inside rw-ui-content-container rw-no-radius">
				<label><input id="rw_custom_settings_enabled" name="rw_custom_settings_enabled" type="checkbox"
				              value="1"<?php if ( $custom_settings_enabled ) {
						echo ' checked="checked"';
					} ?> /> <?php _erw( 'activate' ) ?> / <?php _erw( 'in-activate' ) ?></label>

				<p>Here you can customize the ratings according to our <a
						href="<?php rw_the_site_url( 'documentation' ); ?>" target="_blank">advanced documentation</a>.
				</p>
				<textarea name="rw_custom_settings" style="display: none;"></textarea>

				<div id="js_editor" style="min-height: 350px; left: 1px;"><?php
						echo ! empty( $custom_settings ) ? stripslashes( $custom_settings ) :
							'/*
 * We recommend to use this section only if you familiar with JavaScript.
 *
 * For your convenience, we have collected a set of examples which we are frequently
 * being asked about. Make sure to delete (or comment) the code you do NOT want to use.
 */

// Example: Hide ratings tooltip.
options.showTooltip = false;

// Example: Hide posts recommendations.
options.hideRecommendations = true;

// Example: Hide ratings report.
options.showReport = false;

// Example: Hide the ratings loading gif.
options.showLoader = false;

// Example: Hide the text bubble - only show the star ratings.
options.showInfo = false;

// Example: Set custom rating file.
// NOTE: This feature is only supported in the Professional and Business plans.
//
// More information:
//      http://rating-widget.com/support/how-can-i-customize-the-ratings-image-theme-in-wordpress/
options.style = RW.CUSTOM;
options.imgUrl = {
	ltr: "http://i.rw.gs/s/flat_yellow.m.png", // Left to Right rating
	rtl: "http://i.rw.gs/s/flat_yellow.m.png"  // Right to Left rating
};

// Example: Disable mobile optimized UI (the fixed star button).
options.mobile = {"showTrigger": false};
'
					?>
				</div>
			</div>
		</div>
	</div>
</div>
<script type="text/javascript">
	(function ($) {
		$(document).ready(function () {
			// Initialize the editor
			var js_editor = ace.edit("js_editor");
			js_editor.setTheme("ace/theme/monokai");

			disableEditor(!$('#rw_custom_settings_enabled').prop('checked'));

			function disableEditor(is_disabled) {
				if (is_disabled) {
					js_editor.setOptions({
						highlightActiveLine: false,
						highlightGutterLine: false,
						readOnly           : true
					});
					$(js_editor.container).css({opacity: 0.5});
					$(js_editor.renderer.$cursorLayer.element).css({opacity: 0});
					js_editor.getSession().setMode("ace/mode/text");
				} else {
					js_editor.setOptions({
						highlightActiveLine: true,
						highlightGutterLine: true,
						readOnly           : false
					})
					$(js_editor.container).css({opacity: 1});
					$(js_editor.renderer.$cursorLayer.element).css({opacity: 1});
					js_editor.getSession().setMode("ace/mode/javascript");
				}
			}

			$('textarea[name="rw_custom_settings"]').closest('form').submit(function () {
				var code = js_editor.getValue();
				$('textarea[name="rw_custom_settings"]').val(code);
			});

			$('#rw_custom_settings_enabled').on('click', function () {
				disableEditor(!$(this).prop('checked'));
			});
		});
	})(jQuery);
</script>