| Server IP : 198.38.94.13 / Your IP : 216.73.217.33 Web Server : Apache System : Linux d4744.dxb1.stableserver.net 5.14.0-611.49.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Apr 21 16:39:08 EDT 2026 x86_64 User : revivere ( 1140) PHP Version : 8.2.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/revivere/www/wp-content/plugins/pods/ui/admin/widgets/ |
Upload File : |
<?php
// Don't load directly.
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}
// phpcs:ignoreFile WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound
?>
<style type="text/css">
ol.pods_list_widget_form {
list-style: none;
padding-left: 0;
margin-left: 0;
}
ol.pods_list_widget_form label {
display: block;
}
</style>
<p><em><?php esc_html_e( 'You must specify a Pods Template or create a custom template, using <a href="https://docs.pods.io/displaying-pods/magic-tags/" title="Using Magic Tags" target="_blank" rel="noopener noreferrer">magic tags</a>.', 'pods'); ?></p></em>
<ol class="pods_list_widget_form">
<li>
<label for="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>"><?php esc_html_e( 'Title', 'pods' ); ?></label>
<input type="text" class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'title' ) ); ?>" value="<?php echo esc_attr( $title ); ?>" />
</li>
<li>
<?php
$api = pods_api();
$all_pods = $api->load_pods( array( 'names' => true ) );
?>
<label for="<?php echo esc_attr( $this->get_field_id( 'pod_type' ) ); ?>">
<?php esc_html_e( 'Pod', 'pods' ); ?>
</label>
<?php if ( 0 < count( $all_pods ) ): ?>
<select id="<?php echo esc_attr( $this->get_field_id( 'pod_type' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'pod_type' ) ); ?>">
<?php foreach ( $all_pods as $pod_name => $pod_label ): ?>
<option value="<?php echo esc_attr( $pod_name ); ?>"<?php selected( $pod_name, $pod_type ); ?>>
<?php echo esc_html( $pod_label . ' (' . $pod_name . ')' ); ?>
</option>
<?php endforeach; ?>
</select>
<?php else: ?>
<strong class="red"><?php esc_html_e( 'None Found', 'pods' ); ?></strong>
<?php endif; ?>
</li>
<?php
if ( class_exists( 'Pods_Templates' ) ) {
?>
<li>
<?php
$all_templates = (array) $api->load_templates( array() );
?>
<label for="<?php echo esc_attr( $this->get_field_id( 'template' ) ); ?>"><?php esc_html_e( 'Template', 'pods' ); ?> </label>
<select name="<?php echo esc_attr( $this->get_field_name( 'template' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'template' ) ); ?>">
<option value="">- <?php esc_html_e( 'Custom Template', 'pods' ); ?> -</option>
<?php foreach ( $all_templates as $tpl ): ?>
<option value="<?php echo esc_attr( $tpl[ 'name' ] ); ?>"<?php selected( $tpl[ 'name' ], $template ); ?>>
<?php echo esc_html( $tpl[ 'name' ] ); ?>
</option>
<?php endforeach; ?>
</select>
</li>
<?php
}
else {
?>
<li>
<label for="<?php echo esc_attr( $this->get_field_id( 'template' ) ); ?>"><?php esc_html_e( 'Template', 'pods' ); ?> </label>
<input class="widefat" type="text" id="<?php echo esc_attr( $this->get_field_id( 'template' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'template' ) ); ?>" value="<?php echo esc_attr( $template ); ?>" />
</li>
<?php
}
?>
<li>
<label for="<?php echo esc_attr( $this->get_field_id( 'before_content' ) ); ?>"><?php esc_html_e( 'Before Content', 'pods' ); ?></label>
<input type="text" class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'before_content' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'before_content' ) ); ?>" value="<?php echo esc_attr( $before_content ); ?>" />
</li>
<li>
<label for="<?php echo esc_attr( $this->get_field_id( 'template_custom' ) ); ?>"><?php esc_html_e( 'Custom Template', 'pods' ); ?></label>
<textarea name="<?php echo esc_attr( $this->get_field_name( 'template_custom' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'template_custom' ) ); ?>" cols="10" rows="10" class="widefat"><?php echo esc_html( $template_custom ); ?></textarea>
</li>
<li>
<label for="<?php echo esc_attr( $this->get_field_id( 'after_content' ) ); ?>"><?php esc_html_e( 'After Content', 'pods' ); ?></label>
<input type="text" class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'after_content' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'after_content' ) ); ?>" value="<?php echo esc_attr( $after_content ); ?>" />
</li>
<li>
<label for="<?php echo esc_attr( $this->get_field_id( 'limit' ) ); ?>"><?php esc_html_e( 'Limit', 'pods' ); ?></label>
<input class="widefat" type="text" id="<?php echo esc_attr( $this->get_field_id( 'limit' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'limit' ) ); ?>" value="<?php echo esc_attr( $limit ); ?>" />
</li>
<li>
<label for="<?php echo esc_attr( $this->get_field_id( 'orderby' ) ); ?>"><?php esc_html_e( 'Order By', 'pods' ); ?></label>
<input class="widefat" type="text" id="<?php echo esc_attr( $this->get_field_id( 'orderby' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'orderby' ) ); ?>" value="<?php echo esc_attr( $orderby ); ?>" />
</li>
<li>
<label for="<?php echo esc_attr( $this->get_field_id( 'where' ) ); ?>"><?php esc_html_e( 'Where', 'pods' ); ?></label>
<input class="widefat" type="text" id="<?php echo esc_attr( $this->get_field_id( 'where' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'where' ) ); ?>" value="<?php echo esc_attr( $where ); ?>" />
</li>
<li>
<label for="<?php echo esc_attr( $this->get_field_id( 'cache_mode' ) ); ?>"><?php esc_html_e( 'Cache Type', 'pods' ); ?></label>
<?php
$cache_modes = array(
'none' => __( 'Disable Caching', 'pods' ),
'cache' => __( 'Object Cache', 'pods' ),
'transient' => __( 'Transient', 'pods' ),
'site-transient' => __( 'Site Transient', 'pods' )
);
?>
<select id="<?php echo esc_attr( $this->get_field_id( 'cache_mode' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'cache_mode' ) ); ?>">
<?php foreach ( $cache_modes as $cache_mode_option => $cache_mode_label ): ?>
<option value="<?php echo esc_attr( $cache_mode_option ); ?>"<?php selected( $cache_mode_option, $cache_mode ); ?>>
<?php echo esc_html( $cache_mode_label ); ?>
</option>
<?php endforeach; ?>
</select>
</li>
<li>
<label for="<?php echo esc_attr( $this->get_field_id( 'expires' ) ); ?>"><?php esc_html_e( 'Cache Expiration (in seconds)', 'pods' ); ?></label>
<input class="widefat" type="text" name="<?php echo esc_attr( $this->get_field_name( 'expires' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'expires' ) ); ?>" value="<?php echo esc_attr( $expires ); ?>" />
</li>
</ol>