function linkchecker_link_load in Link checker 5.2
Same name and namespace in other branches
- 6.2 linkchecker.module \linkchecker_link_load()
- 7 linkchecker.module \linkchecker_link_load()
Load link as array.
1 call to linkchecker_link_load()
- linkchecker_link_edit_form in ./
linkchecker.module - Menu callback for link setting.
File
- ./
linkchecker.module, line 1894 - This module periodically check links in given node types, blocks, cck fields, etc.
Code
function linkchecker_link_load($lid) {
return db_fetch_array(db_query("SELECT * FROM {linkchecker_links} WHERE lid = %d", $lid));
}