You are here

masonry_views.views.inc in Masonry Views 7.3

Same filename and directory in other branches
  1. 7 masonry_views.views.inc

Provide views data and handlers for masonry_views.module.

File

masonry_views.views.inc
View source
<?php

/**
 * @file
 * Provide views data and handlers for masonry_views.module.
 */

/**
 * Implements hook_views_plugins().
 */
function masonry_views_views_plugins() {
  return array(
    'style' => array(
      'masonry_views' => array(
        'title' => t('Masonry'),
        'handler' => 'views_plugin_style_masonry_views',
        'uses options' => TRUE,
        'help' => t("Display content in a Masonry layout."),
        'theme' => 'views_view_masonry',
        'type' => 'normal',
        'uses row plugin' => TRUE,
        'uses row class' => TRUE,
        'uses grouping' => TRUE,
      ),
    ),
  );
}

Functions