| Server IP : 78.24.162.143 / Your IP : 216.73.216.224 Web Server : Apache System : Linux hosting.cormo.systems 5.15.0-179-generic #189-Ubuntu SMP Tue May 5 18:20:56 UTC 2026 x86_64 User : web63 ( 5058) PHP Version : 7.4.33 Disable Function : create_functions,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/clients/client34/web63/web/wp-content/plugins/pods/classes/widgets/ |
Upload File : |
<?php
/**
* @package Pods\Widgets
*/
class PodsWidgetView extends WP_Widget {
/**
* {@inheritdoc}
*/
public function __construct( $id_base = '', $name = '', $widget_options = array(), $control_options = array() ) {
parent::__construct( 'pods_widget_view', __( 'Pods - View', 'pods' ), array(
'classname' => 'pods_widget_view',
'description' => __( 'Include a file from a theme, with caching options', 'pods' ),
), array( 'width' => 200 ) );
}
/**
* {@inheritdoc}
*/
public function widget( $args, $instance ) {
// Setup basic widget parameters.
$before_widget = pods_v( 'before_widget', $args );
$after_widget = pods_v( 'after_widget', $args );
$before_title = pods_v( 'before_title', $args );
$title = apply_filters( 'widget_title', pods_v( 'title', $instance ) );
$after_title = pods_v( 'after_title', $args );
$before_content = pods_v( 'before_content', $instance );
$after_content = pods_v( 'after_content', $instance );
$args = array(
'view' => trim( (string) pods_v( 'view', $instance, '' ) ),
'expires' => (int) pods_v( 'expires', $instance, ( 60 * 5 ) ),
'cache_mode' => trim( (string) pods_v( 'cache_mode', $instance, 'none', true ) ),
);
if ( 0 < strlen( $args['view'] ) ) {
require PODS_DIR . 'ui/front/widgets.php';
}
}
/**
* {@inheritdoc}
*/
public function update( $new_instance, $old_instance ) {
$instance = $old_instance;
$instance['title'] = pods_v( 'title', $new_instance, '' );
$instance['view'] = pods_v( 'view', $new_instance, '' );
$instance['expires'] = (int) pods_v( 'expires', $new_instance, ( 60 * 5 ) );
$instance['cache_mode'] = pods_v( 'cache_mode', $new_instance, 'none', true );
return $instance;
}
/**
* {@inheritdoc}
*/
public function form( $instance ) {
$title = pods_v( 'title', $instance, '' );
$view = pods_v( 'view', $instance, '' );
$expires = (int) pods_v( 'expires', $instance, ( 60 * 5 ) );
$cache_mode = pods_v( 'cache_mode', $instance, 'none', true );
require PODS_DIR . 'ui/admin/widgets/view.php';
}
}