JReviews logo Docs
Menu
Version

trusted_on_create_editor_review

Filter the moderation setting for new editor reviews.

Filter
Review Permissions

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

Parameters

Name Type Description
$trust parameter (boolean)
$params parameter (array) associative array with contextual data

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('trusted_on_create_editor_review', function($trust, $params)
{
    // Uncomment line below to view available data passed into hook
    // fwd_dd($trust, $params);

    return $trust;
});
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

Trust New Editor Reviews from Users with Published Reviews

Automatically publish new editor reviews submitted by reviewers with published reviews.

function trust_published_reviewers($trust, $params)
{
  $auth = S2Object::make('auth');
 
  if ( $auth->guest )
  {
      return $trust;
  }
   
  $Model = new S2Model();

  $query = sprintf('SELECT count(*) FROM #__jreviews_comments WHERE userid = %d AND published = 1', $auth->id);

  $count = $Model->query($query,'loadResult');

  if ( $count > 0 )
  {
    return true;
  }  
  
  return $trust;
}
 
Clickfwd\Hook\Filter::add('trusted_on_create_editor_review', 'trust_published_reviewers', 10);

Source Files

  • /services/authorization/review_permissions.php