mirror of
https://github.com/ACSPRI/queXS
synced 2024-04-02 12:12:16 +00:00
16 lines
459 B
PHP
16 lines
459 B
PHP
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
<?php
|
|
if (!((isset($subaction) && $subaction == 'functions'))) {die("Cannot run this script directly");}
|
|
?>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<title>ExpressionManager: Available Functions</title>
|
|
</head>
|
|
<body>
|
|
<?php
|
|
echo ExpressionManager::ShowAllowableFunctions();
|
|
?>
|
|
</body>
|
|
</html>
|