first commit

This commit is contained in:
2023-09-12 21:41:04 +02:00
commit 3361a7f053
13284 changed files with 2116755 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
<?php
/**
*
* King Composer
* (c) KingComposer.com
* kc.extension.php
*
*/
if(!defined('ABSPATH')) {
header('HTTP/1.0 403 Forbidden');
exit;
}
?>
<?php if (count($this->errors) > 0) { ?>
<div id="message" class="error">
<p><?php _e('There were some errors with the extensions are activated', 'kingcomposer'); ?>:</p>
<ol>
<?php
foreach ($this->errors as $error) {
echo '<li>'.$error.'</li>';
}
?>
</ol>
</div>
<?php } ?>
<?php
$this->list_table( $items, $actives );
?>