jasonglisson
7/11/2014 - 2:17 PM

Drupal - PHP for making block show up on certain CiviCRM

Drupal - PHP for making block show up on certain CiviCRM

<?php
$match = FALSE;
if (current_path() == 'civicrm/contribute/transact' && isset($_GET['id']) && $_GET['id'] == 46) { $match = TRUE; }
return $match;
?>