40 protected array
$data = array();
45 array $a_obj_ids = array(),
51 $this->db = ($db ==
null)
59 $this->
lng->loadLanguageModule(
"like");
68 self::TYPE_LIKE => $this->
lng->txt(
"like_like"),
69 self::TYPE_DISLIKE => $this->
lng->txt(
"like_dislike"),
70 self::TYPE_LOVE => $this->
lng->txt(
"like_love"),
71 self::TYPE_LAUGH => $this->
lng->txt(
"like_laugh"),
72 self::TYPE_ASTOUNDED => $this->
lng->txt(
"like_astounded"),
73 self::TYPE_SAD => $this->
lng->txt(
"like_sad"),
74 self::TYPE_ANGRY => $this->
lng->txt(
"like_angry")
95 int $a_sub_obj_id = 0,
96 string $a_sub_obj_type =
"",
105 $this->data[$a_obj_id][$a_sub_obj_id][$a_sub_obj_type][$a_news_id][$a_like_type][$a_user_id] = 1;
107 if ($a_sub_obj_type ==
"") {
108 $a_sub_obj_type =
"-";
114 "user_id" => array(
"integer", $a_user_id),
115 "obj_id" => array(
"integer", $a_obj_id),
116 "obj_type" => array(
"text", $a_obj_type),
117 "sub_obj_id" => array(
"integer", $a_sub_obj_id),
118 "sub_obj_type" => array(
"text", $a_sub_obj_type),
119 "news_id" => array(
"integer", $a_news_id),
120 "like_type" => array(
"integer", $a_like_type)
144 int $a_sub_obj_id = 0,
145 string $a_sub_obj_type =
"",
154 if (isset($this->data[$a_obj_id][$a_sub_obj_id][$a_sub_obj_type][$a_news_id][$a_like_type][$a_user_id])) {
155 unset($this->data[$a_obj_id][$a_sub_obj_id][$a_sub_obj_type][$a_news_id][$a_like_type][$a_user_id]);
158 if ($a_sub_obj_type ==
"") {
159 $a_sub_obj_type =
"-";
163 "DELETE FROM like_data WHERE " .
164 " user_id = " .
$ilDB->quote($a_user_id,
"integer") .
165 " AND obj_id = " .
$ilDB->quote($a_obj_id,
"integer") .
166 " AND obj_type = " .
$ilDB->quote($a_obj_type,
"text") .
167 " AND sub_obj_id = " .
$ilDB->quote($a_sub_obj_id,
"integer") .
168 " AND sub_obj_type = " .
$ilDB->quote($a_sub_obj_type,
"text") .
169 " AND news_id = " .
$ilDB->quote($a_news_id,
"integer") .
170 " AND like_type = " .
$ilDB->quote($a_like_type,
"integer")
179 array $a_obj_ids = array()
183 foreach ($a_obj_ids as
$id) {
184 $this->data[
$id] = array();
187 $set =
$ilDB->query(
"SELECT * FROM like_data " .
188 " WHERE " .
$ilDB->in(
"obj_id", $a_obj_ids,
false,
"integer") .
189 " ORDER by exp_ts DESC");
190 while ($rec =
$ilDB->fetchAssoc($set)) {
191 $subtype = $rec[
"sub_obj_type"] ==
"-" 193 : $rec[
"sub_obj_type"];
194 $this->data[$rec[
"obj_id"]][$rec[
"sub_obj_id"]][$subtype][$rec[
"news_id"]][$rec[
"like_type"]][$rec[
"user_id"]] =
214 string $sub_obj_type,
217 if (!is_array($this->data[$obj_id])) {
221 if ($sub_obj_type ==
"-") {
228 if (isset($this->data[$obj_id][$sub_obj_id][$sub_obj_type][$news_id][$k])) {
229 $cnt[$k] = count($this->data[$obj_id][$sub_obj_id][$sub_obj_type][$news_id][$k]);
252 int $a_sub_obj_id = 0,
253 string $a_sub_obj_type =
"",
256 if (isset($this->data[$a_obj_id][$a_sub_obj_id][$a_sub_obj_type][$a_news_id][$a_like_type][$a_user_id])) {
270 string $sub_obj_type,
273 if (!is_array($this->data[$obj_id])) {
277 if ($sub_obj_type ==
"-") {
283 if (isset($this->data[$obj_id][$sub_obj_id][$sub_obj_type][$news_id][$k])) {
284 foreach ($this->data[$obj_id][$sub_obj_id][$sub_obj_type][$news_id][$k] as $user => $ts) {
308 ?
string $since_ts =
null 310 if (!is_array($this->data[$obj_id])) {
314 foreach ($this->data[$obj_id] as $sub_obj_id => $si) {
315 foreach ($si as $sub_obj_type => $so) {
316 foreach ($so as $news_id => $ni) {
317 foreach ($ni as $exp_type => $entry) {
318 foreach ($entry as $user => $ts) {
319 if ($since_ts ==
null || $ts > $since_ts) {
321 "sub_obj_id" => $sub_obj_id,
322 "sub_obj_type" => $sub_obj_type,
323 "news_id" => $news_id,
324 "expression" => $exp_type,
getExpressionCounts(int $obj_id, string $obj_type, int $sub_obj_id, string $sub_obj_type, int $news_id)
Get expression counts for obj/subobj/news.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static now()
Return current timestamp in Y-m-d H:i:s format.
loadDataForObjects(array $a_obj_ids=array())
Load data (for objects)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
addExpression(int $a_user_id, int $a_like_type, int $a_obj_id, string $a_obj_type, int $a_sub_obj_id=0, string $a_sub_obj_type="", int $a_news_id=0)
Add expression for a user and object.
getExpressionTypes()
Get types.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
removeExpression(int $a_user_id, int $a_like_type, int $a_obj_id, string $a_obj_type, int $a_sub_obj_id=0, string $a_sub_obj_type="", int $a_news_id=0)
Remove expression for a user and object.
__construct(array $a_obj_ids=array(), ?ilDBInterface $db=null, ?ilLanguage $lng=null)
getExpressionEntriesForObject(int $obj_id, ?string $since_ts=null)
Get expression entries for obj/subobj/news.
getExpressionEntries(int $obj_id, string $obj_type, int $sub_obj_id, string $sub_obj_type, int $news_id)
Get expression entries for obj/subobj/news.
isExpressionSet(int $a_user_id, int $a_like_type, int $a_obj_id, string $a_obj_type, int $a_sub_obj_id=0, string $a_sub_obj_type="", int $a_news_id=0)
Is expression set for a user and object?
static sortArray(array $array, string $a_array_sortby_key, string $a_array_sortorder="asc", bool $a_numeric=false, bool $a_keep_keys=false)