trusted_on_create_listing
Filter the moderation setting for new listing submissions.
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_listing', function($trust, $params)
{
// Uncomment line below to view available data passed into hook
// fwd_dd($trust, $params);
return $trust;
});
Examples
Trust Users with Published Listings
When a user already has other published listings, then all new listings will be automatically published.
Clickfwd\Hook\Filter::add('trusted_on_create_listing', function($trust, $params)
{
$auth = S2Object::make('auth');
if ( $auth->guest )
{
return $trust;
}
$Model = new S2Model();
$query = sprintf('SELECT count(*) FROM %s WHERE %s = %d AND state = 1', EverywhereComContentModel::_LISTING_TABLE, EverywhereComContentModel::_LISTING_USER_ID, $auth->id);
$count = $Model->query($query,'loadResult');
return $count > 0;
}, 10);
Source Files
/services/authorization/listing_permissions.php