ILIAS
release_4-4 Revision
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
y
+
Files
File List
+
Globals
+
All
$
(
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
o
p
r
s
t
u
v
w
x
+
Variables
$
(
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
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
Services
PermanentLink
classes
class.ilPermanentLink.php
Generated on Mon Dec 21 2020 19:01:22 for ILIAS by
1.8.13 (using
Doxyfile
)