| Server IP : 104.21.21.239 / Your IP : 216.73.216.55 Web Server : Apache/2.4.68 (Amazon Linux) OpenSSL/3.5.7 System : Linux ip-172-31-69-123.ec2.internal 6.1.177-224.371.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Mon Jul 27 20:28:29 UTC 2026 x86_64 User : ec2-user ( 1000) PHP Version : 8.4.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /ourscripts/oldmandy/wp-content/slideshow-jquery-image-gallery/classes/ |
Upload File : |
<?php
/**
* Class SlideshowPluginWidget allows showing one of your slideshows in your widget area.
*
* @since 1.2.0
* @author: Stefan Boonstra
*/
class SlideshowPluginWidget extends WP_Widget
{
/** @var string $widgetName */
static $widgetName = 'Slideshow';
/**
* Initializes the widget
*
* @since 1.2.0
*/
function SlideshowPluginWidget()
{
// Settings
$options = array(
'classname' => 'SlideshowWidget',
'description' => __('Enables you to show your slideshows in the widget area of your website.', 'slideshow-jquery-image-gallery')
);
// Create the widget.
parent::__construct(
'slideshowWidget',
__('Slideshow Widget', 'slideshow-jquery-image-gallery'),
$options
);
}
/**
* The widget as shown to the user.
*
* @since 1.2.0
* @param mixed array $args
* @param mixed array $instance
*/
function widget($args, $instance)
{
// Get slideshowId
$slideshowId = '';
if (isset($instance['slideshowId']))
{
$slideshowId = $instance['slideshowId'];
}
// Get title
$title = '';
if (isset($instance['title']))
{
$title = $instance['title'];
}
// Prepare slideshow for output to website.
$output = SlideshowPlugin::prepare($slideshowId);
$beforeWidget = $afterWidget = $beforeTitle = $afterTitle = '';
if (isset($args['before_widget']))
{
$beforeWidget = $args['before_widget'];
}
if (isset($args['after_widget']))
{
$afterWidget = $args['after_widget'];
}
if (isset($args['before_title']))
{
$beforeTitle = $args['before_title'];
}
if (isset($args['after_title']))
{
$afterTitle = $args['after_title'];
}
// Output widget
echo $beforeWidget . (!empty($title) ? $beforeTitle . $title . $afterTitle : '') . $output . $afterWidget;
}
/**
* The form shown on the admins widget page. Here settings can be changed.
*
* @since 1.2.0
* @param mixed array $instance
* @return string
*/
function form($instance)
{
// Defaults
$defaults = array(
'title' => __(self::$widgetName, 'slideshow-jquery-image-gallery'),
'slideshowId' => -1
);
// Merge database settings with defaults
$instance = wp_parse_args((array) $instance, $defaults);
// Get slideshows
$slideshows = get_posts(array(
'numberposts' => -1,
'offset' => 0,
'post_type' => SlideshowPluginPostType::$postType
));
$data = new stdClass();
$data->widget = $this;
$data->instance = $instance;
$data->slideshows = $slideshows;
// Include form
SlideshowPluginMain::outputView(__CLASS__ . DIRECTORY_SEPARATOR . 'form.php', $data);
}
/**
* Updates widget's settings.
*
* @since 1.2.0
* @param mixed array $newInstance
* @param mixed array $instance
* @return mixed array $instance
*/
function update($newInstance, $instance)
{
// Update title
if (isset($newInstance['title']))
{
$instance['title'] = $newInstance['title'];
}
// Update slideshowId
if (isset($newInstance['slideshowId']) &&
!empty($newInstance['slideshowId']))
{
$instance['slideshowId'] = $newInstance['slideshowId'];
}
// Save
return $instance;
}
/**
* Registers this widget (should be called upon widget_init action hook)
*
* @since 1.2.0
*/
static function registerWidget()
{
register_widget(__CLASS__);
}
}