Habari\Comments::by_status PHP Method

by_status() public static method

select all comments of a given status
public static by_status ( integer $status ) : array
$status integer a status value
return array an array of Comment objects with the same status
    public static function by_status($status = 0)
    {
        return self::get(array('status' => $status, 'nolimit' => 1, 'orderby' => 'date ASC'));
    }