You are here

uc_wishlist.rules.inc in UC Wish List 8

Same filename and directory in other branches
  1. 7 uc_wishlist.rules.inc

This file contains the rule condition for the wishlist.

File

uc_wishlist.rules.inc
View source
<?php

/**
 * @file
 * This file contains the rule condition for the wishlist.
 */

/**
 *
 */
function uc_wishlist_rules_condition_info() {
  $conditions['uc_wishlist_condition_product_wishlist'] = [
    'label' => t('Check if an order has wishlist product'),
    'group' => t('Order'),
    'base' => 'uc_wishlist_condition_product_wishlist',
    'parameter' => [
      'order' => [
        'type' => 'uc_order',
        'label' => t('Order'),
      ],
    ],
  ];
  return $conditions;
}

Functions