You are here

function smiley_stream_wrappers in Smiley 7

Implements hook_stream_wrappers().

File

./smiley.module, line 10
Implements the necessary hooks.

Code

function smiley_stream_wrappers() {
  return array(
    'smiley' => array(
      'name' => t('Smiley images'),
      'class' => 'SmileyStreamWrapper',
      'description' => t('Smiley images.'),
      'type' => STREAM_WRAPPERS_LOCAL_NORMAL,
    ),
  );
}