You are here

function tinypng_image_toolkits in TinyPNG 7

Implements hook_image_toolkits().

File

./tinypng.module, line 78
Provides TinyPNG integration.

Code

function tinypng_image_toolkits() {
  return array(
    'tinypng' => array(
      'title' => t('TinyPNG'),
      'available' => TRUE,
    ),
  );
}