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