updated features materio_subscrition and materio_user_profile
This commit is contained in:
12
materio_subscriptions/materio_subscriptions.features.inc
Normal file → Executable file
12
materio_subscriptions/materio_subscriptions.features.inc
Normal file → Executable file
@@ -7,13 +7,19 @@
|
||||
/**
|
||||
* Implements hook_ctools_plugin_api().
|
||||
*/
|
||||
function materio_subscriptions_ctools_plugin_api() {
|
||||
list($module, $api) = func_get_args();
|
||||
function materio_subscriptions_ctools_plugin_api($module = NULL, $api = NULL) {
|
||||
if ($module == "strongarm" && $api == "strongarm") {
|
||||
return array("version" => "1");
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Implements hook_views_api().
|
||||
*/
|
||||
function materio_subscriptions_views_api($module = NULL, $api = NULL) {
|
||||
return array("api" => "3.0");
|
||||
}
|
||||
|
||||
/**
|
||||
* Implements hook_uc_product_default_classes().
|
||||
*/
|
||||
@@ -24,7 +30,7 @@ function materio_subscriptions_uc_product_default_classes() {
|
||||
'base' => 'uc_product',
|
||||
'description' => t('Use <em>products</em> to represent items for sale on the website, including all the unique information that can be attributed to a specific model number.'),
|
||||
'has_title' => '1',
|
||||
'title_label' => t('Nom'),
|
||||
'title_label' => t('Name'),
|
||||
'help' => '',
|
||||
),
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user