Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jhoughtelin/9c4e61a1f72dca6ba59a to your computer and use it in GitHub Desktop.
Save jhoughtelin/9c4e61a1f72dca6ba59a to your computer and use it in GitHub Desktop.
Book Now Button on Results List
<?php if(isset($_GET['search']['arrival']) && isset($_GET['search']['departure'])) : ?>
<a href="<?php echo site_url() . "/vrp/book/step1?obj[Arrival]=".$_GET['search']['arrival']."&obj[Departure]=".$_GET['search']['departure']."&obj[PropID]=".$a_unit->id;?>"
data-unit="<?php echo $a_unit->id; ?>"
class="button small">
<i class="fa fa-fw fa-lg fa-calendar"></i>
Reserve now
</a>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment