[svn r10811] re-add the "Platform Administration" interbreadcrumb

skala
Julian Prud'homme 19 years ago
parent 6596a48833
commit 18a723d77e
  1. 4
      main/admin/class_information.php
  2. 4
      main/admin/class_list.php
  3. 4
      main/admin/configure_homepage.php
  4. 4
      main/admin/course_add.php
  5. 4
      main/admin/course_category.php
  6. 4
      main/admin/course_create_content.php
  7. 4
      main/admin/course_edit.php
  8. 2
      main/admin/course_import.php
  9. 4
      main/admin/course_information.php
  10. 6
      main/admin/course_list.php
  11. 2
      main/admin/course_user_import.php
  12. 4
      main/admin/course_virtual.php
  13. 4
      main/admin/statistics.php
  14. 4
      main/admin/subscribe_class2course.php
  15. 4
      main/admin/subscribe_user2class.php
  16. 4
      main/admin/subscribe_user2course.php
  17. 4
      main/admin/user_add.php
  18. 4
      main/admin/user_export.php
  19. 4
      main/admin/user_import.php
  20. 4
      main/admin/user_information.php
  21. 6
      main/admin/user_list.php

@ -1,4 +1,4 @@
<?php // $Id: class_information.php 10215 2006-11-27 13:57:17Z pcool $
<?php // $Id: class_information.php 10811 2007-01-22 08:26:40Z elixir_julian $
/*
==============================================================================
Dokeos - elearning and course management software
@ -48,7 +48,7 @@ if( !isset($_GET['id']))
{
api_not_allowed();
}
//$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
$interbreadcrumb[] = array ("url" => 'class_list.php', "name" => get_lang('AdminClasses'));
$class_id = $_GET['id'];
$class = ClassManager::get_class_info($class_id);

@ -1,5 +1,5 @@
<?php
// $Id: class_list.php 10215 2006-11-27 13:57:17Z pcool $
// $Id: class_list.php 10811 2007-01-22 08:26:40Z elixir_julian $
/*
==============================================================================
Dokeos - elearning and course management software
@ -95,7 +95,7 @@ require (api_get_path(LIBRARY_PATH).'fileManage.lib.php');
require (api_get_path(LIBRARY_PATH).'classmanager.lib.php');
require_once (api_get_path(LIBRARY_PATH).'formvalidator/FormValidator.class.php');
$tool_name = get_lang('ClassList');
//$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
Display :: display_header($tool_name);
//api_display_tool_title($tool_name);

@ -1,4 +1,4 @@
<?php // $Id: configure_homepage.php 10619 2007-01-09 08:27:30Z bmol $
<?php // $Id: configure_homepage.php 10811 2007-01-22 08:26:40Z elixir_julian $
/*
==============================================================================
Dokeos - elearning and course management software
@ -41,7 +41,7 @@ $tbl_category=Database::get_main_table(TABLE_MAIN_CATEGORY);
$tool_name=get_lang('ConfigureHomePage');
//$interbreadcrumb[]=array('url' => 'index.php',"name" => get_lang('PlatformAdmin'));
$interbreadcrumb[]=array('url' => 'index.php',"name" => get_lang('PlatformAdmin'));
$menu_language=$_SESSION['user_language_choice'];

@ -1,5 +1,5 @@
<?php
// $Id: course_add.php 10215 2006-11-27 13:57:17Z pcool $
// $Id: course_add.php 10811 2007-01-22 08:26:40Z elixir_julian $
/*
==============================================================================
Dokeos - elearning and course management software
@ -47,7 +47,7 @@ require_once (api_get_path(LIBRARY_PATH).'add_course.lib.inc.php');
require_once (api_get_path(LIBRARY_PATH).'formvalidator/FormValidator.class.php');
$table_course = Database::get_main_table(TABLE_MAIN_COURSE);
$tool_name = get_lang('AddCourse');
//$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
/*
==============================================================================

@ -1,4 +1,4 @@
<?php // $Id: course_category.php 10215 2006-11-27 13:57:17Z pcool $
<?php // $Id: course_category.php 10811 2007-01-22 08:26:40Z elixir_julian $
/*
==============================================================================
Dokeos - elearning and course management software
@ -104,7 +104,7 @@ if(!empty($action))
$tool_name=get_lang('AdminCategories');
//$interbreadcrumb[]=array('url' => 'index.php',"name" => get_lang('PlatformAdmin'));
$interbreadcrumb[]=array('url' => 'index.php',"name" => get_lang('PlatformAdmin'));
Display::display_header($tool_name);

@ -1,5 +1,5 @@
<?php
// $Id: course_create_content.php 10215 2006-11-27 13:57:17Z pcool $
// $Id: course_create_content.php 10811 2007-01-22 08:26:40Z elixir_julian $
/*
==============================================================================
Dokeos - elearning and course management software
@ -44,7 +44,7 @@ $this_section=SECTION_PLATFORM_ADMIN;
api_protect_admin_script();
$tool_name = get_lang('DummyCourseCreator');
//$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
Display::display_header($tool_name);
//api_display_tool_title($tool_name);
if( get_setting('server_type') != 'test')

@ -1,6 +1,6 @@
<?php
// $Id: course_edit.php 10215 2006-11-27 13:57:17Z pcool $
// $Id: course_edit.php 10811 2007-01-22 08:26:40Z elixir_julian $
/*
==============================================================================
Dokeos - elearning and course management software
@ -48,7 +48,7 @@ $course_table = Database::get_main_table(TABLE_MAIN_COURSE);
$course_code = isset($_GET['course_code']) ? $_GET['course_code'] : $_POST['code'];
$noPHP_SELF = true;
$tool_name = get_lang('ModifyCourseInfo');
//$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
$interbreadcrumb[] = array ("url" => "course_list.php", "name" => get_lang('AdminCourses'));
/*
-----------------------------------------------------------

@ -159,7 +159,7 @@ if (is_array($extAuthSource))
$tool_name = get_lang('AddCourse').' CSV';
$interbredcrump[] = array ('url' => 'index.php', 'name' => get_lang('PlatformAdmin'));
$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
set_time_limit(0);
Display :: display_header($tool_name);

@ -1,5 +1,5 @@
<?php
// $Id: course_information.php 10215 2006-11-27 13:57:17Z pcool $
// $Id: course_information.php 10811 2007-01-22 08:26:40Z elixir_julian $
/*
==============================================================================
Dokeos - elearning and course management software
@ -82,7 +82,7 @@ if (!isset ($_GET['code']))
{
api_not_allowed();
}
//$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
$interbreadcrumb[] = array ("url" => 'course_list.php', "name" => get_lang('Courses'));
$table_course = Database :: get_main_table(TABLE_MAIN_COURSE);
$code = $_GET['code'];

@ -1,5 +1,5 @@
<?php
// $Id: course_list.php 10637 2007-01-10 10:07:32Z elixir_julian $
// $Id: course_list.php 10811 2007-01-22 08:26:40Z elixir_julian $
/*
==============================================================================
Dokeos - elearning and course management software
@ -147,7 +147,7 @@ if (isset ($_GET['search']) && $_GET['search'] == 'advanced')
{
$categories[$cat['code']] = '('.$cat['code'].') '.$cat['name'];
}
//$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
$interbreadcrumb[] = array ("url" => 'course_list.php', "name" => get_lang('CourseList'));
$tool_name = get_lang('SearchACourse');
Display :: display_header($tool_name);
@ -179,7 +179,7 @@ if (isset ($_GET['search']) && $_GET['search'] == 'advanced')
}
else
{
//$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
$tool_name = get_lang('CourseList');
Display :: display_header($tool_name);
//api_display_tool_title($tool_name);

@ -173,7 +173,7 @@ $errorMsg = '';
$tool_name = get_lang('AddUsersToACourse').' CSV';
$interbredcrump[] = array ('url' => 'index.php', 'name' => get_lang('PlatformAdmin'));
$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
set_time_limit(0);
$form = new FormValidator('course_user_import');

@ -1,4 +1,4 @@
<?php // $Id: course_virtual.php 10215 2006-11-27 13:57:17Z pcool $
<?php // $Id: course_virtual.php 10811 2007-01-22 08:26:40Z elixir_julian $
/*
==============================================================================
Dokeos - elearning and course management software
@ -84,7 +84,7 @@ define ("COURSE_CATEGORY_FORM_NAME" , "course_category");
$tool_name = get_lang('AdminManageVirtualCourses'); // title of the page (should come from the language file)
//$interbreadcrumb[]=array('url' => 'index.php',"name" => get_lang('PlatformAdmin'));
$interbreadcrumb[]=array('url' => 'index.php',"name" => get_lang('PlatformAdmin'));
Display::display_header($tool_name);

@ -1,4 +1,4 @@
<?php // $Id: statistics.php 10215 2006-11-27 13:57:17Z pcool $
<?php // $Id: statistics.php 10811 2007-01-22 08:26:40Z elixir_julian $
/*
==============================================================================
Dokeos - elearning and course management software
@ -42,7 +42,7 @@ api_protect_admin_script();
include_once(api_get_path(LIBRARY_PATH).'fileManage.lib.php');
//$interbreadcrumb[]=array('url' => 'index.php',"name" => get_lang('PlatformAdmin'));
$interbreadcrumb[]=array('url' => 'index.php',"name" => get_lang('PlatformAdmin'));
$tool_name = get_lang('Statistics');
Display::display_header($tool_name);

@ -1,6 +1,6 @@
<?php
// $Id: subscribe_class2course.php 10215 2006-11-27 13:57:17Z pcool $
// $Id: subscribe_class2course.php 10811 2007-01-22 08:26:40Z elixir_julian $
/*
==============================================================================
Dokeos - elearning and course management software
@ -52,7 +52,7 @@ $tbl_class = Database :: get_main_table(TABLE_MAIN_CLASS);
$tool_name = get_lang('AddClassesToACourse');
//$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
Display :: display_header($tool_name);

@ -1,5 +1,5 @@
<?php
// $Id: subscribe_user2class.php 10215 2006-11-27 13:57:17Z pcool $
// $Id: subscribe_user2class.php 10811 2007-01-22 08:26:40Z elixir_julian $
/*
==============================================================================
Dokeos - elearning and course management software
@ -62,7 +62,7 @@ $noPHP_SELF = true;
$tool_name = get_lang('AddUsersToAClass').' ('.$class_name.')';
//$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
$interbreadcrumb[] = array ("url" => "class_list.php?filtreCours=".urlencode($course), "name" => get_lang('AdminClasses'));
if ($_POST['formSent'])

@ -1,5 +1,5 @@
<?php
// $Id: subscribe_user2course.php 10215 2006-11-27 13:57:17Z pcool $
// $Id: subscribe_user2course.php 10811 2007-01-22 08:26:40Z elixir_julian $
/*
==============================================================================
Dokeos - elearning and course management software
@ -71,7 +71,7 @@ $tbl_user = Database :: get_main_table(TABLE_MAIN_USER);
-----------------------------------------------------------
*/
$tool_name = get_lang('AddUsersToACourse');
//$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
Display :: display_header($tool_name);
//api_display_tool_title($tool_name);

@ -1,4 +1,4 @@
<?php // $Id: user_add.php 10215 2006-11-27 13:57:17Z pcool $
<?php // $Id: user_add.php 10811 2007-01-22 08:26:40Z elixir_julian $
/*
==============================================================================
Dokeos - elearning and course management software
@ -63,7 +63,7 @@ if(!empty($_GET['message'])){
$message = urldecode($_GET['message']);
}
//$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
$tool_name = get_lang('AddUsers');
// Create the form
$form = new FormValidator('user_add');

@ -1,5 +1,5 @@
<?php
// $Id: user_export.php 10215 2006-11-27 13:57:17Z pcool $
// $Id: user_export.php 10811 2007-01-22 08:26:40Z elixir_julian $
/*
==============================================================================
Dokeos - elearning and course management software
@ -48,7 +48,7 @@ $course_user_table = Database :: get_main_table(TABLE_MAIN_COURSE_USER);
$tool_name = get_lang('ExportUserListXMLCSV');
//$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
set_time_limit(0);

@ -1,6 +1,6 @@
<?php
// $Id: user_import.php 10215 2006-11-27 13:57:17Z pcool $
// $Id: user_import.php 10811 2007-01-22 08:26:40Z elixir_julian $
/*
==============================================================================
Dokeos - elearning and course management software
@ -296,7 +296,7 @@ if (is_array($extAuthSource))
$tool_name = get_lang('ImportUserListXMLCSV');
//$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
set_time_limit(0);

@ -1,5 +1,5 @@
<?php
// $Id: user_information.php 10215 2006-11-27 13:57:17Z pcool $
// $Id: user_information.php 10811 2007-01-22 08:26:40Z elixir_julian $
/*
==============================================================================
Dokeos - elearning and course management software
@ -41,7 +41,7 @@ $this_section=SECTION_PLATFORM_ADMIN;
api_protect_admin_script();
require_once(api_get_path(LIBRARY_PATH).'course.lib.php');
//$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
$interbreadcrumb[] = array ("url" => 'user_list.php', "name" => get_lang('UserList'));
if( ! isset($_GET['user_id']))
{

@ -1,6 +1,6 @@
<?php
// $Id: user_list.php 10637 2007-01-10 10:07:32Z elixir_julian $
// $Id: user_list.php 10811 2007-01-22 08:26:40Z elixir_julian $
/*
==============================================================================
Dokeos - elearning and course management software
@ -353,7 +353,7 @@ if ($_GET['action'] == "login_as" && isset ($login_as_user_id))
if (isset ($_GET['search']) && $_GET['search'] == 'advanced')
{
//$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
$interbreadcrumb[] = array ("url" => 'user_list.php', "name" => get_lang('UserList'));
$tool_name = get_lang('SearchAUser');
Display :: display_header($tool_name);
@ -381,7 +381,7 @@ if (isset ($_GET['search']) && $_GET['search'] == 'advanced')
}
else
{
//$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
$interbreadcrumb[] = array ("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
$tool_name = get_lang('UserList');
Display :: display_header($tool_name, "");
//api_display_tool_title($tool_name);

Loading…
Cancel
Save