Example #1
0
 private function taxonomy_row_query($params)
 {
     if (isset($params['id'])) {
         $table = DB_TAXONOMY;
         $where = "taxa_id";
         $field = array($params['id']);
         //build single query from BuildQuery class
         $db_results = BuildQuery::single_row_query($table, $where, $field);
         self::$db_taxonomy_row = $db_results;
     }
 }