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
12da89fe
Commit
12da89fe
authored
Aug 28, 2008
by
Richard Mansfield
Browse files
More descriptive headings for group tabs
parent
97b415f0
Changes
3
Hide whitespace changes
Inline
Side-by-side
htdocs/artefact/file/groupfiles.php
View file @
12da89fe
...
...
@@ -65,7 +65,7 @@ $smarty = smarty(
'group'
=>
$group
,
)
);
$smarty
->
assign
(
'heading'
,
$group
->
name
);
$smarty
->
assign
(
'heading'
,
$group
->
name
.
' - '
.
get_string
(
'Files'
,
'artefact.file'
)
);
$smarty
->
assign
(
'groupid'
,
$groupid
);
$smarty
->
assign
(
'grouptabs'
,
group_get_menu_tabs
(
$group
));
$smarty
->
assign
(
'INLINEJAVASCRIPT'
,
$javascript
);
...
...
htdocs/theme/default/templates/group/members.tpl
View file @
12da89fe
...
...
@@ -2,7 +2,7 @@
{
include
file
=
"sidebar.tpl"
}
{
include
file
=
"columnleftstart.tpl"
}
<h2>
{
$group
->
name
|
escape
}
</h2>
<h2>
{
$group
->
name
|
escape
}
-
{
str
tag
=
'Members'
section
=
'group'
}
</h2>
<form
action=
"
{
$WWWROOT
}
group/members.php"
method=
"post"
>
<input
type=
"hidden"
id=
"groupid"
name=
"id"
value=
"
{
$group
->
id
|
escape
}
"
>
...
...
htdocs/view/groupviews.php
View file @
12da89fe
...
...
@@ -51,7 +51,7 @@ $shared = param_boolean('shared', 0) && $member;
$can_edit
=
group_user_can_edit_views
(
$groupid
);
$smarty
=
smarty
(
array
(),
array
(),
array
(),
array
(
'group'
=>
$group
));
$smarty
->
assign
(
'heading'
,
$group
->
name
);
$smarty
->
assign
(
'heading'
,
$group
->
name
.
' - '
.
get_string
(
'views'
)
);
if
(
$can_edit
)
{
$data
=
View
::
get_myviews_data
(
$limit
,
$offset
,
$groupid
);
...
...
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