2 // index.php - the front page.
4 if (!file_exists('./config.php')) {
5 header('Location: install.php');
9 /// Bounds for block widths on this page
10 define('BLOCK_L_MIN_WIDTH', 160);
11 define('BLOCK_L_MAX_WIDTH', 210);
12 define('BLOCK_R_MIN_WIDTH', 160);
13 define('BLOCK_R_MAX_WIDTH', 210);
15 require_once('config.php');
16 require_once($CFG->dirroot
.'/course/lib.php');
17 require_once($CFG->dirroot
.'/lib/blocklib.php');
20 redirect($CFG->wwwroot
.'/'. $CFG->admin
.'/index.php');
23 if ($CFG->forcelogin
) {
28 if (moodle_needs_upgrading()) {
29 redirect($CFG->wwwroot
.'/'. $CFG->admin
.'/index.php');
33 if (get_moodle_cookie() == '') {
34 set_moodle_cookie('nobody'); // To help search for cookies on login page
37 if (!empty($USER->id
)) {
38 add_to_log(SITEID
, 'course', 'view', 'view.php?id='.SITEID
, SITEID
);
41 if (empty($CFG->langmenu
)) {
44 $currlang = current_language();
45 $langs = get_list_of_languages();
46 $langmenu = popup_form ($CFG->wwwroot
.'/index.php?lang=', $langs, 'chooselang', $currlang, '', '', '', true);
49 $PAGE = page_create_object(PAGE_COURSE_VIEW
, SITEID
);
50 $pageblocks = blocks_setup($PAGE);
51 $editing = $PAGE->user_is_editing();
52 $preferred_width_left = bounded_number(BLOCK_L_MIN_WIDTH
, blocks_preferred_width($pageblocks[BLOCK_POS_LEFT
]),
54 $preferred_width_right = bounded_number(BLOCK_R_MIN_WIDTH
, blocks_preferred_width($pageblocks[BLOCK_POS_RIGHT
]),
57 print_header(strip_tags($SITE->fullname
), $SITE->fullname
, 'home', '',
58 '<meta name="description" content="'. s(strip_tags($SITE->summary
)) .'" />',
59 true, '', user_login_string($SITE).$langmenu);
64 <table id
="layout-table">
68 if (blocks_have_content($pageblocks, BLOCK_POS_LEFT
) ||
$editing) {
69 echo '<td style="width: '.$preferred_width_left.'px;" id="left-column">';
70 blocks_print_group($PAGE, $pageblocks, BLOCK_POS_LEFT
);
74 echo '<td id="middle-column">';
78 if ($SITE->numsections
> 0) {
80 if (!$section = get_record('course_sections', 'course', $SITE->id
, 'section', 1)) {
81 delete_records('course_sections', 'course', $SITE->id
, 'section', 1); // Just in case
82 $section->course
= $SITE->id
;
83 $section->section
= 1;
84 $section->summary
= '';
85 $section->sequence
= '';
86 $section->visible
= 1;
87 $section->id
= insert_record('course_sections', $section);
90 if (!empty($section->sequence
) or !empty($section->summary
) or $editing) {
91 print_simple_box_start('center', '100%', '', 5, 'sitetopic');
93 /// If currently moving a file then show the current clipboard
94 if (ismoving($SITE->id
)) {
95 $stractivityclipboard = strip_tags(get_string('activityclipboard', '', addslashes($USER->activitycopyname
)));
96 echo '<p><font size="2">';
97 echo "$stractivityclipboard (<a href=\"course/mod.php?cancelcopy=true&sesskey=$USER->sesskey\">". get_string('cancel') .'</a>)';
102 $options->noclean
= true;
103 echo format_text($section->summary
, FORMAT_HTML
, $options);
106 $streditsummary = get_string('editsummary');
107 echo "<a title=\"$streditsummary\" ".
108 " href=\"course/editsection.php?id=$section->id\"><img src=\"$CFG->pixpath/t/edit.gif\" ".
109 " height=\"11\" width=\"11\" border=\"0\" alt=\"$streditsummary\" /></a><br /><br />";
112 get_all_mods($SITE->id
, $mods, $modnames, $modnamesplural, $modnamesused);
113 print_section($SITE, $section, $mods, $modnamesused, true);
116 print_section_add_menus($SITE, $section->section
, $modnames);
118 print_simple_box_end();
122 if (isloggedin() and !isguest() and isset($CFG->frontpageloggedin
)) {
123 $frontpagelayout = $CFG->frontpageloggedin
;
125 $frontpagelayout = $CFG->frontpage
;
128 foreach (explode(',',$frontpagelayout) as $v) {
129 switch ($v) { /// Display the main part of the front page.
130 case strval(FRONTPAGENEWS
):
131 if ($SITE->newsitems
) { // Print forums only when needed
132 require_once($CFG->dirroot
.'/mod/forum/lib.php');
134 if (! $newsforum = forum_get_course_forum($SITE->id
, 'news')) {
135 error('Could not find or create a main news forum for the site');
138 if (isset($USER->id
)) {
139 $SESSION->fromdiscussion
= $CFG->wwwroot
;
140 if (forum_is_subscribed($USER->id
, $newsforum->id
)) {
141 $subtext = get_string('unsubscribe', 'forum');
143 $subtext = get_string('subscribe', 'forum');
145 $headertext = '<table width="100%" border="0" cellspacing="0" cellpadding="0"><tr>'.
146 '<td><div class="title">'.$newsforum->name
.'</div></td>'.
147 '<td><div class="link"><a href="mod/forum/subscribe.php?id='.$newsforum->id
.'">'.$subtext.'</a></div></td>'.
150 $headertext = $newsforum->name
;
153 print_heading_block($headertext);
154 forum_print_latest_discussions($SITE, $newsforum, $SITE->newsitems
, 'plain', 'p.modified DESC');
158 case FRONTPAGECOURSELIST
:
160 if (isloggedin() and !isadmin() and !isguest() and empty($CFG->disablemycourses
)) {
161 print_heading_block(get_string('mycourses'));
163 } else if ((!isadmin() and !isguest()) or (count_records('course') <= FRONTPAGECOURSELIMIT
)) {
164 // admin should not see list of courses when there are too many of them
165 print_heading_block(get_string('availablecourses'));
166 print_courses(0, '100%', true);
170 case FRONTPAGECATEGORYNAMES
:
172 print_heading_block(get_string('categories'));
173 print_simple_box_start('center', '100%', '', 5, 'categorybox');
174 print_whole_category_list(NULL, NULL, NULL, -1, false);
175 print_simple_box_end();
176 print_course_search('', false, 'short');
179 case FRONTPAGECATEGORYCOMBO
:
181 print_heading_block(get_string('categories'));
182 print_simple_box_start('center', '100%', '', 5, 'categorybox');
183 print_whole_category_list(NULL, NULL, NULL, -1, true);
184 print_simple_box_end();
185 print_course_search('', false, 'short');
188 case FRONTPAGETOPICONLY
: // Do nothing!! :-)
199 if (blocks_have_content($pageblocks, BLOCK_POS_RIGHT
) ||
$editing ||
isadmin()) {
200 echo '<td style="width: '.$preferred_width_right.'px;" id="right-column">';
202 echo '<div align="center">'.update_course_icon($SITE->id
).'</div>';
205 blocks_print_group($PAGE, $pageblocks, BLOCK_POS_RIGHT
);
214 print_footer('home'); // Please do not modify this line