You are here

function path_load in Redis 7.2

Same name and namespace in other branches
  1. 7.3 redis.path.inc \path_load()

Fetches a specific URL alias from the database.

Parameters

$conditions: A string representing the source, a number representing the pid, or an array of query conditions.

Return value

FALSE if no alias was found or an associative array containing the following keys:

  • source: The internal system path.
  • alias: The URL alias.
  • pid: Unique path alias identifier.
  • language: The language of the alias.
2 calls to path_load()
path_delete in ./redis.path.inc
Delete a URL alias.
path_save in ./redis.path.inc
Save a path alias to the database.

File

./redis.path.inc, line 399
Drupal default includes/path.inc file copy which only differs in:

Code

function path_load($conditions) {
  if (is_numeric($conditions)) {
    $conditions = array(
      'pid' => $conditions,
    );
  }
  elseif (is_string($conditions)) {
    $conditions = array(
      'source' => $conditions,
    );
  }
  elseif (!is_array($conditions)) {
    return FALSE;
  }
  $select = db_select('url_alias');
  foreach ($conditions as $field => $value) {
    $select
      ->condition($field, $value);
  }
  return $select
    ->fields('url_alias')
    ->execute()
    ->fetchAssoc();
}