19 declare(strict_types=0);
32 $num_required_postings = $frm_properties->getLpReqNumPostings();
34 if (
null === $num_required_postings) {
39 $frm->setForumId($frm_properties->getObjId());
40 $statistics = $frm->getUserStatistics(
41 $frm_properties->isPostActivationEnabled()
45 static function (array $statisic):
int {
46 return (
int) $statisic[
'pos_author_id'];
50 static function (array $statistic) use (
51 $num_required_postings
53 return (
int) $statistic[
'num_postings'] >= $num_required_postings;
64 $num_required_postings = $frm_properties->getLpReqNumPostings();
66 if (
null === $num_required_postings) {
71 $frm->setForumId($frm_properties->getObjId());
72 $statistics = $frm->getUserStatistics(
73 $frm_properties->isPostActivationEnabled()
77 static function (array $statisic):
int {
78 return (
int) $statisic[
'pos_author_id'];
82 static function (array $statistic) use (
83 $num_required_postings
85 $num_user_postings = (
int) $statistic[
'num_postings'];
86 return $num_user_postings > 0 && $num_user_postings < $num_required_postings;
97 $status = self::LP_STATUS_NOT_ATTEMPTED_NUM;
100 $num_required_postings = $frm_properties->getLpReqNumPostings();
102 if (
null === $num_required_postings) {
107 $frm->setForumId($frm_properties->getObjId());
109 $num_postings = $frm->getNumberOfPublishedUserPostings(
111 $frm_properties->isPostActivationEnabled()
113 if ($num_postings >= $num_required_postings) {
114 $status = self::LP_STATUS_COMPLETED_NUM;
115 } elseif ($num_postings > 0) {
116 $status = self::LP_STATUS_IN_PROGRESS_NUM;
static _getInProgress(int $a_obj_id)
static _getCompleted(int $a_obj_id)
static getInstance(int $a_obj_id=0)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Class ilLPStatusContributionToDiscussion.
determineStatus(int $a_obj_id, int $a_usr_id, ?object $a_obj=null)