You are here

function ARC_api_helper::get_hash_int_id in Taxonomy import/export via XML 5

Same name and namespace in other branches
  1. 5.2 arc/ARC_api_helper.php \ARC_api_helper::get_hash_int_id()
  2. 6.2 arc/ARC_api_helper.php \ARC_api_helper::get_hash_int_id()
  3. 6 arc/ARC_api_helper.php \ARC_api_helper::get_hash_int_id()

File

arc/ARC_api_helper.php, line 143

Class

ARC_api_helper

Code

function get_hash_int_id($val = "", $sql = false) {
  return $sql ? "CONV('" . substr(md5($val), 0, 15) . "', 16, 10)" : substr(md5($val), 0, 15);
}