AnsPress_Reputation_Query::get_events_with_zero_points()
Description #
Get events having zero points.
Source #
File: includes/reputation.php
public function get_events_with_zero_points() {
foreach ( (array) $this->events as $slug => $args ) {
if ( 0 === $args['points'] ) {
$this->with_zero_points[] = $slug;
}
}
}
Expand full source code Collapse full source code View on GitHub: includes/reputation.php:661
Add your comment