You are here

function context_error_context_condition_error::condition_values in Context error 6

Same name and namespace in other branches
  1. 7 plugins/context_error_context_conditions.inc \context_error_context_condition_error::condition_values()

File

plugins/context_error_context_conditions.inc, line 7

Class

context_error_context_condition_error
Expose the 404 error page as the context condition.

Code

function condition_values() {
  $values = array();
  $values['403'] = t('403 error');
  $values['404'] = t('404 error');
  return $values;
}