first commit

This commit is contained in:
2024-07-15 11:28:08 +02:00
commit f52d538ea5
21891 changed files with 6161164 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<?php
/**
* Debug snippet: dumps current argument scope
*/
?><dl class="debug"><?php
foreach( $params as $prop => $value ): if( '_' !== $prop{0} ):?>
<dt><?php echo esc_html($prop)?></dt>
<dd><?php echo esc_html( json_encode($value,JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES|JSON_UNESCAPED_UNICODE) )?></dd><?php
endif; endforeach?>
</dl>

View File

@@ -0,0 +1,7 @@
<?php
/**
* Just show XML full page
*/
?>
<pre><?php $params->e('xml')?></pre>