From 8ef42632d2fd5a4da3eb8cf77b14d7776e1af642 Mon Sep 17 00:00:00 2001 From: Petr Skoda Date: Sat, 17 Mar 2012 19:31:36 +0100 Subject: [PATCH] MDL-29515 finally drop 1.9 DML and DDL from deprecatedlib.php --- lib/deprecatedlib.php | 1059 ----------------------------------------- 1 file changed, 1059 deletions(-) diff --git a/lib/deprecatedlib.php b/lib/deprecatedlib.php index eed77e964e5..714efb884f0 100644 --- a/lib/deprecatedlib.php +++ b/lib/deprecatedlib.php @@ -832,1069 +832,10 @@ function error($message, $link='') { } -/// Deprecated DDL functions, to be removed soon /// -/** - * @deprecated - * @global object - * @param string $table - * @return bool - */ -function table_exists($table) { - global $DB; - debugging('Deprecated ddllib function used!'); - return $DB->get_manager()->table_exists($table); -} - -/** - * @deprecated - * @global object - * @param string $table - * @param string $field - * @return bool - */ -function field_exists($table, $field) { - global $DB; - debugging('Deprecated ddllib function used!'); - return $DB->get_manager()->field_exists($table, $field); -} - -/** - * @deprecated - * @global object - * @param string $table - * @param string $index - * @return bool - */ -function find_index_name($table, $index) { - global $DB; - debugging('Deprecated ddllib function used!'); - return $DB->get_manager()->find_index_name($table, $index); -} - -/** - * @deprecated - * @global object - * @param string $table - * @param string $index - * @return bool - */ -function index_exists($table, $index) { - global $DB; - debugging('Deprecated ddllib function used!'); - return $DB->get_manager()->index_exists($table, $index); -} - -/** - * @deprecated - * @global object - * @param string $table - * @param string $xmldb_key - * @return bool - */ -function find_key_name($table, $xmldb_key) { - global $DB; - debugging('Deprecated ddllib function used!'); - return $DB->get_manager()->find_key_name($table, $xmldb_key); -} - -/** - * @deprecated - * @global object - * @param string $table - * @return bool - */ -function drop_table($table) { - global $DB; - debugging('Deprecated ddllib function used!'); - $DB->get_manager()->drop_table($table); - return true; -} - -/** - * @deprecated - * @global object - * @param string $file - * @return bool - */ -function install_from_xmldb_file($file) { - global $DB; - debugging('Deprecated ddllib function used!'); - $DB->get_manager()->install_from_xmldb_file($file); - return true; -} - -/** - * @deprecated - * @global object - * @param string $table - * @return bool - */ -function create_table($table) { - global $DB; - debugging('Deprecated ddllib function used!'); - $DB->get_manager()->create_table($table); - return true; -} - -/** - * @deprecated - * @global object - * @param string $table - * @return bool - */ -function create_temp_table($table) { - global $DB; - debugging('Deprecated ddllib function used!'); - $DB->get_manager()->create_temp_table($table); - return true; -} - -/** - * @deprecated - * @global object - * @param string $table - * @param string $newname - * @return bool - */ -function rename_table($table, $newname) { - global $DB; - debugging('Deprecated ddllib function used!'); - $DB->get_manager()->rename_table($table, $newname); - return true; -} - -/** - * @deprecated - * @global object - * @param string $table - * @param string $field - * @return bool - */ -function add_field($table, $field) { - global $DB; - debugging('Deprecated ddllib function used!'); - $DB->get_manager()->add_field($table, $field); - return true; -} - -/** - * @deprecated - * @global object - * @param string $table - * @param string $field - * @return bool - */ -function drop_field($table, $field) { - global $DB; - debugging('Deprecated ddllib function used!'); - $DB->get_manager()->drop_field($table, $field); - return true; -} - -/** - * @deprecated - * @global object - * @param string $table - * @param string $field - * @return bool - */ -function change_field_type($table, $field) { - global $DB; - debugging('Deprecated ddllib function used!'); - $DB->get_manager()->change_field_type($table, $field); - return true; -} - -/** - * @deprecated - * @global object - * @param string $table - * @param string $field - * @return bool - */ -function change_field_precision($table, $field) { - global $DB; - debugging('Deprecated ddllib function used!'); - $DB->get_manager()->change_field_precision($table, $field); - return true; -} - -/** - * @deprecated - * @global object - * @param string $table - * @param string $field - * @return bool - */ -function change_field_unsigned($table, $field) { - global $DB; - debugging('Deprecated ddllib function used!'); - $DB->get_manager()->change_field_unsigned($table, $field); - return true; -} - -/** - * @deprecated - * @global object - * @param string $table - * @param string $field - * @return bool - */ -function change_field_notnull($table, $field) { - global $DB; - debugging('Deprecated ddllib function used!'); - $DB->get_manager()->change_field_notnull($table, $field); - return true; -} - -/** - * @deprecated - * @global object - * @param string $table - * @param string $field - * @return bool - */ -function change_field_default($table, $field) { - global $DB; - debugging('Deprecated ddllib function used!'); - $DB->get_manager()->change_field_default($table, $field); - return true; -} - -/** - * @deprecated - * @global object - * @param string $table - * @param string $field - * @param string $newname - * @return bool - */ -function rename_field($table, $field, $newname) { - global $DB; - debugging('Deprecated ddllib function used!'); - $DB->get_manager()->rename_field($table, $field, $newname); - return true; -} - -/** - * @deprecated - * @global object - * @param string $table - * @param string $key - * @return bool - */ -function add_key($table, $key) { - global $DB; - debugging('Deprecated ddllib function used!'); - $DB->get_manager()->add_key($table, $key); - return true; -} - -/** - * @deprecated - * @global object - * @param string $table - * @param string $key - * @return bool - */ -function drop_key($table, $key) { - global $DB; - debugging('Deprecated ddllib function used!'); - $DB->get_manager()->drop_key($table, $key); - return true; -} - -/** - * @deprecated - * @global object - * @param string $table - * @param string $key - * @param string $newname - * @return bool - */ -function rename_key($table, $key, $newname) { - global $DB; - debugging('Deprecated ddllib function used!'); - $DB->get_manager()->rename_key($table, $key, $newname); - return true; -} - -/** - * @deprecated - * @global object - * @param string $table - * @param string $index - * @return bool - */ -function add_index($table, $index) { - global $DB; - debugging('Deprecated ddllib function used!'); - $DB->get_manager()->add_index($table, $index); - return true; -} - -/** - * @deprecated - * @global object - * @param string $table - * @param string $index - * @return bool - */ -function drop_index($table, $index) { - global $DB; - debugging('Deprecated ddllib function used!'); - $DB->get_manager()->drop_index($table, $index); - return true; -} - -/** - * @deprecated - * @global object - * @param string $table - * @param string $index - * @param string $newname - * @return bool - */ -function rename_index($table, $index, $newname) { - global $DB; - debugging('Deprecated ddllib function used!'); - $DB->get_manager()->rename_index($table, $index, $newname); - return true; -} - - ////////////////////////// /// removed functions //// ////////////////////////// -/** - * @deprecated - * @param mixed $mixed - * @return void Throws an error and does nothing - */ -function stripslashes_safe($mixed) { - error('stripslashes_safe() not available anymore'); -} -/** - * @deprecated - * @param mixed $var - * @return void Throws an error and does nothing - */ -function stripslashes_recursive($var) { - error('stripslashes_recursive() not available anymore'); -} -/** - * @deprecated - * @param mixed $dataobject - * @return void Throws an error and does nothing - */ -function addslashes_object($dataobject) { - error('addslashes_object() not available anymore'); -} -/** - * @deprecated - * @param mixed $var - * @return void Throws an error and does nothing - */ -function addslashes_recursive($var) { - error('addslashes_recursive() not available anymore'); -} -/** - * @deprecated - * @param mixed $command - * @param bool $feedback - * @return void Throws an error and does nothing - */ -function execute_sql($command, $feedback=true) { - error('execute_sql() not available anymore'); -} -/** - * @deprecated use $DB->record_exists_select() instead - * @see moodle_database::record_exists_select() - * @param mixed $table - * @param mixed $select - * @return void Throws an error and does nothing - */ -function record_exists_select($table, $select='') { - error('record_exists_select() not available anymore'); -} -/** - * @deprecated use $DB->record_exists_sql() instead - * @see moodle_database::record_exists_sql() - * @param mixed $sql - * @return void Throws an error and does nothing - */ -function record_exists_sql($sql) { - error('record_exists_sql() not available anymore'); -} -/** - * @deprecated use $DB->count_records_select() instead - * @see moodle_database::count_records_select() - * @param mixed $table - * @param mixed $select - * @param mixed $countitem - * @return void Throws an error and does nothing - */ -function count_records_select($table, $select='', $countitem='COUNT(*)') { - error('count_records_select() not available anymore'); -} -/** - * @deprecated use $DB->count_records_sql() instead - * @see moodle_database::count_records_sql() - * @param mixed $sql - * @return void Throws an error and does nothing - */ -function count_records_sql($sql) { - error('count_records_sql() not available anymore'); -} -/** - * @deprecated use $DB->get_record_sql() instead - * @see moodle_database::get_record_sql() - * @param mixed $sql - * @param bool $expectmultiple - * @param bool $nolimit - * @return void Throws an error and does nothing - */ -function get_record_sql($sql, $expectmultiple=false, $nolimit=false) { - error('get_record_sql() not available anymore'); -} -/** - * @deprecated use $DB->get_record_select() instead - * @see moodle_database::get_record_select() - * @param mixed $table - * @param mixed $select - * @param mixed $fields - * @return void Throws an error and does nothing - */ -function get_record_select($table, $select='', $fields='*') { - error('get_record_select() not available anymore'); -} -/** - * @deprecated use $DB->get_recordset() instead - * @see moodle_database::get_recordset() - * @param mixed $table - * @param mixed $field - * @param mixed $value - * @param mixed $sort - * @param mixed $fields - * @param mixed $limitfrom - * @param mixed $limitnum - * @return void Throws an error and does nothing - */ -function get_recordset($table, $field='', $value='', $sort='', $fields='*', $limitfrom='', $limitnum='') { - error('get_recordset() not available anymore'); -} -/** - * @deprecated use $DB->get_recordset_sql() instead - * @see moodle_database::get_recordset_sql() - * @param mixed $sql - * @param mixed $limitfrom - * @param mixed $limitnum - * @return void Throws an error and does nothing - */ -function get_recordset_sql($sql, $limitfrom=null, $limitnum=null) { - error('get_recordset_sql() not available anymore'); -} -/** - * @deprecated - * @param mixed $rs - * @return void Throws an error and does nothing - */ -function rs_fetch_record(&$rs) { - error('rs_fetch_record() not available anymore'); -} -/** - * @deprecated - * @param mixed $rs - * @return void Throws an error and does nothing - */ -function rs_next_record(&$rs) { - error('rs_next_record() not available anymore'); -} -/** - * @deprecated - * @param mixed $rs - * @return void Throws an error and does nothing - */ -function rs_fetch_next_record(&$rs) { - error('rs_fetch_next_record() not available anymore'); -} -/** - * @deprecated - * @param mixed $rs - * @return void Throws an error and does nothing - */ -function rs_EOF($rs) { - error('rs_EOF() not available anymore'); -} -/** - * @deprecated - * @param mixed $rs - * @return void Throws an error and does nothing - */ -function rs_close(&$rs) { - error('rs_close() not available anymore'); -} -/** - * @deprecated use $DB->get_records_select() instead - * @see moodle_database::get_records_select() - * @param mixed $table - * @param mixed $select - * @param mixed $sort - * @param mixed $fields - * @param mixed $limitfrom - * @param mixed $limitnum - * @return void Throws an error and does nothing - */ -function get_records_select($table, $select='', $sort='', $fields='*', $limitfrom='', $limitnum='') { - error('get_records_select() not available anymore'); -} -/** - * @deprecated use $DB->get_field_select() instead - * @see moodle_database::get_field_select() - * @param mixed $table - * @param mixed $return - * @param mixed $select - * @return void Throws an error and does nothing - */ -function get_field_select($table, $return, $select) { - error('get_field_select() not available anymore'); -} -/** - * @deprecated use $DB->get_field_sql() instead - * @see moodle_database::get_field_sql() - * @param mixed $sql - * @return void Throws an error and does nothing - */ -function get_field_sql($sql) { - error('get_field_sql() not available anymore'); -} -/** - * @deprecated use $DB->delete_records_select() instead - * @see moodle_database::delete_records_select() - * @param mixed $sql - * @param mixed $select - * @return void Throws an error and does nothing - */ -function delete_records_select($table, $select='') { - error('get_field_sql() not available anymore'); -} -/** - * @deprecated - * @return void Throws an error and does nothing - */ -function configure_dbconnection() { - error('configure_dbconnection() removed'); -} -/** - * @deprecated - * @param mixed $field - * @return void Throws an error and does nothing - */ -function sql_max($field) { - error('sql_max() removed - use normal sql MAX() instead'); -} -/** - * @deprecated - * @return void Throws an error and does nothing - */ -function sql_as() { - error('sql_as() removed - do not use AS for tables at all'); -} -/** - * @deprecated - * @param mixed $page - * @param mixed $recordsperpage - * @return void Throws an error and does nothing - */ -function sql_paging_limit($page, $recordsperpage) { - error('Function sql_paging_limit() is deprecated. Replace it with the correct use of limitfrom, limitnum parameters'); -} -/** - * @deprecated - * @return void Throws an error and does nothing - */ -function db_uppercase() { - error('upper() removed - use normal sql UPPER()'); -} -/** - * @deprecated - * @return void Throws an error and does nothing - */ -function db_lowercase() { - error('upper() removed - use normal sql LOWER()'); -} -/** - * @deprecated - * @param mixed $sqlfile - * @param mixed $sqlstring - * @return void Throws an error and does nothing - */ -function modify_database($sqlfile='', $sqlstring='') { - error('modify_database() removed - use new XMLDB functions'); -} -/** - * @deprecated - * @param mixed $field1 - * @param mixed $value1 - * @param mixed $field2 - * @param mixed $value2 - * @param mixed $field3 - * @param mixed $value3 - * @return void Throws an error and does nothing - */ -function where_clause($field1='', $value1='', $field2='', $value2='', $field3='', $value3='') { - error('where_clause() removed - use new functions with $conditions parameter'); -} -/** - * @deprecated - * @param mixed $sqlarr - * @param mixed $continue - * @param mixed $feedback - * @return void Throws an error and does nothing - */ -function execute_sql_arr($sqlarr, $continue=true, $feedback=true) { - error('execute_sql_arr() removed'); -} -/** - * @deprecated use $DB->get_records_list() instead - * @see moodle_database::get_records_list() - * @param mixed $table - * @param mixed $field - * @param mixed $values - * @param mixed $sort - * @param mixed $fields - * @param mixed $limitfrom - * @param mixed $limitnum - * @return void Throws an error and does nothing - */ -function get_records_list($table, $field='', $values='', $sort='', $fields='*', $limitfrom='', $limitnum='') { - error('get_records_list() removed'); -} -/** - * @deprecated use $DB->get_recordset_list() instead - * @see moodle_database::get_recordset_list() - * @param mixed $table - * @param mixed $field - * @param mixed $values - * @param mixed $sort - * @param mixed $fields - * @param mixed $limitfrom - * @param mixed $limitnum - * @return void Throws an error and does nothing - */ -function get_recordset_list($table, $field='', $values='', $sort='', $fields='*', $limitfrom='', $limitnum='') { - error('get_recordset_list() removed'); -} -/** - * @deprecated use $DB->get_records_menu() instead - * @see moodle_database::get_records_menu() - * @param mixed $table - * @param mixed $field - * @param mixed $value - * @param mixed $sort - * @param mixed $fields - * @param mixed $limitfrom - * @param mixed $limitnum - * @return void Throws an error and does nothing - */ -function get_records_menu($table, $field='', $value='', $sort='', $fields='*', $limitfrom='', $limitnum='') { - error('get_records_menu() removed'); -} -/** - * @deprecated use $DB->get_records_select_menu() instead - * @see moodle_database::get_records_select_menu() - * @param mixed $table - * @param mixed $select - * @param mixed $sort - * @param mixed $fields - * @param mixed $limitfrom - * @param mixed $limitnum - * @return void Throws an error and does nothing - */ -function get_records_select_menu($table, $select='', $sort='', $fields='*', $limitfrom='', $limitnum='') { - error('get_records_select_menu() removed'); -} -/** - * @deprecated use $DB->get_records_sql_menu() instead - * @see moodle_database::get_records_sql_menu() - * @param mixed $sql - * @param mixed $limitfrom - * @param mixed $limitnum - * @return void Throws an error and does nothing - */ -function get_records_sql_menu($sql, $limitfrom='', $limitnum='') { - error('get_records_sql_menu() removed'); -} -/** - * @deprecated - * @param mixed $table - * @param mixed $column - * @return void Throws an error and does nothing - */ -function column_type($table, $column) { - error('column_type() removed'); -} -/** - * @deprecated - * @param mixed $rs - * @return void Throws an error and does nothing - */ -function recordset_to_menu($rs) { - error('recordset_to_menu() removed'); -} -/** - * @deprecated - * @param mixed $records - * @param mixed $field1 - * @param mixed $field2 - * @return void Throws an error and does nothing - */ -function records_to_menu($records, $field1, $field2) { - error('records_to_menu() removed'); -} -/** - * @deprecated use $DB->set_field_select() instead - * @see moodle_database::set_field_select() - * @param mixed $table - * @param mixed $newfield - * @param mixed $newvalue - * @param mixed $select - * @param mixed $localcall - * @return void Throws an error and does nothing - */ -function set_field_select($table, $newfield, $newvalue, $select, $localcall = false) { - error('set_field_select() removed'); -} -/** - * @deprecated use $DB->get_fieldset_select() instead - * @see moodle_database::get_fieldset_select() - * @param mixed $table - * @param mixed $return - * @param mixed $select - * @return void Throws an error and does nothing - */ -function get_fieldset_select($table, $return, $select) { - error('get_fieldset_select() removed'); -} -/** - * @deprecated use $DB->get_fieldset_sql() instead - * @see moodle_database::get_fieldset_sql() - * @param mixed $sql - * @return void Throws an error and does nothing - */ -function get_fieldset_sql($sql) { - error('get_fieldset_sql() removed'); -} -/** - * @deprecated use $DB->sql_like() instead - * @see moodle_database::sql_like() - * @return void Throws an error and does nothing - */ -function sql_ilike() { - error('sql_ilike() not available anymore'); -} -/** - * @deprecated - * @param mixed $first - * @param mixed $last - * @return void Throws an error and does nothing - */ -function sql_fullname($first='firstname', $last='lastname') { - error('sql_fullname() not available anymore'); -} -/** - * @deprecated - * @return void Throws an error and does nothing - */ -function sql_concat() { - error('sql_concat() not available anymore'); -} -/** - * @deprecated - * @return void Throws an error and does nothing - */ -function sql_empty() { - error('sql_empty() not available anymore'); -} -/** - * @deprecated - * @return void Throws an error and does nothing - */ -function sql_substr() { - error('sql_substr() not available anymore'); -} -/** - * @deprecated - * @param mixed $int1 - * @param mixed $int2 - * @return void Throws an error and does nothing - */ -function sql_bitand($int1, $int2) { - error('sql_bitand() not available anymore'); -} -/** - * @deprecated - * @param mixed $int1 - * @return void Throws an error and does nothing - */ -function sql_bitnot($int1) { - error('sql_bitnot() not available anymore'); -} -/** - * @deprecated - * @param mixed $int1 - * @param mixed $int2 - * @return void Throws an error and does nothing - */ -function sql_bitor($int1, $int2) { - error('sql_bitor() not available anymore'); -} -/** - * @deprecated - * @param mixed $int1 - * @param mixed $int2 - * @return void Throws an error and does nothing - */ -function sql_bitxor($int1, $int2) { - error('sql_bitxor() not available anymore'); -} -/** - * @deprecated - * @param mixed $fieldname - * @param mixed $text - * @return void Throws an error and does nothing - */ -function sql_cast_char2int($fieldname, $text=false) { - error('sql_cast_char2int() not available anymore'); -} -/** - * @deprecated - * @param mixed $fieldname - * @param mixed $numchars - * @return void Throws an error and does nothing - */ -function sql_compare_text($fieldname, $numchars=32) { - error('sql_compare_text() not available anymore'); -} -/** - * @deprecated - * @param mixed $fieldname - * @param mixed $numchars - * @return void Throws an error and does nothing - */ -function sql_order_by_text($fieldname, $numchars=32) { - error('sql_order_by_text() not available anymore'); -} -/** - * @deprecated - * @param mixed $fieldname - * @return void Throws an error and does nothing - */ -function sql_length($fieldname) { - error('sql_length() not available anymore'); -} -/** - * @deprecated - * @param mixed $separator - * @param mixed $elements - * @return void Throws an error and does nothing - */ -function sql_concat_join($separator="' '", $elements=array()) { - error('sql_concat_join() not available anymore'); -} -/** - * @deprecated - * @param mixed $tablename - * @param mixed $fieldname - * @param mixed $nullablefield - * @param mixed $textfield - * @return void Throws an error and does nothing - */ -function sql_isempty($tablename, $fieldname, $nullablefield, $textfield) { - error('sql_isempty() not available anymore'); -} -/** - * @deprecated - * @param mixed $tablename - * @param mixed $fieldname - * @param mixed $nullablefield - * @param mixed $textfield - * @return void Throws an error and does nothing - */ -function sql_isnotempty($tablename, $fieldname, $nullablefield, $textfield) { - error('sql_isnotempty() not available anymore'); -} -/** - * @deprecated - * @return void Throws an error and does nothing - */ -function begin_sql() { - error('begin_sql() not available anymore'); -} -/** - * @deprecated - * @return void Throws an error and does nothing - */ -function commit_sql() { - error('commit_sql() not available anymore'); -} -/** - * @deprecated - * @return void Throws an error and does nothing - */ -function rollback_sql() { - error('rollback_sql() not available anymore'); -} -/** - * @deprecated use $DB->insert_record() instead - * @see moodle_database::insert_record() - * @param mixed $table - * @param mixed $dataobject - * @param mixed $returnid - * @param mixed $primarykey - * @return void Throws an error and does nothing - */ -function insert_record($table, $dataobject, $returnid=true, $primarykey='id') { - error('insert_record() not available anymore'); -} -/** - * @deprecated use $DB->update_record() instead - * @see moodle_database::update_record() - * @param mixed $table - * @param mixed $dataobject - * @return void Throws an error and does nothing - */ -function update_record($table, $dataobject) { - error('update_record() not available anymore'); -} -/** - * @deprecated use $DB->get_records() instead - * @see moodle_database::get_records() - * @param mixed $table - * @param mixed $field - * @param mixed $value - * @param mixed $sort - * @param mixed $fields - * @param mixed $limitfrom - * @param mixed $limitnum - * - * @return void Throws an error and does nothing - */ -function get_records($table, $field='', $value='', $sort='', $fields='*', $limitfrom='', $limitnum='') { - error('get_records() not available anymore'); -} -/** - * @deprecated use $DB->get_record() instead - * @see moodle_database::get_record() - * @param mixed $table - * @param mixed $field1 - * @param mixed $value1 - * @param mixed $field2 - * @param mixed $value2 - * @param mixed $field3 - * @param mixed $value3 - * @param mixed $fields - * @return void Throws an error and does nothing - */ -function get_record($table, $field1, $value1, $field2='', $value2='', $field3='', $value3='', $fields='*') { - error('get_record() not available anymore'); -} -/** - * @deprecated use $DB->set_field() instead - * @see moodle_database::set_field() - * @param mixed $table - * @param mixed $newfield - * @param mixed $newvalue - * @param mixed $field1 - * @param mixed $value1 - * @param mixed $field2 - * @param mixed $value2 - * @param mixed $field3 - * @param mixed $value3 - * @return void Throws an error and does nothing - */ -function set_field($table, $newfield, $newvalue, $field1, $value1, $field2='', $value2='', $field3='', $value3='') { - error('set_field() not available anymore'); -} -/** - * @deprecated use $DB->count_records() instead - * @see moodle_database::count_records() - * @param mixed $table - * @param mixed $field1 - * @param mixed $value1 - * @param mixed $field2 - * @param mixed $value2 - * @param mixed $field3 - * @param mixed $value3 - * @return void Throws an error and does nothing - */ -function count_records($table, $field1='', $value1='', $field2='', $value2='', $field3='', $value3='') { - error('count_records() not available anymore'); -} -/** - * @deprecated use $DB->record_exists() instead - * @see moodle_database::record_exists() - * @param mixed $table - * @param mixed $field1 - * @param mixed $value1 - * @param mixed $field2 - * @param mixed $value2 - * @param mixed $field3 - * @param mixed $value3 - * @return void Throws an error and does nothing - */ -function record_exists($table, $field1='', $value1='', $field2='', $value2='', $field3='', $value3='') { - error('record_exists() not available anymore'); -} -/** - * @deprecated use $DB->delete_records() instead - * @see moodle_database::delete_records() - * @param mixed $table - * @param mixed $field1 - * @param mixed $value1 - * @param mixed $field2 - * @param mixed $value2 - * @param mixed $field3 - * @param mixed $value3 - * @return void Throws an error and does nothing - */ -function delete_records($table, $field1='', $value1='', $field2='', $value2='', $field3='', $value3='') { - error('delete_records() not available anymore'); -} -/** - * @deprecated use $DB->get_field() instead - * @see moodle_database::get_field() - * @param mixed $table - * @param mixed $return - * @param mixed $field1 - * @param mixed $value1 - * @param mixed $field2 - * @param mixed $value2 - * @param mixed $field3 - * @param mixed $value3 - * @return void Throws an error and does nothing - */ -function get_field($table, $return, $field1, $value1, $field2='', $value2='', $field3='', $value3='') { - error('get_field() not available anymore'); -} -/** - * @deprecated - * @param mixed $table - * @param mixed $oldfield - * @param mixed $field - * @param mixed $type - * @param mixed $size - * @param mixed $signed - * @param mixed $default - * @param mixed $null - * @param mixed $after - * @return void Throws an error and does nothing - */ -function table_column($table, $oldfield, $field, $type='integer', $size='10', - $signed='unsigned', $default='0', $null='not null', $after='') { - error('table_column() was removed, please use new ddl functions'); -} /** * @deprecated * @param mixed $name