mirror of
https://github.com/moodle/moodle.git
synced 2025-03-14 04:30:15 +01:00
_ added the div framework
This commit is contained in:
parent
0befd376af
commit
08bcdcbea2
@ -27,6 +27,8 @@
|
||||
|
||||
print_header_simple("$strwikis", "", "$strwikis", "", "", true, "", navmenu($course));
|
||||
|
||||
echo '<div id="wiki-index" class="mwiki">'; // wiki-index wrapper start
|
||||
|
||||
/// Get all the appropriate data
|
||||
|
||||
if (! $wikis = get_all_instances_in_course("wiki", $course)) {
|
||||
@ -99,6 +101,8 @@
|
||||
|
||||
/// Finish the page
|
||||
|
||||
echo '</div>'; // wiki-index wrapper end
|
||||
|
||||
print_footer($course);
|
||||
|
||||
?>
|
||||
|
@ -232,6 +232,8 @@
|
||||
|
||||
|
||||
/// Print Page
|
||||
echo ' <div id="wikiPageActions">
|
||||
';
|
||||
|
||||
/// The top row contains links to other wikis, if applicable.
|
||||
if ($wiki_list = wiki_get_other_wikis($wiki, $USER, $course, $wiki_entry->id)) {
|
||||
@ -292,6 +294,10 @@
|
||||
echo '</tr></table>';
|
||||
}
|
||||
|
||||
echo '</div>
|
||||
<div id="wiki-view" class="mwiki">
|
||||
';
|
||||
|
||||
if($ewiki_title==$wiki_entry->pagename && !empty($wiki->summary)) {
|
||||
if (trim(strip_tags($wiki->summary))) {
|
||||
print "<br />";
|
||||
@ -342,5 +348,9 @@
|
||||
echo "<br clear=\"all\" />";
|
||||
|
||||
/// Finish the page
|
||||
echo '
|
||||
</div>
|
||||
';
|
||||
|
||||
print_footer($course);
|
||||
?>
|
||||
|
Loading…
x
Reference in New Issue
Block a user