trusted_on_create_video

Filter Hook Media Permissions

Filter the moderation setting for video uploads.

Parameters

$trust

(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('trusted_on_create_video', function($trust, $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($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 Photo Uploads From Users With Published Media

If you want to use this approach for all types of media, you can use the same callback function trust_published_media_users for all media type filters.

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

  	$Model = new S2Model();
 
  	$query = sprintf('SELECT count(*) FROM #__jreviews_media WHERE user_id = %d AND published = 1 AND approved = 1', $auth->id);
 
    $count = $Model->query($query,'loadResult');
 
    if ( $count > 0 )
    {
        return true;
    }
 
    return $trust;
}
 
Clickfwd\Hook\Filter::add('trusted_on_create_video', 'trust_published_media_users', 10);

Source

  • /services/authorization/media_permissions.php