You are here

views_ifempty.module in Views If Empty 6

Same filename and directory in other branches
  1. 7 views_ifempty.module

Views If Empty module.

Allows Views to output a field if another field is empty.

File

views_ifempty.module
View source
<?php

/**
 * @file
 * Views If Empty module.
 *
 * Allows Views to output a field if another field is empty.
 */

/**
 * Implements hook_views_api().
 */
function views_ifempty_views_api() {
  return array(
    'api' => 2,
  );
}

Functions

Namesort descending Description
views_ifempty_views_api Implements hook_views_api().