Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
mahara
mahara
Commits
7ca149b8
Commit
7ca149b8
authored
Nov 14, 2007
by
Penny Leach
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Proof of concept forum interaction plugin (VERY bare bones and needs fleshing out)
But will be a good starting point for Clare.
parent
9beeb7ee
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
36 additions
and
0 deletions
+36
-0
htdocs/interaction/forum/index.php
htdocs/interaction/forum/index.php
+1
-0
htdocs/interaction/forum/lang/en.utf8/interaction.forum.php
htdocs/interaction/forum/lang/en.utf8/interaction.forum.php
+8
-0
htdocs/interaction/forum/lib.php
htdocs/interaction/forum/lib.php
+19
-0
htdocs/interaction/forum/version.php
htdocs/interaction/forum/version.php
+6
-0
htdocs/interaction/forum/view.php
htdocs/interaction/forum/view.php
+2
-0
No files found.
htdocs/interaction/forum/index.php
0 → 100644
View file @
7ca149b8
Viewing
all
forums
in
a
group
go
here
htdocs/interaction/forum/lang/en.utf8/interaction.forum.php
0 → 100644
View file @
7ca149b8
<?php
$string
[
'name'
]
=
'Forum'
;
$string
[
'nameplural'
]
=
'Forums'
;
$string
[
'addtitle'
]
=
'Add forum'
;
$string
[
'edittitle'
]
=
'Edit forum'
;
?>
htdocs/interaction/forum/lib.php
0 → 100644
View file @
7ca149b8
<?php
class
PluginInteractionForum
extends
PluginInteraction
{
public
static
function
instance_config_form
(
$instance
=
null
)
{
return
array
();
}
}
class
InteractionForumInstance
extends
InteractionInstance
{
public
static
function
get_plugin
()
{
return
'forum'
;
}
}
?>
htdocs/interaction/forum/version.php
0 → 100644
View file @
7ca149b8
<?php
$config
->
version
=
2007111300
;
$config
->
release
=
'0.1'
;
?>
htdocs/interaction/forum/view.php
0 → 100644
View file @
7ca149b8
Viewing
an
instance
of
a
forum
goes
here
Write
Preview
Markdown
is supported
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