select($sql, $parameters, 'all'); if (is_array($recordings) && @sizeof($recordings) != 0) { foreach ($recordings as &$row) { $recording_name = $row["recording_name"]; $recording_filename = $row["recording_filename"]; $array['recordings'][$x]['name'] = $recording_name; $array['recordings'][$x]['value'] = $recording_filename; $x++; } } unset($sql, $parameters, $recordings, $row); } //phrases if (file_exists($_SERVER["PROJECT_ROOT"]."/app/phrases/app_config.php")) { $sql = "select * from v_phrases "; $sql .= "where domain_uuid = :domain_uuid "; $parameters['domain_uuid'] = $_SESSION["domain_uuid"]; $database = new database; $phrases = $database->select($sql, $parameters, 'all'); if (is_array($phrases) && @sizeof($phrases) != 0) { foreach ($phrases as &$row) { $array['phrases'][$x]['name'] = "phrase:".$row["phrase_name"]; $array['phrases'][$x]['value'] = "phrase:".$row["phrase_uuid"]; $x++; } } unset($sql, $parameters, $phrases, $row); } //sounds if (file_exists($_SERVER["PROJECT_ROOT"]."/app/phrases/app_config.php")) { $file = new file; $sound_files = $file->sounds(); if (is_array($sound_files) && @sizeof($sound_files) != 0) { foreach ($sound_files as $value) { if (substr($value, 0, 71) == "\$\${sounds_dir}/\${default_language}/\${default_dialect}/\${default_voice}/") { $value = substr($var, 71); } $array['sounds'][$x]['name'] = $value; $array['sounds'][$x]['value'] = $value; $x++; } } } //send the results return $array; } } ?>