You are here

function content_profile_rules_condition_info in Content Profile 6

Implementation of hook_rules_condition_info().

File

./content_profile.rules.inc, line 11
Some rules conditions/actions

Code

function content_profile_rules_condition_info() {
  return array(
    'content_profile_user_has_profile_condition' => array(
      'label' => t('User has content profile'),
      'arguments' => array(
        'user' => array(
          'type' => 'user',
          'label' => t('User'),
        ),
      ),
      'module' => 'Content Profile',
    ),
  );
}