<?php
declare(strict_types=1);
namespace CityCampaign;
use Shopware\Core\Framework\Plugin;
use Shopware\Storefront\Framework\ThemeInterface;
use Carbon\Carbon;
// expect the vendor folder on Shopware store releases
if (file_exists(dirname(__DIR__) . '/vendor/autoload.php')) {
require_once dirname(__DIR__) . '/vendor/autoload.php';
}
class CityCampaign extends Plugin
{
public function executeComposerCommands(): bool
{
return true;
}
public function boot(): void
{
// 设置时区
// date_default_timezone_set( 'Asia/Taipei');
parent::boot();
}
}