Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mahara
mahara
Commits
38b0946b
Commit
38b0946b
authored
Nov 24, 2006
by
Richard Mansfield
Browse files
Show the name of the community to which a view has been submitted
parent
240498c1
Changes
2
Hide whitespace changes
Inline
Side-by-side
htdocs/view/index.php
View file @
38b0946b
...
...
@@ -31,7 +31,7 @@ $wwwroot = get_config('wwwroot');
$strings
=
array
(
'accessstartdate'
,
'accessenddate'
,
'artefacts'
,
'delete'
,
'description'
,
'editaccess'
,
'editview'
,
'editviewinformation'
,
'submitted'
,
'submitview'
,
'unknownerror'
);
'submitted'
,
'submittedto'
,
'submitview'
,
'unknownerror'
);
$getstring
=
array
();
foreach
(
$strings
as
$string
)
{
$getstring
[
$string
]
=
"'"
.
get_string
(
$string
)
.
"'"
;
...
...
@@ -64,8 +64,8 @@ function title(r, c) {
editaccess.onclick = function () { submitform(r.id, 'editaccess'); };
var del = INPUT({'type':'button','value':{$getstring['delete']}});
del.onclick = function () { submitform(r.id, 'delete'); };
if (r.submitted) {
var assess = {$getstring['submitted']};
if (r.submitted
to
) {
var assess = {$getstring['submitted
to
']}
+ ': ' + r.submittedto
;
}
else {
var assess = assessselect(r.id,c);
...
...
htdocs/view/myviews.json.php
View file @
38b0946b
...
...
@@ -39,12 +39,17 @@ $count = count_records('view', 'owner', $userid);
/* Do this in one query sometime */
$viewdata
=
get_records_array
(
'view'
,
'owner'
,
$userid
,
''
,
'id,title,startdate,enddate,description,submitted'
,
$offset
,
$limit
);
$prefix
=
get_config
(
'dbprefix'
);
$viewdata
=
get_records_sql_array
(
'SELECT v.id,v.title,v.startdate,v.enddate,v.description,c.name
FROM '
.
$prefix
.
'view v
LEFT OUTER JOIN '
.
$prefix
.
'community c ON v.submittedto = c.id
WHERE v.owner = '
.
$userid
,
''
);
//'view', 'owner', $userid, '',
// 'id,title,startdate,enddate,description,submittedto', $offset, $limit);
$viewidlist
=
implode
(
', '
,
array_map
(
create_function
(
'$a'
,
'return $a->id;'
),
$viewdata
));
$prefix
=
get_config
(
'dbprefix'
);
$artefacts
=
get_records_sql_array
(
'SELECT va.view, va.artefact, a.title
FROM '
.
$prefix
.
'view_artefact va
JOIN '
.
$prefix
.
'artefact a ON va.artefact = a.id
...
...
@@ -63,7 +68,7 @@ if ($viewdata) {
$data
[
$i
][
'startdate'
]
=
strftime
(
get_string
(
'strftimedate'
),
strtotime
(
$viewdata
[
$i
]
->
startdate
));
$data
[
$i
][
'enddate'
]
=
strftime
(
get_string
(
'strftimedate'
),
strtotime
(
$viewdata
[
$i
]
->
enddate
));
$data
[
$i
][
'description'
]
=
$viewdata
[
$i
]
->
description
;
$data
[
$i
][
'submitted'
]
=
$viewdata
[
$i
]
->
submitted
;
$data
[
$i
][
'submitted
to
'
]
=
$viewdata
[
$i
]
->
name
;
$data
[
$i
][
'artefacts'
]
=
array
();
}
// Go through all the artefact records and put them in with the
...
...
@@ -80,13 +85,17 @@ if ($viewdata) {
a tutor member. This is the list of communities that the user is
able to submit views to. */
$communitydata
=
get_column
(
'community_member'
,
'community'
,
'member'
,
$userid
)
;
$communityidlist
=
implode
(
', '
,
$communitydata
);
$tutorcommunitydata
=
get_records_sql_array
(
'SELECT c.id, c.name
if
(
$communitydata
=
@
get_column
(
'community_member'
,
'community'
,
'member'
,
$userid
)
)
{
$communityidlist
=
implode
(
', '
,
$communitydata
);
$tutorcommunitydata
=
get_records_sql_array
(
'SELECT c.id, c.name
FROM '
.
$prefix
.
'community c
JOIN '
.
$prefix
.
'community_member cm ON c.id = cm.community
WHERE cm.community IN ('
.
$communityidlist
.
')
AND cm.tutor = 1'
,
''
);
}
if
(
empty
(
$tutorcommunitydata
))
{
$tutorcommunitydata
=
array
();
}
$result
=
array
(
'count'
=>
$count
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment