function seochecklist_get_book_references in SEO Checklist 6.3
1 call to seochecklist_get_book_references()
- seochecklist_admin_settings in ./
seochecklist.admin.inc - Define the settings form.
File
- ./
seochecklist.module, line 51 - SEO Checklist module allows users to track important SEO techniques on the website.
Code
function seochecklist_get_book_references($tid) {
$references = array(
1 => 59,
39 => 59,
2 => 68,
6 => 83,
5 => 72,
7 => 20,
9 => 23,
10 => 22,
11 => 22,
12 => 23,
13 => 26,
15 => 96,
16 => 182,
17 => 201,
18 => 18,
19 => 148,
21 => 109,
46 => 125,
24 => 118,
40 => 205,
39 => 205,
);
return isset($references[$tid]) ? $references[$tid] : NULL;
}