You are here

function themekey_validator_date_time in ThemeKey 6.2

Same name and namespace in other branches
  1. 6.4 themekey_validators.inc \themekey_validator_date_time()
  2. 6.3 themekey_validators.inc \themekey_validator_date_time()
  3. 7.3 themekey_validators.inc \themekey_validator_date_time()
  4. 7 themekey_validators.inc \themekey_validator_date_time()
  5. 7.2 themekey_validators.inc \themekey_validator_date_time()

Validates a Theme Switichng Rule. Allowed Operators: "<", "<=", ">", ">=" and "~" Allowed values:

  • valid regular expression if operator is "~"
  • string formatted like "2009-12-24 23:56:17" for different operators

Parameters

$rule: A Theme Switching Rule as associative array:

  • property: ThemeKey property as string (p.e. "drupal:path")
  • wildcard: optional string, only used if property is "drupal:path:wildcard"
  • operator: ThemeKey operator as string ("=", "!", "<". "<=", ">", ">=", "~")
  • value: ThemeKey property value as string

Return value

An associative array of errors:

  • property: translated error message as string describing a problem with the property
  • wildcard: translated error message as string describing a problem with the wildcard
  • operator: translated error message as string describing a problem with the operator
  • value: translated error message as string describing a problem with the value

If no errors detected the array is empty.

1 string reference to 'themekey_validator_date_time'
themekey_node_themekey_properties in modules/themekey.node.inc
Implements hook_themekey_properties().

File

./themekey_validators.inc, line 221
Provides set of validators which could be used to validate ThemeKey Theme Switching Rules.

Code

function themekey_validator_date_time($rule) {
  $errors = array();
  switch ($rule['operator']) {
    case '=':
    case '!':

      // It seems senseless to switch a theme for one second
      $errors['operator'] = t('Possible operators are "<", "<=", ">", ">=" and "~"');
      break;
    case '~':
      $errors = themekey_validator_regex($rule);
      break;
    default:
      if (!preg_match("/^[0-9]{4}[0-9\\- :]*\$/", $rule['value'])) {
        $errors['value'] = t("Value isn't suitable for checks against dates formatted like \"2009-12-24 23:56:17\"");
      }
  }
  return $errors;
}