commerce_backoffice_product.install in Commerce Backoffice 7
File
commerce_backoffice_product.installView source
<?php
/**
* Implements hook_enable().
*/
function commerce_backoffice_product_enable() {
// This module needs to run after commerce_product_ui.
db_update('system')
->fields(array(
'weight' => 10,
))
->condition('type', 'module')
->condition('name', 'commerce_backoffice_product')
->execute();
}
Functions
Name | Description |
---|---|
commerce_backoffice_product_enable | Implements hook_enable(). |