You are here

function querypath_examples_show_sparql in QueryPath 7.3

Same name and namespace in other branches
  1. 6 querypath_examples.module \querypath_examples_show_sparql()
  2. 7.2 querypath_examples.module \querypath_examples_show_sparql()
1 string reference to 'querypath_examples_show_sparql'
querypath_examples_menu in ./querypath_examples.module
Implements hook_menu();

File

./querypath_examples.module, line 305
The main file for querypath_examples.

Code

function querypath_examples_show_sparql() {
  $out = '';

  //  $_SESSION['out'] = '';
  $out = drupal_get_form('querypath_examples_show_sparql_form');
  if ($_SESSION['out'] != '') {
    $out .= $_SESSION['out'];
  }
  $_SESSION['out'] = '';
  return $out;
}