You are here

imagecache_profiles.views.inc in ImageCache Profiles 6

File

views/imagecache_profiles.views.inc
View source
<?php

function imagecache_profiles_views_handlers() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'imagecache_profiles') . '/views',
    ),
    'handlers' => array(
      'imagecache_profiles_handler_field_user_picture' => array(
        'parent' => 'views_handler_field_user_picture',
      ),
    ),
  );
}
function imagecache_profiles_views_data_alter(&$data) {
  $data['users']['picture']['field']['handler'] = 'imagecache_profiles_handler_field_user_picture';
}