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/customeredit / customeredit.views.inc
Size: Mime:
<?php

/**
 * Implements hook_views_data_alter().
 */
function customeredit_views_data_alter(array &$data)
{

    $data['views']['customer_text'] = array(
        'title' => t('Customer Text'),
        'help' => t('Editable text for customer'),
        'area' => array(
            'id' => 'customer_text',
        ),
    );
}