imagecache_testsuite.features.inc 347 B

1234567891011
  1. <?php
  2. /**
  3. * Implementation of hook_imagecache_default_presets().
  4. */
  5. function imagecache_testsuite_imagecache_default_presets() {
  6. $filepath = drupal_get_path('module', 'imagecache_testsuite');
  7. // Each of these presets is stored in its own file.
  8. // Scan each of these files and return the list.
  9. return imagecache_testsuite_get_tests();
  10. }