ILIAS
release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
◀ ilDoc Overview
class.ilPermanentLink.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
4
8
class
ilPermanentLink
{
9
10
public
static
function
getActiveBookmarks
() {
11
global
$ilDB
;
12
13
$q =
'SELECT sbm_title, sbm_link, sbm_icon, sbm_active FROM bookmark_social_bm WHERE sbm_active = 1 ORDER BY sbm_title'
;
14
$rset = $ilDB->query($q);
15
16
$rows = array();
17
18
while
(
$row
= $ilDB->fetchObject($rset))
19
$rows[] =
$row
;
20
21
return
$rows;
22
}
23
24
}
ilPermanentLink
Definition:
class.ilPermanentLink.php:8
ilPermanentLink\getActiveBookmarks
static getActiveBookmarks()
Definition:
class.ilPermanentLink.php:10
$row
$row
Definition:
examplelayouts.sql.php:26
$ilDB
global $ilDB
Definition:
storeScorm2004.php:16
Services
PermanentLink
classes
class.ilPermanentLink.php
Generated on Wed Aug 27 2025 19:01:01 for ILIAS by
1.8.13 (using
Doxyfile
)