| Server IP : 39.106.62.82 / Your IP : 216.73.217.128 Web Server : nginx/1.14.1 System : Linux iz2ze1m0zmp2dk5c3j5ap5z 3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,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_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /webdata/gohomesh.com/wp-content/plugins/pods/classes/widgets/ |
Upload File : |
<?php
/**
* @package Pods\Widgets
*/
class PodsWidgetSingle extends WP_Widget {
/**
* {@inheritdoc}
*/
public function __construct( $id_base = '', $name = '', $widget_options = array(), $control_options = array() ) {
parent::__construct( 'pods_widget_single', __( 'Pods - Single Item', 'pods' ), array(
'classname' => 'pods_widget_single',
'description' => __( 'Display a Single Pod Item', '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(
'name' => trim( (string) pods_v( 'pod_type', $instance, '' ) ),
'slug' => trim( (string) pods_v( 'slug', $instance, '' ) ),
'use_current' => trim( (string) pods_v( 'use_current', $instance, '' ) ),
'template' => trim( (string) pods_v( 'template', $instance, '' ) ),
);
$content = trim( (string) pods_v( 'template_custom', $instance, '' ) );
if (
(
(
0 < strlen( $args['name'] )
&& 0 < strlen( $args['slug'] )
)
|| 0 < strlen( $args['use_current'] )
)
&&
(
0 < strlen( $args['template'] )
|| 0 < strlen( $content )
)
) {
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['pod_type'] = pods_v( 'pod_type', $new_instance, '' );
$instance['slug'] = pods_v( 'slug', $new_instance, '' );
$instance['use_current'] = pods_v( 'use_current', $new_instance, '' );
$instance['template'] = pods_v( 'template', $new_instance, '' );
$instance['template_custom'] = pods_v( 'template_custom', $new_instance, '' );
return $instance;
}
/**
* {@inheritdoc}
*/
public function form( $instance ) {
$title = pods_v( 'title', $instance, '' );
$slug = pods_v( 'slug', $instance, '' );
$use_current = pods_v( 'use_current', $instance, '' );
$pod_type = pods_v( 'pod_type', $instance, '' );
$template = pods_v( 'template', $instance, '' );
$template_custom = pods_v( 'template_custom', $instance, '' );
require PODS_DIR . 'ui/admin/widgets/single.php';
}
}