You are here

function photos_filter_info in Album Photos 7.3

Implements hook_filter_info().

File

./photos.module, line 2551
Implementation of photos.module.

Code

function photos_filter_info() {
  $filters['filter_photos'] = array(
    'title' => t('Insert image and album'),
    'description' => t('photos.module filter format, at the node to insert images or albums. e.g: [photo=image]id=55,54,53,52|align=right[/photo] or [photo=album]id=134[/photo] or [photo=album]id=134|limit=6[/photo].'),
    'process callback' => 'photos_filter_process',
    'tips callback' => '_photos_filter_tips',
  );
  return $filters;
}