[svn r15674] Fixed the breadcrumb in My courses-> course administration see FS#2642

skala
Julio Montoya 17 years ago
parent 5c8ae425b2
commit eeafed5bf7
  1. 26
      main/auth/courses.php
  2. 12
      main/create_course/add_course.php

@ -1,9 +1,9 @@
<?php // $Id: courses.php 14406 2008-02-27 21:53:15Z yannoo $
<?php // $Id: courses.php 15674 2008-07-01 16:04:43Z juliomontoya $
/*
==============================================================================
Dokeos - elearning and course management software
Copyright (c) 2004 Dokeos S.A.
Copyright (c) 2004-2008 Dokeos SPRL
Copyright (c) 2003 Ghent University (UGent)
Copyright (c) 2001 Universite catholique de Louvain (UCL)
Copyright (c) various contributors
@ -18,7 +18,8 @@
See the GNU General Public License for more details.
Contact: Dokeos, 181 rue Royale, B-1000 Brussels, Belgium, info@dokeos.com
Contact address: Dokeos, rue du Corbeau, 108, B-1030 Brussels, Belgium
Mail: info@dokeos.com
==============================================================================
*/
/**
@ -37,6 +38,9 @@
// name of the language file that needs to be included
$language_file = 'courses';
//delete the globals["_cid"] we don't need it here
$cidReset = true; // Flag forcing the 'current course' reset
// including the global file
include('../inc/global.inc.php');
@ -63,6 +67,7 @@ $tbl_user = Database::get_main_table(TABLE_MAIN_USER);
$safe = array();
$safe['action'] = '';
$actions = array('sortmycourses','createcoursecategory','subscribe','deletecoursecategory','unsubscribe');
if(in_array(htmlentities($_GET['action']),$actions))
{
$safe['action'] = htmlentities($_GET['action']);
@ -71,7 +76,7 @@ if(in_array(htmlentities($_GET['action']),$actions))
// title of the page
if ($safe['action'] == 'sortmycourses' OR !isset($safe['action']))
{
$nameTools = get_lang("SortMyCourses");
$nameTools = get_lang('SortMyCourses');
}
if ($safe['action'] == 'createcoursecategory')
{
@ -79,11 +84,20 @@ if ($safe['action'] == 'createcoursecategory')
}
if ($safe['action'] == 'subscribe')
{
$nameTools = get_lang("SubscribeToCourse");
$nameTools = get_lang('SubscribeToCourse');
}
// breadcrumbs
$interbreadcrumb[] = array('name'=> get_lang('CourseManagement'), 'url'=>'courses.php');
$interbreadcrumb[] = array('url'=>api_get_path(WEB_PATH).'user_portal.php', 'name'=> get_lang('MyCourses'));
if (empty($nameTools))
{
$nameTools=get_lang('CourseManagement');
}
else
{
$interbreadcrumb[] = array('url'=>api_get_path(WEB_PATH).'main/auth/courses.php', 'name'=> get_lang('CourseManagement'));
}
// Displaying the header
Display::display_header($nameTools);

@ -1,10 +1,10 @@
<?php
// $Id: add_course.php 15568 2008-06-12 05:23:42Z yannoo $
// $Id: add_course.php 15674 2008-07-01 16:04:43Z juliomontoya $
/*
==============================================================================
Dokeos - elearning and course management software
Copyright (c) 2004-2005 Dokeos S.A.
Copyright (c) 2004-2008 Dokeos SPRL
Copyright (c) 2003 Ghent University (UGent)
Copyright (c) 2001 Universite catholique de Louvain (UCL)
Copyright (c) 2005 Bart Mollet, Hogeschool Gent
@ -19,8 +19,8 @@
See the GNU General Public License for more details.
Contact address: Dokeos, 44 rue des palais, B-1030 Brussels, Belgium
Mail: info@dokeos.com
Contact address: Dokeos, rue du Corbeau, 108, B-1030 Brussels, Belgium
Mail: info@dokeos.com
==============================================================================
*/
/**
@ -35,6 +35,9 @@
// name of the language file that needs to be included
$language_file = "create_course";
//delete the globals["_cid"] we don't need it here
$cidReset = true; // Flag forcing the 'current course' reset
// including the global file
include ('../inc/global.inc.php');
@ -52,6 +55,7 @@ include_once (api_get_path(LIBRARY_PATH).'fileManage.lib.php');
include_once (api_get_path(LIBRARY_PATH).'formvalidator/FormValidator.class.php');
include_once (api_get_path(CONFIGURATION_PATH).'course_info.conf.php');
$interbreadcrumb[] = array('url'=>api_get_path(WEB_PATH).'user_portal.php', 'name'=> get_lang('MyCourses'));
// Displaying the header
$tool_name = get_lang('CreateSite');
Display :: display_header($tool_name);

Loading…
Cancel
Save