updated features materio_subscrition and materio_user_profile

This commit is contained in:
Bachir Soussi Chiadmi
2013-12-09 17:22:25 +01:00
parent 39759425ce
commit 5cde537e0a
18 changed files with 3269 additions and 459 deletions

View 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' => '',
),
);