You are here

fasttoggle_comment.views.inc in Fasttoggle 7

Views data definitions for Fasttoggle.

This file defines how Views should get Fasttoggle data.

File

module/fasttoggle_comment/views/fasttoggle_comment.views.inc
View source
<?php

/**
 * @file
 * Views data definitions for Fasttoggle.
 *
 * This file defines how Views should get Fasttoggle data.
 */

/**
 * Implements hook_views_data_alter().
 */
function fasttoggle_comment_views_data_alter(&$data) {
  $data['comment']['fasttoggle_status'] = array(
    'field' => array(
      'title' => t('Approve link (Fasttoggle)'),
      'help' => t('Provide a simple link to toggle approval of a comment.'),
      'handler' => 'fasttoggle_comment_views_handler_field_comment_link',
    ),
  );
}

Functions