You are here

function path_redirect_condition_info in Path redirect 5

Implementation of hook_condition_info()

File

./path_redirect_workflow.inc, line 12
Workflow-ng integration for the path_redirect module

Code

function path_redirect_condition_info() {
  return array(
    'path_redirect_condition_path_has_redirect' => array(
      '#label' => t('Path has redirect'),
      '#module' => t('Path Redirect'),
    ),
    'path_redirect_condition_redirect_exists' => array(
      '#label' => t('URL redirect destination already exists'),
      '#module' => t('Path Redirect'),
    ),
  );
}