| Server IP : 65.108.144.40 / Your IP : 216.73.217.165 Web Server : Apache/2.4.52 (Ubuntu) System : Linux ubuntu-8gb-hel1-1 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64 User : dev ( 1000) PHP Version : 8.2.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/successkpi/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_form_widget_form {
list-style: none;
padding-left: 0;
margin-left: 0;
}
ol.pods_form_widget_form label {
display: block;
}
</style>
<ol class="pods_form_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 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>
<li>
<label for="<?php echo esc_attr( $this->get_field_id( 'slug' ) ); ?>"><?php esc_html_e( 'ID or Slug', 'pods' ); ?></label>
<input class="widefat" type="text" name="<?php echo esc_attr( $this->get_field_name( 'slug' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'slug' ) ); ?>" value="<?php echo esc_attr( $slug ); ?>" />
</li>
<li>
<label for="<?php echo esc_attr( $this->get_field_id( 'fields' ) ); ?>"><?php esc_html_e( 'Fields (comma-separated)', 'pods' ); ?></label>
<input class="widefat" type="text" name="<?php echo esc_attr( $this->get_field_name( 'fields' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'fields' ) ); ?>" value="<?php echo esc_attr( $fields ); ?>" />
</li>
<li>
<label for="<?php echo esc_attr( $this->get_field_id( 'label' ) ); ?>"><?php esc_html_e( 'Submit Label', 'pods' ); ?></label>
<input class="widefat" type="text" name="<?php echo esc_attr( $this->get_field_name( 'label' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'label' ) ); ?>" value="<?php echo esc_attr( $label ); ?>" />
</li>
<li>
<label for="<?php echo esc_attr( $this->get_field_id( 'thank_you' ) ); ?>"><?php esc_html_e( 'Thank You URL upon submission', 'pods' ); ?></label>
<input class="widefat" type="text" name="<?php echo esc_attr( $this->get_field_name( 'thank_you' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'thank_you' ) ); ?>" value="<?php echo esc_attr( $thank_you ); ?>" />
</li>
</ol>