_image_test_log_call

7 image_test.module _image_test_log_call($op, $args)
8 image_test.module _image_test_log_call($op, $args)

Store the values passed to a toolkit call.

Parameters

$op: One of the image toolkit operations: 'get_info', 'load', 'save', 'settings', 'resize', 'rotate', 'crop', 'desaturate'.

$args: Values passed to hook.

See also

image_test_get_all_calls()

image_test_reset()

8 calls to _image_test_log_call()

File

modules/simpletest/tests/image_test.module, line 68
Helper module for the image tests.

Code

function _image_test_log_call($op, $args) {
  $results = variable_get('image_test_results', array());
  $results[$op][] = $args;
  variable_set('image_test_results', $results);
}
Login or register to post comments