commerce_extra_panes_termsofservice.install in Commerce extra panes 7
Install & Uninstall operations for Drupal commerce extra panes Terms of Service submodule.
File
modules/commerce_extra_panes_termsofservice/commerce_extra_panes_termsofservice.installView source
<?php
/**
* @file
* Install & Uninstall operations for Drupal commerce extra panes Terms of Service submodule.
*/
/**
* Implements hook_uninstall().
*/
function commerce_extra_panes_termsofservice_uninstall() {
drupal_load('module', 'commerce_extra_panes');
$extra_panes = commerce_extra_panes_get_panes();
foreach ($extra_panes as $extra_pane) {
$pane_id = 'extra_pane__' . $extra_pane->extra_type . '__' . $extra_pane->extra_id;
variable_del('cep_tos_' . $pane_id);
variable_del('cep_tos_required_' . $pane_id);
variable_del('cep_tos_position_' . $pane_id);
variable_del('cep_tos_as_link_' . $pane_id);
}
}
Functions
Name![]() |
Description |
---|---|
commerce_extra_panes_termsofservice_uninstall | Implements hook_uninstall(). |