commerce_cp.install in Commerce Cart Pane 7
File
commerce_cp.installView source
<?php
/**
* Implements hook_install().
*/
function commerce_cp_install() {
$panes = commerce_cp_get_system_panes();
$panes['output'] = $panes['output']['weight'];
$panes['summary'] = $panes['summary']['weight'];
$panes['actions'] = $panes['actions']['weight'];
variable_set('commerce_cp_panes_weight', $panes);
}
/**
* Implements hook_uninstall().
*/
function commerce_cp_uninstall() {
variable_del('commerce_cp_panes_weight');
}
Functions
Name![]() |
Description |
---|---|
commerce_cp_install | Implements hook_install(). |
commerce_cp_uninstall | Implements hook_uninstall(). |