repo.or.cz
/
elgg_plugins.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Simple status box for the sidebar.
[elgg_plugins.git]
/
yui
/
yui_userdetails.php
blob
4f07087314dacaf92e03b1d2bb2da113b11cbd79
1
<
?php
2
3
// Get the user preferences for the editor
4
5
// Userid
6
$id
= (
int
)
$parameter
;
7
8
// Editor is enabled by default
9
$value
=
"yes"
;
10
11
// Query result
12
if
(
$result
=
user_flag_get
(
'my_uses_YUI'
,
$id
)) {
13
$value
=
$result
;
14
}
15
16
$run_result
=
$value
;
17
?
>
18