ILIAS
release_4-4 Revision
◀ 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
Services
PermanentLink
classes
class.ilPermanentLink.php
Generated on Mon Dec 21 2020 19:01:22 for ILIAS by
1.8.13 (using
Doxyfile
)