scale.imagecache_preset.inc 466 B

123456789101112131415161718192021222324252627
  1. <?php
  2. // $ID: $
  3. /**
  4. * @file
  5. * Test imagecache preset.
  6. *
  7. * Created on Dec 29, 2009
  8. *
  9. * @author 'dman' Dan Morrison http://coders.co.nz/
  10. */
  11. $presets['scale'] = array (
  12. 'name' => 'scale',
  13. '#weight' => 1.1,
  14. 'effects' => array (
  15. 0 => array (
  16. 'weight' => '-1',
  17. 'module' => 'imagecache',
  18. 'name' => 'image_scale',
  19. 'data' => array (
  20. 'width' => '100',
  21. 'height' => '',
  22. 'upscale' => 0,
  23. ),
  24. ),
  25. )
  26. );