Skip to content

Commit

Permalink
\#25 Display db data for export
Browse files Browse the repository at this point in the history
  • Loading branch information
BaronVonPerko committed Oct 23, 2019
1 parent 19614f8 commit e9b2cf2
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion templates/exportImport.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
<div class="wrap">
<h1>WPCUI Export/Import</h1>

<?php use PerkoCustomizerUI\Services\DataService; ?>

<?php
$sections = DataService::getSections();
var_dump($sections);

echo '<br>';

$controls = DataService::getControls();
var_dump($controls);
?>

</div>

0 comments on commit e9b2cf2

Please sign in to comment.