function flag_lists_get_templates in Flag Lists 6
Same name and namespace in other branches
- 7.3 flag_lists.module \flag_lists_get_templates()
- 7 flag_lists.module \flag_lists_get_templates()
Get a list of template flag names.
2 calls to flag_lists_get_templates()
File
- ./
flag_lists.module, line 1114 - The Flag Lists module.
Code
function flag_lists_get_templates() {
$result = db_query("SELECT DISTINCT name FROM {flag_lists_types}");
while ($row = db_fetch_array($result)) {
$templates[] = flag_get_flag($row['name']);
}
return $templates;
}