mirror of
https://github.com/YunoHost-Apps/limesurvey_ynh.git
synced 2024-09-03 19:36:32 +02:00
7 lines
279 B
PHP
7 lines
279 B
PHP
<?php
|
|
$data = LimeExpressionManager::UnitTestConvertConditionsToRelevance();
|
|
echo count($data) . " question(s) in your database contain conditions. Below is the mapping of question ID number to generated relevance equation<br/>";
|
|
echo "<pre>";
|
|
print_r($data);
|
|
echo "</pre>";
|
|
?>
|