Repository URL to install this package:
|
Version:
1.0.20 ▾
|
novicell/atoms
/
atoms.views.inc
|
|---|
<?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',
),
);
}