uc_stock.rules.inc in Ubercart 7.3
Rules hooks for uc_stock.module.
File
uc_stock/uc_stock.rules.incView source
<?php
/**
* @file
* Rules hooks for uc_stock.module.
*/
/**
* Implements hook_rules_action_info().
*/
function uc_stock_rules_action_info() {
$actions['uc_stock_action_decrement_stock'] = array(
'label' => t('Decrement stock of products on the order with tracking activated.'),
'group' => t('Stock'),
'base' => 'uc_stock_action_decrement_stock',
'parameter' => array(
'order' => array(
'type' => 'uc_order',
'label' => t('Order'),
),
),
);
$actions['uc_stock_action_increment_stock'] = array(
'label' => t('Increment stock of products on the order with tracking activated.'),
'group' => t('Stock'),
'base' => 'uc_stock_action_increment_stock',
'parameter' => array(
'order' => array(
'type' => 'uc_order',
'label' => t('Order'),
),
),
);
return $actions;
}
/**
* Decreases the stock of ordered products.
*/
function uc_stock_action_decrement_stock($order) {
if (is_array($order->products)) {
array_walk($order->products, 'uc_stock_adjust_product_stock', $order);
}
}
/**
* Increase the stock of ordered products.
*/
function uc_stock_action_increment_stock($order, $settings) {
if (is_array($order->products)) {
array_walk($order->products, 'uc_stock_increment_product_stock', $order);
}
}
Functions
Name | Description |
---|---|
uc_stock_action_decrement_stock | Decreases the stock of ordered products. |
uc_stock_action_increment_stock | Increase the stock of ordered products. |
uc_stock_rules_action_info | Implements hook_rules_action_info(). |