Initial commit

This commit is contained in:
Felix Förtsch
2020-10-20 14:39:50 +02:00
commit 648ded8896
1225 changed files with 216511 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<?php
/**
* Plugin.class.php
* @author AHMeD SAiD
*/
# Define namespace
namespace WCFE\Config;
# Imports
use WPPFW\Plugin\PluginConfig;
/**
* Plugin configuration class
*
* @author AHMeD SAiD
*/
class Plugin extends PluginConfig {
/**
* Load Plugin configuration from configuration XML file
*
* @return void
*/
public function __construct() {
# Load plugin.xml file relative to this class
parent::__construct(file_get_contents(__DIR__ . DIRECTORY_SEPARATOR . 'plugin.xml'));
}
}