feat: VivesPOS landing on Winter CMS 1.2 — theme + plugin + Dockerfile
Some checks are pending
Module sub-split / Sub-split (push) Waiting to run
Some checks are pending
Module sub-split / Sub-split (push) Waiting to run
- Base: wintercms/winter branch 1.2 (full framework) - Theme vivespos: Canvas 7 + Bootstrap 5 CDN, custom CSS - Layout: deferred GTM/GA4 tracking, JSON-LD SoftwareApplication - Partials: hero (offline-first), features, modes (offline/nube toggle), screenshots, pricing (3 planes), comparison, FAQ, CTA - Plugin VivesPOS.Site with ContactForm - Dockerfile: PHP 8.2 Apache, port 80, healthcheck - Added winter/wn-pages, blog, sitemap, seo plugins - Active theme set to vivespos
This commit is contained in:
59
modules/system/tests/bootstrap/app.php
Normal file
59
modules/system/tests/bootstrap/app.php
Normal file
@@ -0,0 +1,59 @@
|
||||
<?php
|
||||
|
||||
$baseDir = realpath(__DIR__ . '/../../../..');
|
||||
|
||||
/*
|
||||
* Winter autoloader
|
||||
*/
|
||||
require $baseDir . '/bootstrap/autoload.php';
|
||||
|
||||
/*
|
||||
* Fallback autoloader
|
||||
*/
|
||||
$loader = new Winter\Storm\Support\ClassLoader(
|
||||
new Winter\Storm\Filesystem\Filesystem,
|
||||
$baseDir,
|
||||
$baseDir . '/storage/framework/classes.php'
|
||||
);
|
||||
|
||||
$loader->register();
|
||||
|
||||
/*
|
||||
* Manually register all module classes for autoloading
|
||||
*/
|
||||
foreach (glob($baseDir . '/modules/*', GLOB_ONLYDIR) as $modulePath) {
|
||||
$loader->autoloadPackage(basename($modulePath), $modulePath);
|
||||
}
|
||||
|
||||
/*
|
||||
* Manually register System aliases
|
||||
*/
|
||||
foreach (require(__DIR__ . '/../../aliases.php') as $alias => $class) {
|
||||
if (!class_exists($alias)) {
|
||||
class_alias($class, $alias);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Manually register all plugin classes for autoloading
|
||||
*/
|
||||
$dirPath = $baseDir . '/plugins';
|
||||
if (is_dir($dirPath)) {
|
||||
$it = new RecursiveIteratorIterator(
|
||||
new RecursiveDirectoryIterator($dirPath, FilesystemIterator::FOLLOW_SYMLINKS)
|
||||
);
|
||||
$it->setMaxDepth(2);
|
||||
$it->rewind();
|
||||
|
||||
while ($it->valid()) {
|
||||
if (($it->getDepth() > 1) && $it->isFile() && (strtolower($it->getFilename()) === "plugin.php")) {
|
||||
$filePath = dirname($it->getPathname());
|
||||
$pluginName = basename($filePath);
|
||||
$vendorName = basename(dirname($filePath));
|
||||
|
||||
$loader->autoloadPackage($vendorName . '\\' . $pluginName, $filePath);
|
||||
}
|
||||
|
||||
$it->next();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user