Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
novicell/atoms / atoms.views.inc
Size: Mime:
<?php

/**
 * Implements hook_views_data_alter().
 *
 * @param array $data
 */
function atoms_views_data_alter(array &$data)
{
    $data['views']['atoms'] = array(
        'title' => t('Atoms'),
        'help' => t('Atomic content that can be used globally.'),
        'area' => array(
            'id' => 'atoms',
        ),
    );
}