node_gallery.token.inc in Node Gallery 6
Same filename and directory in other branches
Token module support for the Node Gallery module.
File
node_gallery.token.incView source
<?php
/**
* @file
* Token module support for the Node Gallery module.
*/
/**
* Implementation of hook_token_list().
*/
function node_gallery_token_list($type = 'all') {
$tokens = array();
if ($type == 'node' || $type == 'all') {
$tokens['node']['parent-node-gallery-path'] = t('The path of the parent Gallery.');
$tokens['node']['parent-node-gallery-path-raw'] = t('Unfiltered path of the parent Gallery. WARNING - raw user input.');
$tokens['node']['parent-node-gallery-title'] = t('The title of the parent Gallery.');
$tokens['node']['parent-node-gallery-title-raw'] = t('Unfiltered title of the parent Gallery. WARNING - raw user input.');
return $tokens;
}
}
/**
* Implementation of hook_token_values().
*/
function node_gallery_token_values($type, $object = NULL, $options = array()) {
$tokens = array();
if ($type == 'node' && gallery_config_gateway::is_type('image', $object->type) == TRUE) {
if ($object->gid) {
$parent_path = 'node/' . $object->gid;
if (module_exists('path')) {
$parent_path = drupal_get_path_alias($parent_path);
}
// Load up the title of the parent
$parent_title = db_result(db_query("SELECT title FROM {node} WHERE nid = '" . $object->gid . "'"));
$tokens['parent-node-gallery-path'] = decode_entities(check_plain($parent_path));
$tokens['parent-node-gallery-path-raw'] = $parent_path;
$tokens['parent-node-gallery-title'] = decode_entities(check_plain($parent_title));
$tokens['parent-node-gallery-title-raw'] = $parent_title;
}
return $tokens;
}
}
Functions
Name | Description |
---|---|
node_gallery_token_list | Implementation of hook_token_list(). |
node_gallery_token_values | Implementation of hook_token_values(). |