You are here

function _token_custom_load in Custom Tokens 5

3 calls to _token_custom_load()
token_custom_delete_form in ./token_custom.module
token_custom_delete_form_submit in ./token_custom.module
token_custom_edit_form in ./token_custom.module

File

./token_custom.module, line 27

Code

function _token_custom_load($tkid) {
  $row = db_fetch_object(db_query("SELECT * FROM {token_custom} WHERE tkid =%d", $tkid));
  return $row;
}