mirror of
https://github.com/YunoHost-Apps/limesurvey_ynh.git
synced 2024-09-03 19:36:32 +02:00
12 lines
No EOL
290 B
PHP
12 lines
No EOL
290 B
PHP
<?php
|
|
$data = LimeExpressionManager::UpgradeConditionsToRelevance();
|
|
if (is_null($data)) {
|
|
echo "No conditions found in database";
|
|
}
|
|
else {
|
|
echo "Found and converted conditions for " . count($data) . " question(s)<br/>";
|
|
echo "<pre>";
|
|
print_r($data);
|
|
echo "</pre>";
|
|
}
|
|
?>
|