# easy-hotel/2.0.2/admin/includes/framework/fields/gallery/gallery.php

Easy Hotel – Powerful Hotel Booking, version 2.0.2. 60 lines.

- Page: https://pluginprobe.com/plugins/easy-hotel/2.0.2/code/admin/includes/framework/fields/gallery/gallery.php
- Raw: https://pluginprobe.com/plugins/easy-hotel/2.0.2/raw/admin/includes/framework/fields/gallery/gallery.php
- Modified: 2026-06-15T17:21:30+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/easy-hotel/2.0.2/code/admin/includes/framework/fields/gallery/gallery.php#L10-L20`.

```php
<?php if ( ! defined( 'ABSPATH' ) ) { die; } // Cannot access directly.
/**
 *
 * Field: gallery
 *
 * @since 1.0.0
 * @version 1.0.0
 *
 */
if ( ! class_exists( 'ESHB_Field_gallery' ) ) {
  class ESHB_Field_gallery extends ESHB_Fields {

    public function __construct( $field, $value = '', $unique = '', $where = '', $parent = '' ) {
      parent::__construct( $field, $value, $unique, $where, $parent );
    }

    public function render() {

      $args = wp_parse_args( $this->field, array(
        'add_title'   => esc_html__( 'Add Gallery', 'easy-hotel' ),
        'edit_title'  => esc_html__( 'Edit Gallery', 'easy-hotel' ),
        'clear_title' => esc_html__( 'Clear', 'easy-hotel' ),
      ) );

        $gal = $this->value;

    


      $hidden = ( empty( $this->value ) ) ? ' hidden' : '';

      echo wp_kses_post($this->field_before());

      echo '<ul>';
      if ( ! empty( $this->value ) ) {

        $values = explode( ',', $this->value );

        foreach ( $values as $id ) {
          $attachment = wp_get_attachment_image_src( $id, 'thumbnail' );
          if($attachment){
            echo '<li><img src="'. esc_url( $attachment[0] ) .'" /></li>';
          }
        }

      }
      echo '</ul>';

      echo '<a href="#" class="button button-primary csf-button">'. esc_html($args['add_title']) .'</a>';
      echo '<a href="#" class="button csf-edit-gallery'. esc_attr( $hidden ) .'">'. esc_html($args['edit_title']) .'</a>';
      echo '<a href="#" class="button csf-warning-primary csf-clear-gallery'. esc_attr( $hidden ) .'">'. esc_html($args['clear_title']) .'</a>';
      echo '<input type="hidden" name="'. esc_attr( $this->field_name() ) .'" value="'. esc_attr( $this->value ) .'"'. esc_attr($this->field_attributes()) .'/>';

      echo wp_kses_post($this->field_after());

    }

  }
}

```
