added some modules, updated some others

This commit is contained in:
2021-11-25 16:58:25 +01:00
parent 62fc3df712
commit 072ea7de50
28 changed files with 2459 additions and 49 deletions
@@ -5,9 +5,8 @@ core = 7.x
files[] = token_test.module
hidden = TRUE
; Information added by drupal.org packaging script on 2013-02-24
version = "7.x-1.5"
; Information added by Drupal.org packaging script on 2021-03-02
version = "7.x-1.8"
core = "7.x"
project = "token"
datestamp = "1361665026"
datestamp = "1614719852"
@@ -0,0 +1,13 @@
<?php
/**
* Implements hook_token_info()
*/
function token_test_token_info() {
$info['tokens']['node']['colons:in:name'] = array(
'name' => t('A test token with colons in the name'),
'description' => NULL,
);
return $info;
}