summaryrefslogtreecommitdiff
path: root/modules/simpletest/tests/file_test.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-08-22 13:52:59 +0000
committerDries Buytaert <dries@buytaert.net>2010-08-22 13:52:59 +0000
commit4a7bb638fb3243a35dd2ce82a4cafc78d2f6b9d2 (patch)
tree3e17684510b739dafb359a17a1d26027fe168ec6 /modules/simpletest/tests/file_test.module
parentb36d4959ef2244298fd28d02575c88b0259555b4 (diff)
downloadbrdo-4a7bb638fb3243a35dd2ce82a4cafc78d2f6b9d2.tar.gz
brdo-4a7bb638fb3243a35dd2ce82a4cafc78d2f6b9d2.tar.bz2
- Patch #353458 by quicksketch, drewish, jpetso, sun, noahb, aaron, chx, mikey_p, dhthwy: hook_file_references() was not designed for a highly flexible field storage.
Diffstat (limited to 'modules/simpletest/tests/file_test.module')
-rw-r--r--modules/simpletest/tests/file_test.module24
1 files changed, 7 insertions, 17 deletions
diff --git a/modules/simpletest/tests/file_test.module b/modules/simpletest/tests/file_test.module
index 3009c465b..b509805d8 100644
--- a/modules/simpletest/tests/file_test.module
+++ b/modules/simpletest/tests/file_test.module
@@ -143,7 +143,6 @@ function file_test_reset() {
'load' => array(),
'validate' => array(),
'download' => array(),
- 'references' => array(),
'insert' => array(),
'update' => array(),
'copy' => array(),
@@ -156,7 +155,6 @@ function file_test_reset() {
$return = array(
'validate' => array(),
'download' => NULL,
- 'references' => NULL,
);
variable_set('file_test_return', $return);
}
@@ -167,7 +165,7 @@ function file_test_reset() {
*
* @param $op
* One of the hook_file_* operations: 'load', 'validate', 'download',
- * 'references', 'insert', 'update', 'copy', 'move', 'delete'.
+ * 'insert', 'update', 'copy', 'move', 'delete'.
*
* @return
* Array of the parameters passed to each call.
@@ -184,9 +182,9 @@ function file_test_get_calls($op) {
* Get an array with the calls for all hooks.
*
* @return
- * An array keyed by hook name ('load', 'validate', 'download',
- * 'references', 'insert', 'update', 'copy', 'move', 'delete') with values
- * being arrays of parameters passed to each call.
+ * An array keyed by hook name ('load', 'validate', 'download', 'insert',
+ * 'update', 'copy', 'move', 'delete') with values being arrays of parameters
+ * passed to each call.
*/
function file_test_get_all_calls() {
return variable_get('file_test_results', array());
@@ -197,7 +195,7 @@ function file_test_get_all_calls() {
*
* @param $op
* One of the hook_file_* operations: 'load', 'validate', 'download',
- * 'references', 'insert', 'update', 'copy', 'move', 'delete'.
+ * 'insert', 'update', 'copy', 'move', 'delete'.
* @param $args
* Values passed to hook.
*
@@ -214,7 +212,7 @@ function _file_test_log_call($op, $args) {
* Load the appropriate return value.
*
* @param $op
- * One of the hook_file_[validate,download,references] operations.
+ * One of the hook_file_[validate,download] operations.
*
* @return
* Value set by file_test_set_return().
@@ -231,7 +229,7 @@ function _file_test_get_return($op) {
* Assign a return value for a given operation.
*
* @param $op
- * One of the hook_file_[validate,download,references] operations.
+ * One of the hook_file_[validate,download] operations.
* @param $value
* Value for the hook to return.
*
@@ -273,14 +271,6 @@ function file_test_file_download($uri) {
}
/**
- * Implements hook_file_references().
- */
-function file_test_file_references($file) {
- _file_test_log_call('references', array($file));
- return _file_test_get_return('references');
-}
-
-/**
* Implements hook_file_insert().
*/
function file_test_file_insert($file) {