Adding sortabletable.class.php Feature #272

skala
Julio Montoya 16 years ago
parent 464a70c541
commit ecf96f6bff
  1. 2
      main/blog/blog_admin.php
  2. 1
      main/glossary/index.php
  3. 2
      main/gradebook/lib/be.inc.php
  4. 3
      main/inc/lib/message.lib.php

@ -13,6 +13,8 @@
$language_file = "blog";
require_once '../inc/global.inc.php';
require_once api_get_path(LIBRARY_PATH).'sortabletable.class.php';
$this_section=SECTION_COURSES;
$blog_table_attachment = Database::get_course_table(TABLE_BLOGS_ATTACHMENT);

@ -11,6 +11,7 @@ $language_file = array('glossary');
// including the global dokeos file
require_once '../inc/global.inc.php';
require_once api_get_path(LIBRARY_PATH).'sortabletable.class.php';
require_once(api_get_path(LIBRARY_PATH).'glossary.lib.php');
// the section (tabs)

@ -2,9 +2,11 @@
/* For licensing terms, see /license.txt */
// include this file to have access to all backend classes
// @author Bert Steppé
require_once api_get_path(LIBRARY_PATH).'sortabletable.class.php';
require_once ('be/gradebookitem.class.php');
require_once ('be/category.class.php');
require_once ('be/evaluation.class.php');
require_once ('be/result.class.php');
require_once ('be/linkfactory.class.php'); // this contains the include declarations
// to all link classes

@ -13,6 +13,7 @@ require_once api_get_path(LIBRARY_PATH).'fileUpload.lib.php';
require_once api_get_path(LIBRARY_PATH).'fileDisplay.lib.php';
require_once api_get_path(LIBRARY_PATH).'usermanager.lib.php';
require_once api_get_path(LIBRARY_PATH).'group_portal_manager.lib.php';
require_once api_get_path(LIBRARY_PATH).'sortabletable.class.php';
/*
* @todo use constants!
@ -201,7 +202,7 @@ class MessageManager
}
/**
* save message for social network
* Save message for social network
* @param int receiver user id
* @param string subject
* @param string content

Loading…
Cancel
Save