]> git.mjollnir.org Git - moodle.git/commitdiff
MDL-14978 removed obsoleted make_table()
authorskodak <skodak>
Sun, 25 May 2008 14:28:58 +0000 (14:28 +0000)
committerskodak <skodak>
Sun, 25 May 2008 14:28:58 +0000 (14:28 +0000)
lib/deprecatedlib.php

index 1221c48911159d13603eb98b48f64200f80e4c53..8a2b8a2cdb2f4938849294b3be463391991e5c20 100644 (file)
@@ -205,29 +205,6 @@ function get_recent_enrolments($courseid, $timestart) {
 
 ########### FROM weblib.php ##########################################################################
 
-/**
- * Creates a nicely formatted table and returns it.
- *
- * @param array $table is an object with several properties.
- *     <ul<li>$table->head - An array of heading names.
- *     <li>$table->align - An array of column alignments
- *     <li>$table->size  - An array of column sizes
- *     <li>$table->wrap - An array of "nowrap"s or nothing
- *     <li>$table->data[] - An array of arrays containing the data.
- *     <li>$table->class -  A css class name
- *     <li>$table->fontsize - Is the size of all the text
- *     <li>$table->tablealign  - Align the whole table
- *     <li>$table->width  - A percentage of the page
- *     <li>$table->cellpadding  - Padding on each cell
- *     <li>$table->cellspacing  - Spacing between cells
- * </ul>
- * @return string
- * @todo Finish documenting this function
- */
-function make_table($table) {
-    return print_table($table, true);
-}
-
 
 /**
  * Print a message in a standard themed box.