listing_user_reviews_open

Filter Hook Listing Permissions

Allows closing user review submissions.

Parameters

$open

(boolean)

$params

(array) associative array with contextual data

You need to have a working knowledge of Hooks before you get started.

Boilerplate Code

Use the boilerplate code to start using the filter, and add your own logic to modify the first argument and return it.

Clickfwd\Hook\Filter::add('listing_user_reviews_open', function($open, $params) 
{
  // Uncomment line below to view available data passed into hook
  // For JReviews 3.x and earlier use dd instead of fwd_dd
  // fwd_dd($open, $params);
  
  return $open;
});
Development & Support
Customizations are not included with support. We provide this information to make it easier for developers to extend the functionality. From time to time we may have some availability for custom work. Get in touch to see if there's an opportunity to work together.

Examples

Control Open State Using a Custom Field

Allows listing owners, or admins if field is set to admin only, to control the user review open state for individual listings.

jr_reviewsopen is a radio field with yes and no option values. Reviews are left open, unless set to no.

Clickfwd\Hook\Filter::add('listing_user_reviews_open', function($open, $params)
{
  $listing = $params['listing'];
 
  $fieldName = 'jr_reviewsopen';
  
  if (empty($listing['Field']['pairs'][$fieldName]))
  {
    return $open;
  }
 
  return $listing['Field']['pairs'][$fieldName]['value'][0] !== 'no';
}, 10);

Source

  • /services/authorization/listing_permissions.php