You are here

bat_booking_example_book_this_field.inc in Booking and Availability Management Tools for Drupal 7

File

modules/bat_booking/bat_booking_example/views/bat_booking_example_book_this_field.inc
View source
<?php

/**
 * @file
 */

/**
 *
 */
class bat_booking_example_book_this_field extends entity_views_handler_field_text {

  /**
   *
   */
  public function render($values) {
    if (isset($_GET['bat_start_date']) && isset($_GET['bat_end_date'])) {
      return l(t('Book this'), 'booking/' . $_GET['bat_start_date'] . '/' . $_GET['bat_end_date'] . '/' . $values->entity);
    }
    else {
      return '<em>' . t('Insert dates to book') . '</em>';
    }
  }

}