Improving forum title

skala
Julio Montoya 14 years ago
parent 04e658ebad
commit 637316f69e
  1. 17
      main/css/base_chamilo.css
  2. 4
      main/forum/forumfunction.inc.php
  3. 3
      main/forum/forumsearch.php
  4. 14
      main/forum/index.php
  5. 1
      main/forum/reply.php
  6. 19
      main/forum/viewthread_flat.inc.php

@ -810,7 +810,6 @@ input.liteoption {
border: 2px solid #f00;
}
#courseintro {
clear: both;
width: 80%;
@ -1310,6 +1309,7 @@ tr.forum_threadheader td {
font-weight: bold;
background-color: #F7F7F7;
height: 20px;
font-size:20px;
}
.forum_message_post_title_2_be_approved {
/*border-bottom: 1px solid #666666;*/
@ -2877,9 +2877,9 @@ span.form_required {
border-collapse: collapse;
width: 100%;
padding: 5px;
border-left: 1px solid gray;
border-top: 1px solid gray;
border-right: 1px solid gray;
border-left: 1px solid #ccc;
border-top: 1px solid #ccc;
border-right: 1px solid #ccc;
padding:5px;
}
@ -2894,7 +2894,7 @@ span.form_required {
border-collapse: collapse;
width: 100%;
padding: 5px;
border: 1px solid gray;
border: 1px solid #ccc;
margin-bottom:15px;
}
@ -2902,12 +2902,10 @@ span.form_required {
padding:5px;
text-align: left;
font-size:14px;
}
.forum_table th {
padding-right: 12px;
/*border: 1px solid gray;*/
background-color: #E5EDF9;
}
.forum_table tr.row_odd {
@ -2922,13 +2920,14 @@ span.form_required {
.forum_table td {
padding: 5px;
vertical-align: top;
border-bottom: 1px solid #b0b0b0;
border-bottom: 1px solid #ccc;
border-right: 1px dotted #e1e1e1;
border-left: 1px dotted #e1e1e1;
border-top: 1px solid #ccc;
}
.post {
border: 1px solid gray;
border: 1px solid #ccc;
margin-bottom:5px;
}

@ -3398,7 +3398,9 @@ function search_link() {
$return = '';
if ($origin != 'learnpath') {
$return = '<a href="forumsearch.php?'.api_get_cidreq().'&amp;gidReq='.Security::remove_XSS($_GET['gidReq']).'&amp;action=search&amp;origin='.$origin.'"> '.Display::return_icon('search.png', get_lang('Search'),'','32').'</a>';
$return = '<a href="forumsearch.php?'.api_get_cidreq().'&amp;gidReq='.Security::remove_XSS($_GET['gidReq']).'&amp;action=search&amp;origin='.$origin.'"> ';
$return .= Display::return_icon('search.png', get_lang('Search'),'','32').'</a>';
if (!empty($_GET['search'])) {
$return .= ': '.Security::remove_XSS($_GET['search']).' ';
$url = api_get_self().'?';

@ -75,7 +75,8 @@ if ($origin == 'group') {
$interbreadcrumb[] = array('url' => 'forumsearch.php','name' => get_lang('ForumSearch'));
} else {
$interbreadcrumb[] = array('url' => 'index.php?gradebook='.$gradebook.'', 'name' => $nameTools);
$interbreadcrumb[] = array('url' => 'forumsearch.php', 'name' => get_lang('ForumSearch'));
//$interbreadcrumb[] = array('url' => 'forumsearch.php', 'name' => );
$nameTools = get_lang('ForumSearch');
}
// Display the header.

@ -80,19 +80,23 @@ if (!empty($gradebook) && $gradebook == 'view') {
}
$search_forum = isset($_GET['search']) ? Security::remove_XSS($_GET['search']) : '';
$interbreadcrumb[] = array('url' => 'index.php?gradebook='.$gradebook.'&amp;search='.$search_forum, 'name' => $nameTools);
if (isset($_GET['action']) && $_GET['action'] == 'add') {
switch ($_GET['content']) {
case 'forum':
$interbreadcrumb[] = array('url' => 'index.php?gradebook='.$gradebook.'&amp;search='.$search_forum, 'name' => $nameTools);
$interbreadcrumb[] = array('url' => api_get_self().'?'.api_get_cidreq().'&amp;gradebook='.$gradebook.'&amp;action=add&amp;content=forum', 'name' => get_lang('AddForum'));
break;
case 'forumcategory':
$interbreadcrumb[] = array('url' => 'index.php?gradebook='.$gradebook.'&amp;search='.$search_forum, 'name' => $nameTools);
$interbreadcrumb[] = array('url' => api_get_self().'?'.api_get_cidreq().'&amp;gradebook='.$gradebook.'&amp;action=add&amp;content=forumcategory', 'name' => get_lang('AddForumCategory'));
break;
default:
default:
break;
}
} else {
$interbreadcrumb[] = array('url' => '#', 'name' => $nameTools);
}
Display::display_header('');
@ -182,13 +186,15 @@ echo '<div class="actions">';
if (!empty($_GET['lp_id']) || !empty($_POST['lp_id'])){
echo "<a href=\"../newscorm/lp_controller.php?".api_get_cidreq()."&gradebook=&action=add_item&type=step&lp_id=".$lp_id."#resource_tab-5\">".Display::return_icon('back.png', get_lang("BackTo").' '.get_lang("LearningPaths"),'','32')."</a>";
}
echo '<span>'.search_link().'</span>';
if (!empty($forum_list)) {
echo search_link();
}
if (api_is_allowed_to_edit(false, true)) {
echo '<a href="'.api_get_self().'?'.api_get_cidreq().'&amp;gradebook='.$gradebook.'&amp;action=add&amp;content=forumcategory&amp;lp_id='.$lp_id.'"> '.Display::return_icon('new_folder.png', get_lang('AddForumCategory'),'','32').'</a>';
if (is_array($forum_categories_list) and !empty($forum_categories_list)) {
echo '<a href="'.api_get_self().'?'.api_get_cidreq().'&amp;gradebook='.$gradebook.'&amp;action=add&amp;content=forum&amp;lp_id='.$lp_id.'"> '.Display::return_icon('new_forum.png', get_lang('AddForum'),'','32').'</a>';
}
//echo ' | <a href="forum_migration.php">'.get_lang('MigrateForum').'</a>';
}
echo '</div>';

@ -115,7 +115,6 @@ if ($origin == 'learnpath') {
} else {
// The last element of the breadcrumb navigation is already set in interbreadcrumb, so give an empty string.
Display :: display_header('');
api_display_tool_title($nameTools);
}
/* Is the user allowed here? */

@ -30,16 +30,9 @@ if (isset($current_thread['thread_id'])){
$messageclass='forum_message_post_text';
$leftclass='forum_message_left';
}
echo '<thead>';
echo '<tr>';
echo '<th class="forum_head" colspan="2">'.prepare4display($row['post_title'])."</th>";
echo '</tr>';
echo '</thead>';
echo "<tr>";
//echo "<td rowspan=\"3\" class=\"$leftclass\">";
echo "<td rowspan=\"2\" class=\"$leftclass\">";
echo "<td rowspan=\"3\" class=\"$leftclass\">";
if ($row['user_id']=='0') {
$name=prepare4display($row['poster_name']);
} else {
@ -123,9 +116,15 @@ if (isset($current_thread['thread_id'])){
// The post title
echo "</tr>";
// The post title
echo "<tr>";
echo Display::tag('td', prepare4display($row['post_title']), array('class'=>'forum_message_post_title'));
echo "</tr>";
// The post message
echo "<tr>";
// see comments inside forumfunction.inc.php to lower filtering and allow more visual changes
echo "<td class=\"$messageclass\">".prepare4display($row['post_text'])."</td>";
echo "</tr>";

Loading…
Cancel
Save