ILIAS
Release_4_1_x_branch Revision 61804
◀ ilDoc Overview
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
Examples
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Groups
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
}
Services
PermanentLink
classes
class.ilPermanentLink.php
Generated on Thu Apr 21 2016 19:02:59 for ILIAS by
1.8.1.2 (using
Doxyfile
)